From: github-actions Date: Mon, 9 Dec 2024 02:22:21 +0000 (+0000) Subject: Publish autogenerated nightly docs X-Git-Url: http://internal-gitweb-vhost/%22https:/doc.rust-lang.org/nightly/std/io/trait.Read.html?a=commitdiff_plain;h=2da96e70405d9b27ef311c38c54f629a0f71365d;p=bitcoindevkit.org Publish autogenerated nightly docs --- diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.BlockEvent.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.BlockEvent.html index 6b159af6a1..37590be9c7 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.BlockEvent.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.BlockEvent.html @@ -1,18 +1,18 @@ BlockEvent in bdk_bitcoind_rpc - Rust

Struct bdk_bitcoind_rpc::BlockEvent

source ·
pub struct BlockEvent<B> {
     pub block: B,
-    pub checkpoint: CheckPoint,
+    pub checkpoint: CheckPoint,
 }
Expand description

A newly emitted block from Emitter.

Fields§

§block: B

Either a full [Block] or [Header] of the new block.

-
§checkpoint: CheckPoint

The checkpoint of the new block.

-

A CheckPoint is a node of a linked list of BlockIds. This checkpoint is linked to -all BlockIds originally passed in Emitter::new as well as emitted blocks since then. +

§checkpoint: CheckPoint

The checkpoint of the new block.

+

A [CheckPoint] is a node of a linked list of [BlockId]s. This checkpoint is linked to +all [BlockId]s originally passed in Emitter::new as well as emitted blocks since then. These blocks are guaranteed to be of the same chain.

This is important as BDK structures require block-to-apply to be connected with another block in the original chain.

Implementations§

source§

impl<B> BlockEvent<B>

source

pub fn block_height(&self) -> u32

The block height of this new block.

source

pub fn block_hash(&self) -> BlockHash

The block hash of this new block.

-
source

pub fn connected_to(&self) -> BlockId

The BlockId of a previous block that this block connects to.

-

This either returns a BlockId of a previously emitted block or from the chain we started +

source

pub fn connected_to(&self) -> BlockId

The [BlockId] of a previous block that this block connects to.

+

This either returns a [BlockId] of a previously emitted block or from the chain we started with (passed in as last_cp in Emitter::new).

This value is derived from BlockEvent::checkpoint.

Trait Implementations§

source§

impl<B: Debug> Debug for BlockEvent<B>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<B> Freeze for BlockEvent<B>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.Emitter.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.Emitter.html index f43b12e86f..c96ee82c3c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.Emitter.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_bitcoind_rpc/struct.Emitter.html @@ -1,6 +1,6 @@ Emitter in bdk_bitcoind_rpc - Rust

Struct bdk_bitcoind_rpc::Emitter

source ·
pub struct Emitter<'c, C> { /* private fields */ }
Expand description

The Emitter is used to emit data sourced from [bitcoincore_rpc::Client].

Refer to module-level documentation for more.

-

Implementations§

source§

impl<'c, C: RpcApi> Emitter<'c, C>

source

pub fn new(client: &'c C, last_cp: CheckPoint, start_height: u32) -> Self

Construct a new Emitter.

+

Implementations§

source§

impl<'c, C: RpcApi> Emitter<'c, C>

source

pub fn new(client: &'c C, last_cp: CheckPoint, start_height: u32) -> Self

Construct a new Emitter.

last_cp informs the emitter of the chain we are starting off with. This way, the emitter can start emission from a block that connects to the original chain.

start_height starts emission from a given height (if there are no conflicts with the diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/all.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/all.html index 8e90586fa8..62226dd9b5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/all.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/all.html @@ -1 +1 @@ -List of all items in this crate

List of all items

Structs

Enums

Traits

Macros

Derive Macros

Functions

Type Aliases

Statics

Constants

\ No newline at end of file +List of all items in this crate

List of all items

Structs

Enums

Traits

Macros

Derive Macros

Functions

Type Aliases

Statics

Constants

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.FromScriptError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.FromScriptError.html index 61990ff4a6..796bdbd3da 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.FromScriptError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.FromScriptError.html @@ -6,7 +6,7 @@

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

UnrecognizedScript

Script is not a p2pkh, p2sh or witness program.

§

WitnessProgram(Error)

A witness program error.

§

WitnessVersion(TryFromError)

A witness version construction error.

-

Trait Implementations§

§

impl Clone for FromScriptError

§

fn clone(&self) -> FromScriptError

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
§

impl Debug for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromScriptError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromScriptError

§

fn from(e: Error) -> FromScriptError

Converts to this type from the input type.
§

impl From<Infallible> for FromScriptError

§

fn from(never: Infallible) -> FromScriptError

Converts to this type from the input type.
§

impl From<TryFromError> for FromScriptError

§

fn from(e: TryFromError) -> FromScriptError

Converts to this type from the input type.
§

impl PartialEq for FromScriptError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for FromScriptError

§

fn clone(&self) -> FromScriptError

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
§

impl Debug for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromScriptError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromScriptError

§

fn from(e: Error) -> FromScriptError

Converts to this type from the input type.
§

impl From<Infallible> for FromScriptError

§

fn from(never: Infallible) -> FromScriptError

Converts to this type from the input type.
§

impl From<TryFromError> for FromScriptError

§

fn from(e: TryFromError) -> FromScriptError

Converts to this type from the input type.
§

impl PartialEq for FromScriptError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for FromScriptError

§

impl StructuralPartialEq for FromScriptError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.ParseError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.ParseError.html index 9c0440eb7d..9088cfbaea 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.ParseError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/enum.ParseError.html @@ -18,7 +18,7 @@
§

InvalidBase58PayloadLength(InvalidBase58PayloadLengthError)

Invalid base58 payload data length for legacy address.

§

InvalidLegacyPrefix(InvalidLegacyPrefixError)

Invalid legacy address prefix in base58 data payload.

§

NetworkValidation(NetworkValidationError)

Address’s network differs from required one.

-

Trait Implementations§

§

impl Clone for ParseError

§

fn clone(&self) -> ParseError

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
§

impl Debug for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<DecodeError> for ParseError

§

fn from(e: DecodeError) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Infallible> for ParseError

§

fn from(never: Infallible) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for ParseError

§

fn from(e: InvalidBase58PayloadLengthError) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidLegacyPrefixError> for ParseError

§

fn from(e: InvalidLegacyPrefixError) -> ParseError

Converts to this type from the input type.
§

impl From<LegacyAddressTooLongError> for ParseError

§

fn from(e: LegacyAddressTooLongError) -> ParseError

Converts to this type from the input type.
§

impl From<NetworkValidationError> for ParseError

§

fn from(e: NetworkValidationError) -> ParseError

Converts to this type from the input type.
§

impl From<TryFromError> for ParseError

§

fn from(e: TryFromError) -> ParseError

Converts to this type from the input type.
§

impl From<UnknownHrpError> for ParseError

§

fn from(e: UnknownHrpError) -> ParseError

Converts to this type from the input type.
§

impl PartialEq for ParseError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for ParseError

§

fn clone(&self) -> ParseError

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
§

impl Debug for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<DecodeError> for ParseError

§

fn from(e: DecodeError) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Infallible> for ParseError

§

fn from(never: Infallible) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for ParseError

§

fn from(e: InvalidBase58PayloadLengthError) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidLegacyPrefixError> for ParseError

§

fn from(e: InvalidLegacyPrefixError) -> ParseError

Converts to this type from the input type.
§

impl From<LegacyAddressTooLongError> for ParseError

§

fn from(e: LegacyAddressTooLongError) -> ParseError

Converts to this type from the input type.
§

impl From<NetworkValidationError> for ParseError

§

fn from(e: NetworkValidationError) -> ParseError

Converts to this type from the input type.
§

impl From<TryFromError> for ParseError

§

fn from(e: TryFromError) -> ParseError

Converts to this type from the input type.
§

impl From<UnknownHrpError> for ParseError

§

fn from(e: UnknownHrpError) -> ParseError

Converts to this type from the input type.
§

impl PartialEq for ParseError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for ParseError

§

impl StructuralPartialEq for ParseError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.FromScriptError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.FromScriptError.html index 31ab8b8693..83eaa89770 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.FromScriptError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.FromScriptError.html @@ -6,7 +6,7 @@

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

UnrecognizedScript

Script is not a p2pkh, p2sh or witness program.

§

WitnessProgram(Error)

A witness program error.

§

WitnessVersion(TryFromError)

A witness version construction error.

-

Trait Implementations§

§

impl Clone for FromScriptError

§

fn clone(&self) -> FromScriptError

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
§

impl Debug for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromScriptError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromScriptError

§

fn from(e: Error) -> FromScriptError

Converts to this type from the input type.
§

impl From<Infallible> for FromScriptError

§

fn from(never: Infallible) -> FromScriptError

Converts to this type from the input type.
§

impl From<TryFromError> for FromScriptError

§

fn from(e: TryFromError) -> FromScriptError

Converts to this type from the input type.
§

impl PartialEq for FromScriptError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for FromScriptError

§

fn clone(&self) -> FromScriptError

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
§

impl Debug for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromScriptError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromScriptError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromScriptError

§

fn from(e: Error) -> FromScriptError

Converts to this type from the input type.
§

impl From<Infallible> for FromScriptError

§

fn from(never: Infallible) -> FromScriptError

Converts to this type from the input type.
§

impl From<TryFromError> for FromScriptError

§

fn from(e: TryFromError) -> FromScriptError

Converts to this type from the input type.
§

impl PartialEq for FromScriptError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for FromScriptError

§

impl StructuralPartialEq for FromScriptError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.ParseError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.ParseError.html index d2c2b97278..4f2493cfe8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.ParseError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/address/error/enum.ParseError.html @@ -18,7 +18,7 @@
§

InvalidBase58PayloadLength(InvalidBase58PayloadLengthError)

Invalid base58 payload data length for legacy address.

§

InvalidLegacyPrefix(InvalidLegacyPrefixError)

Invalid legacy address prefix in base58 data payload.

§

NetworkValidation(NetworkValidationError)

Address’s network differs from required one.

-

Trait Implementations§

§

impl Clone for ParseError

§

fn clone(&self) -> ParseError

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
§

impl Debug for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<DecodeError> for ParseError

§

fn from(e: DecodeError) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Infallible> for ParseError

§

fn from(never: Infallible) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for ParseError

§

fn from(e: InvalidBase58PayloadLengthError) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidLegacyPrefixError> for ParseError

§

fn from(e: InvalidLegacyPrefixError) -> ParseError

Converts to this type from the input type.
§

impl From<LegacyAddressTooLongError> for ParseError

§

fn from(e: LegacyAddressTooLongError) -> ParseError

Converts to this type from the input type.
§

impl From<NetworkValidationError> for ParseError

§

fn from(e: NetworkValidationError) -> ParseError

Converts to this type from the input type.
§

impl From<TryFromError> for ParseError

§

fn from(e: TryFromError) -> ParseError

Converts to this type from the input type.
§

impl From<UnknownHrpError> for ParseError

§

fn from(e: UnknownHrpError) -> ParseError

Converts to this type from the input type.
§

impl PartialEq for ParseError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for ParseError

§

fn clone(&self) -> ParseError

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
§

impl Debug for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<DecodeError> for ParseError

§

fn from(e: DecodeError) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Infallible> for ParseError

§

fn from(never: Infallible) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for ParseError

§

fn from(e: InvalidBase58PayloadLengthError) -> ParseError

Converts to this type from the input type.
§

impl From<InvalidLegacyPrefixError> for ParseError

§

fn from(e: InvalidLegacyPrefixError) -> ParseError

Converts to this type from the input type.
§

impl From<LegacyAddressTooLongError> for ParseError

§

fn from(e: LegacyAddressTooLongError) -> ParseError

Converts to this type from the input type.
§

impl From<NetworkValidationError> for ParseError

§

fn from(e: NetworkValidationError) -> ParseError

Converts to this type from the input type.
§

impl From<TryFromError> for ParseError

§

fn from(e: TryFromError) -> ParseError

Converts to this type from the input type.
§

impl From<UnknownHrpError> for ParseError

§

fn from(e: UnknownHrpError) -> ParseError

Converts to this type from the input type.
§

impl PartialEq for ParseError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for ParseError

§

impl StructuralPartialEq for ParseError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/enum.Error.html index 50b1d12078..af88b85e8f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/enum.Error.html @@ -6,7 +6,7 @@

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Decode(InvalidCharacterError)

Invalid character while decoding.

§

IncorrectChecksum(IncorrectChecksumError)

Checksum was not correct.

§

TooShort(TooShortError)

Checked data was too short.

-

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(err: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<IncorrectChecksumError> for Error

§

fn from(e: IncorrectChecksumError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<InvalidCharacterError> for Error

§

fn from(e: InvalidCharacterError) -> Error

Converts to this type from the input type.
§

impl From<TooShortError> for Error

§

fn from(e: TooShortError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(err: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<IncorrectChecksumError> for Error

§

fn from(e: IncorrectChecksumError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<InvalidCharacterError> for Error

§

fn from(e: InvalidCharacterError) -> Error

Converts to this type from the input type.
§

impl From<TooShortError> for Error

§

fn from(e: TooShortError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for Error

§

impl StructuralPartialEq for Error

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/error/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/error/enum.Error.html index c679f22462..948f75421e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/error/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/error/enum.Error.html @@ -6,7 +6,7 @@

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Decode(InvalidCharacterError)

Invalid character while decoding.

§

IncorrectChecksum(IncorrectChecksumError)

Checksum was not correct.

§

TooShort(TooShortError)

Checked data was too short.

-

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(err: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<IncorrectChecksumError> for Error

§

fn from(e: IncorrectChecksumError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<InvalidCharacterError> for Error

§

fn from(e: InvalidCharacterError) -> Error

Converts to this type from the input type.
§

impl From<TooShortError> for Error

§

fn from(e: TooShortError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(err: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<IncorrectChecksumError> for Error

§

fn from(e: IncorrectChecksumError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<InvalidCharacterError> for Error

§

fn from(e: InvalidCharacterError) -> Error

Converts to this type from the input type.
§

impl From<TooShortError> for Error

§

fn from(e: TooShortError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for Error

§

impl StructuralPartialEq for Error

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.String.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.String.html index 1f3eafed04..f94da85ecb 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.String.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.String.html @@ -1,4 +1,4 @@ -String in bdk_chain::bitcoin::base58 - Rust

Struct bdk_chain::bitcoin::base58::String

1.0.0 · source ·
pub struct String { /* private fields */ }
Expand description

A UTF-8–encoded, growable string.

+String in bdk_chain::bitcoin::base58 - Rust

Struct bdk_chain::bitcoin::base58::String

1.0.0 · source ·
pub struct String { /* private fields */ }
Expand description

A UTF-8–encoded, growable string.

String is the most common string type. It has ownership over the contents of the string, stored in a heap-allocated buffer (see Representation). It is closely related to its borrowed counterpart, the primitive str.

@@ -2387,13 +2387,7 @@ is not copied.

let original: String = "statue".to_owned();
 let shared: Rc<str> = Rc::from(original);
 assert_eq!("statue", &shared[..]);
-
§

impl From<String> for ToSqlOutput<'_>

§

fn from(t: String) -> ToSqlOutput<'_>

Converts to this type from the input type.
§

impl From<String> for Value

§

fn from(s: String) -> Value

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(f: String) -> Value

Convert String to Value::String.

-
§Examples
-
use serde_json::Value;
-
-let s: String = "lorem".to_owned();
-let x: Value = s.into();
-
1.14.0 · source§

impl From<String> for Vec<u8>

source§

fn from(string: String) -> Vec<u8> ⓘ

Converts the given String to a vector Vec that holds values of type u8.

+
§

impl From<String> for ToSqlOutput<'_>

§

fn from(t: String) -> ToSqlOutput<'_>

Converts to this type from the input type.
§

impl From<String> for Value

§

fn from(s: String) -> Value

Converts to this type from the input type.
1.14.0 · source§

impl From<String> for Vec<u8>

source§

fn from(string: String) -> Vec<u8> ⓘ

Converts the given String to a vector Vec that holds values of type u8.

§Examples
let s1 = String::from("hello world");
 let v1 = Vec::from(s1);
@@ -2435,12 +2429,8 @@ sufficient, and should not be overridden without very good reason.
==.
source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

source§

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

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

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

source§

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

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

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for String

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

source§

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

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

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.0.0 · source§

impl PartialEq for String

source§

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

This method tests for self and other values to be equal, and is used @@ -2457,15 +2447,15 @@ operator. Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl StrConsumer for String

Pushes the str onto the end of the String

§

fn consume(&mut self, buf: &str)

Consume the base64 encoded data in buf
1.16.0 · source§

impl ToSocketAddrs for String

§

type Iter = IntoIter<SocketAddr>

Returned iterator over socket addresses which this type may correspond -to.
source§

fn to_socket_addrs(&self) -> Result<IntoIter<SocketAddr>, Error>

Converts this object to an iterator of resolved SocketAddrs. Read more
§

impl ToSql for String

§

fn to_sql(&self) -> Result<ToSqlOutput<'_>, Error>

Converts Rust value to SQLite value
§

impl TryFrom<String> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( +to.

source§

fn to_socket_addrs(&self) -> Result<IntoIter<SocketAddr>, Error>

Converts this object to an iterator of resolved SocketAddrs. Read more
§

impl ToSql for String

§

fn to_sql(&self) -> Result<ToSqlOutput<'_>, Error>

Converts Rust value to SQLite value
§

impl TryFrom<String> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( value: String -) -> Result<CommandString, <CommandString as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for FeeRate

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<FeeRate, <FeeRate as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Height

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Height, <Height as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Height

§

type Error = ParseHeightError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Height, <Height as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for LockTime

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<LockTime, <LockTime as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Sequence, <Sequence as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Time

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Time, <Time as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Time

§

type Error = ParseTimeError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Time, <Time as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Weight

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Weight, <Weight as TryFrom<String>>::Error>

Performs the conversion.
1.0.0 · source§

impl Write for String

source§

fn write_str(&mut self, s: &str) -> Result<(), Error>

Writes a string slice into this writer, returning whether the write -succeeded. Read more
source§

fn write_char(&mut self, c: char) -> Result<(), Error>

Writes a char into this writer, returning whether the write succeeded. Read more
1.0.0 · source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Glue for usage of the write! macro with implementors of this trait. Read more
source§

impl DerefPure for String

1.0.0 · source§

impl Eq for String

source§

impl Index for String

1.0.0 · source§

impl StructuralPartialEq for String

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T

Performs the conversion.
§

impl TryFrom<String> for FeeRate

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<FeeRate, <FeeRate as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Height

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Height, <Height as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Height

§

type Error = ParseHeightError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Height, <Height as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for LockTime

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<LockTime, <LockTime as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Sequence, <Sequence as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Time

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Time, <Time as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Time

§

type Error = ParseTimeError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Time, <Time as TryFrom<String>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Weight

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Weight, <Weight as TryFrom<String>>::Error>

Performs the conversion.
1.0.0 · source§

impl Write for String

source§

fn write_str(&mut self, s: &str) -> Result<(), Error>

Writes a string slice into this writer, returning whether the write +succeeded. Read more
source§

fn write_char(&mut self, c: char) -> Result<(), Error>

Writes a char into this writer, returning whether the write succeeded. Read more
1.0.0 · source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Glue for usage of the write! macro with implementors of this trait. Read more
source§

impl DerefPure for String

1.0.0 · source§

impl Eq for String

1.0.0 · source§

impl StructuralPartialEq for String

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
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromStrKey for T
where T: MiniscriptKey + FromStr, <T as MiniscriptKey>::Sha256: FromStr, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.Vec.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.Vec.html index 6132a004c1..91550929f4 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.Vec.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/base58/struct.Vec.html @@ -1,4 +1,4 @@ -Vec in bdk_chain::bitcoin::base58 - Rust

Struct bdk_chain::bitcoin::base58::Vec

1.0.0 · source ·
pub struct Vec<T, A = Global>
where +Vec in bdk_chain::bitcoin::base58 - Rust

Struct bdk_chain::bitcoin::base58::Vec

1.0.0 · source ·
pub struct Vec<T, A = Global>
where A: Allocator,
{ /* private fields */ }
Expand description

A contiguous growable array type, written as Vec<T>, short for ‘vector’.

§Examples

let mut vec = Vec::new();
@@ -3693,72 +3693,72 @@ y.clone_from(&x);
 assert_eq!(yp, y.as_ptr());
source§

fn clone(&self) -> Vec<T, A>

Returns a copy of the value. Read more

1.0.0 · source§

impl<T, A> Debug for Vec<T, A>
where T: Debug, - A: Allocator,

source§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Vec<(u32, Address)>

source§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Vec<(u32, Address)>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<(u32, Address)>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<AddrV2Message>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<AddrV2Message>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<AddrV2Message>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<BlockHash>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<BlockHash>, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<FilterHash>

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<FilterHash>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<FilterHash>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<FilterHeader>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<FilterHeader>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<FilterHeader>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Header>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Header>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<Header>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Inventory>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Inventory>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<Inventory>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<PrefilledTransaction>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<PrefilledTransaction>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<PrefilledTransaction>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<ShortId>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<ShortId>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<ShortId>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TapLeafHash>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TapLeafHash>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<TapLeafHash>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Transaction>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Transaction>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<Transaction>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TxIn>

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<Vec<TxIn>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TxMerkleNode>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TxIn>

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<Vec<TxIn>, Error>
where + R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TxMerkleNode>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<TxMerkleNode>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TxOut>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<TxOut>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<TxOut>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<VarInt>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<VarInt>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<VarInt>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Vec<u8>>

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<Vec<u8>>

§

fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<Vec<Vec<u8>>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<u64>

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<Vec<u64>, Error>
where - R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where - R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<u8>

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<Vec<u8>, Error>
where + R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<u64>

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<Vec<u64>, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where + R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Decodable for Vec<u8>

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<Vec<u8>, Error>
where + R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
1.0.0 · source§

impl<T> Default for Vec<T>

source§

fn default() -> Vec<T>

Creates an empty Vec<T>.

The vector will not allocate until elements are pushed onto it.

1.0.0 · source§

impl<T, A> Deref for Vec<T, A>
where @@ -3768,24 +3768,24 @@ y.clone_from(&x); deserializer: D ) -> Result<Vec<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> DisplayHex for &'a Vec<u8>

§

type Display = DisplayByteSlice<'a>

The type providing fmt::Display implementation. Read more
§

fn as_hex(self) -> <&'a Vec<u8> as DisplayHex>::Display ⓘ

Display Self as a continuous sequence of ASCII hex chars.
§

fn hex_reserve_suggestion(self) -> usize

Hints how much bytes to reserve when creating a String. Read more
§

fn to_lower_hex_string(self) -> String

Create a lower-hex-encoded string. Read more
§

fn to_upper_hex_string(self) -> String

Create an upper-hex-encoded string. Read more
§

fn to_hex_string(self, case: Case) -> String

Create a hex-encoded string. Read more
§

fn append_hex_to_string(self, case: Case, string: &mut String)

Appends hex-encoded content to an existing String. Read more
1.0.0 · source§

impl<T, A> Drop for Vec<T, A>
where - A: Allocator,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

impl Encodable for Vec<(u32, Address)>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<AddrV2Message>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<BlockHash>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<FilterHash>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<FilterHeader>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Header>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Inventory>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<PrefilledTransaction>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<ShortId>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TapLeafHash>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Transaction>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TxIn>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TxMerkleNode>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TxOut>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<VarInt>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Vec<u8>>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<u64>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<u8>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + A: Allocator,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

impl Encodable for Vec<(u32, Address)>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<AddrV2Message>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<BlockHash>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<FilterHash>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<FilterHeader>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Header>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Inventory>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<PrefilledTransaction>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<ShortId>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TapLeafHash>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Transaction>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TxIn>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TxMerkleNode>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<TxOut>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<VarInt>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<Vec<u8>>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<u64>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl Encodable for Vec<u8>

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
1.2.0 · source§

impl<'a, T, A> Extend<&'a T> for Vec<T, A>
where T: Copy + 'a, A: Allocator,

Extend implementation that copies elements out of references before pushing them onto the Vec.

@@ -3841,7 +3841,7 @@ filled by cloning s’s items into it.

let o: Cow<'_, [i32]> = Cow::Owned(vec![1, 2, 3]);
 let b: Cow<'_, [i32]> = Cow::Borrowed(&[1, 2, 3]);
 assert_eq!(Vec::from(o), Vec::from(b));
-
§

impl From<DerivationPath> for Vec<ChildNumber>

§

fn from(path: DerivationPath) -> Vec<ChildNumber>

Converts to this type from the input type.
§

impl From<PushBytesBuf> for Vec<u8>

§

fn from(value: PushBytesBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptBuf> for Vec<u8>

§

fn from(v: ScriptBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
1.14.0 · source§

impl From<String> for Vec<u8>

source§

fn from(string: String) -> Vec<u8> ⓘ

Converts the given String to a vector Vec that holds values of type u8.

+
§

impl From<DerivationPath> for Vec<ChildNumber>

§

fn from(path: DerivationPath) -> Vec<ChildNumber>

Converts to this type from the input type.
§

impl From<PushBytesBuf> for Vec<u8>

§

fn from(value: PushBytesBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptBuf> for Vec<u8>

§

fn from(v: ScriptBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
1.14.0 · source§

impl From<String> for Vec<u8>

source§

fn from(string: String) -> Vec<u8> ⓘ

Converts the given String to a vector Vec that holds values of type u8.

§Examples
let s1 = String::from("hello world");
 let v1 = Vec::from(s1);
@@ -3849,20 +3849,13 @@ filled by cloning s’s items into it.

for b in v1 { println!("{b}"); }
-
§

impl From<TaprootMerkleBranch> for Vec<TapNodeHash>

§

fn from(branch: TaprootMerkleBranch) -> Vec<TapNodeHash>

Converts to this type from the input type.
§

impl From<Vec<&[u8]>> for Witness

§

fn from(vec: Vec<&[u8]>) -> Witness

Converts to this type from the input type.
§

impl<A> From<Vec<<A as Array>::Item>> for SmallVec<A>
where - A: Array,

§

fn from(vec: Vec<<A as Array>::Item>) -> SmallVec<A>

Converts to this type from the input type.
§

impl From<Vec<ChildNumber>> for DerivationPath

§

fn from(numbers: Vec<ChildNumber>) -> DerivationPath

Converts to this type from the input type.
1.43.0 · source§

impl From<Vec<NonZero<u8>>> for CString

source§

fn from(v: Vec<NonZero<u8>>) -> CString

Converts a Vec<NonZero<u8>> into a CString without +

§

impl From<TaprootMerkleBranch> for Vec<TapNodeHash>

§

fn from(branch: TaprootMerkleBranch) -> Vec<TapNodeHash>

Converts to this type from the input type.
§

impl From<Vec<&[u8]>> for Witness

§

fn from(vec: Vec<&[u8]>) -> Witness

Converts to this type from the input type.
§

impl<A> From<Vec<<A as Array>::Item>> for SmallVec<A>
where + A: Array,

§

fn from(vec: Vec<<A as Array>::Item>) -> SmallVec<A>

Converts to this type from the input type.
§

impl From<Vec<ChildNumber>> for DerivationPath

§

fn from(numbers: Vec<ChildNumber>) -> DerivationPath

Converts to this type from the input type.
1.43.0 · source§

impl From<Vec<NonZero<u8>>> for CString

source§

fn from(v: Vec<NonZero<u8>>) -> CString

Converts a Vec<NonZero<u8>> into a CString without copying nor checking for inner nul bytes.

1.8.0 · source§

impl<'a, T> From<Vec<T>> for Cow<'a, [T]>
where T: Clone,

source§

fn from(v: Vec<T>) -> Cow<'a, [T]>

Creates an Owned variant of Cow from an owned instance of Vec.

This conversion does not allocate or clone the data.

-
source§

impl<T> From<Vec<T>> for Value
where - T: Into<Value>,

source§

fn from(f: Vec<T>) -> Value

Convert a Vec to Value::Array.

-
§Examples
-
use serde_json::Value;
-
-let v = vec!["lorem", "ipsum", "dolor"];
-let x: Value = v.into();
1.21.0 · source§

impl<T, A> From<Vec<T, A>> for Arc<[T], A>
where A: Allocator + Clone,

source§

fn from(v: Vec<T, A>) -> Arc<[T], A>

Allocate a reference-counted slice and move v’s items into it.

§Example
@@ -3895,8 +3888,8 @@ vec.extend([1, 2, This conversion is guaranteed to run in O(1) time and to not re-allocate the Vec’s buffer or allocate any additional memory.

-
§

impl From<Vec<Vec<u8>>> for Witness

§

fn from(vec: Vec<Vec<u8>>) -> Witness

Converts to this type from the input type.
source§

impl From<Vec<u32>> for IndexVec

source§

fn from(v: Vec<u32>) -> IndexVec

Converts to this type from the input type.
§

impl From<Vec<u8>> for Builder

Creates a new builder from an existing vector.

-
§

fn from(v: Vec<u8>) -> Builder

Converts to this type from the input type.
§

impl From<Vec<u8>> for ScriptBuf

§

fn from(v: Vec<u8>) -> ScriptBuf

Converts to this type from the input type.
§

impl From<Vec<u8>> for ToSqlOutput<'_>

§

fn from(t: Vec<u8>) -> ToSqlOutput<'_>

Converts to this type from the input type.
§

impl From<Vec<u8>> for Value

§

fn from(v: Vec<u8>) -> Value

Converts to this type from the input type.
source§

impl From<Vec<usize>> for IndexVec

source§

fn from(v: Vec<usize>) -> IndexVec

Converts to this type from the input type.
1.10.0 · source§

impl<T, A> From<VecDeque<T, A>> for Vec<T, A>
where +

§

impl From<Vec<Vec<u8>>> for Witness

§

fn from(vec: Vec<Vec<u8>>) -> Witness

Converts to this type from the input type.
source§

impl From<Vec<u32>> for IndexVec

source§

fn from(v: Vec<u32>) -> IndexVec

Converts to this type from the input type.
§

impl From<Vec<u8>> for Builder

Creates a new builder from an existing vector.

+
§

fn from(v: Vec<u8>) -> Builder

Converts to this type from the input type.
§

impl From<Vec<u8>> for ScriptBuf

§

fn from(v: Vec<u8>) -> ScriptBuf

Converts to this type from the input type.
§

impl From<Vec<u8>> for ToSqlOutput<'_>

§

fn from(t: Vec<u8>) -> ToSqlOutput<'_>

Converts to this type from the input type.
§

impl From<Vec<u8>> for Value

§

fn from(v: Vec<u8>) -> Value

Converts to this type from the input type.
source§

impl From<Vec<usize>> for IndexVec

source§

fn from(v: Vec<usize>) -> IndexVec

Converts to this type from the input type.
1.10.0 · source§

impl<T, A> From<VecDeque<T, A>> for Vec<T, A>
where A: Allocator,

source§

fn from(other: VecDeque<T, A>) -> Vec<T, A>

Turn a VecDeque<T> into a Vec<T>.

This never needs to re-allocate, but does need to do O(n) data movement if the circular buffer doesn’t happen to be at the beginning of the allocation.

@@ -4085,12 +4078,12 @@ v.truncate(2); let [a, b]: [_; 2] = v.try_into().unwrap(); assert_eq!(a, b' '); assert_eq!(b, b'd');
-
§

type Error = Vec<T, A>

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<TapNodeHash>> for TaprootMerkleBranch

§

type Error = Vec<T, A>

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<TapNodeHash>> for TaprootMerkleBranch

§

fn try_from( v: Vec<TapNodeHash> ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<Vec<TapNodeHash>>>::Error>

Creates a merkle proof from list of hashes.

§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<u8>> for PushBytesBuf

§

type Error = PushBytesError

The type returned in the event of a conversion error.
§

fn try_from( +

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<u8>> for PushBytesBuf

§

type Error = PushBytesError

The type returned in the event of a conversion error.
§

fn try_from( vec: Vec<u8> ) -> Result<PushBytesBuf, <PushBytesBuf as TryFrom<Vec<u8>>>::Error>

Performs the conversion.
§

impl Write for Vec<u8>

§

fn write(&mut self, buf: &[u8]) -> Result<usize, Error>

Writes buf into this writer, returning how many bytes were written.
§

fn flush(&mut self) -> Result<(), Error>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination.
§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer.
1.0.0 · source§

impl<A> Write for Vec<u8, A>
where @@ -4119,7 +4112,7 @@ encountered. 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
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip152/struct.ShortId.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip152/struct.ShortId.html index 842a357816..f59541989e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip152/struct.ShortId.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip152/struct.ShortId.html @@ -9,7 +9,7 @@

§

impl ShortId

pub fn calculate_siphash_keys(header: &Header, nonce: u64) -> (u64, u64)

Calculate the SipHash24 keys used to calculate short IDs.

pub fn with_siphash_keys<T>(txid: &T, siphash_keys: (u64, u64)) -> ShortId
where T: AsRef<[u8]>,

Calculate the short ID with the given (w)txid and using the provided SipHash keys.

-

Trait Implementations§

§

impl AsMut<[u8]> for ShortId

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 6]> for ShortId

§

fn as_mut(&mut self) -> &mut [u8; 6]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ShortId

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 6]> for ShortId

§

fn as_ref(&self) -> &[u8; 6]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ShortId

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 6]> for ShortId

§

fn borrow(&self) -> &[u8; 6]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for ShortId

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 6]> for ShortId

§

fn borrow_mut(&mut self) -> &mut [u8; 6]

Mutably borrows from an owned value. Read more
§

impl Clone for ShortId

§

fn clone(&self) -> ShortId

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
§

impl Debug for ShortId

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for ShortId

Trait Implementations§

§

impl AsMut<[u8]> for ShortId

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 6]> for ShortId

§

fn as_mut(&mut self) -> &mut [u8; 6]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ShortId

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 6]> for ShortId

§

fn as_ref(&self) -> &[u8; 6]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ShortId

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 6]> for ShortId

§

fn borrow(&self) -> &[u8; 6]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for ShortId

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 6]> for ShortId

§

fn borrow_mut(&mut self) -> &mut [u8; 6]

Mutably borrows from an owned value. Read more
§

impl Clone for ShortId

§

fn clone(&self) -> ShortId

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
§

impl Debug for ShortId

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for ShortId

§

fn consensus_decode<R>(r: &mut R) -> Result<ShortId, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl Default for ShortId

§

fn default() -> ShortId

Returns the “default value” for a type. Read more
§

impl<'de> Deserialize<'de> for ShortId

§

fn deserialize<D>(d: D) -> Result<ShortId, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ShortId

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for ShortId

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/enum.Error.html index 99f7c1095f..11d4063bb8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/enum.Error.html @@ -4,7 +4,7 @@ }
Expand description

Errors for blockfilter.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

UtxoMissing(OutPoint)

Missing UTXO, cannot calculate script filter.

§

Io(Error)

IO error reading or writing binary serialization of the filter.

-

Trait Implementations§

§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(io: Error) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(io: Error) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHash.html index 74d959a440..cc52952b4d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHash.html @@ -10,7 +10,7 @@ R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for FilterHash

§

fn deserialize<D>(d: D) -> Result<FilterHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for FilterHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for FilterHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl FromStr for FilterHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHash, <FilterHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl FromStr for FilterHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHash, <FilterHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHeader.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHeader.html index 18a3428265..55b4881554 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHeader.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip158/struct.FilterHeader.html @@ -2,11 +2,11 @@

Implementations§

§

impl FilterHeader

pub fn from_raw_hash(inner: Hash) -> FilterHeader

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for FilterHeader

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for FilterHeader

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for FilterHeader

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for FilterHeader

§

fn clone(&self) -> FilterHeader

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
§

impl Debug for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for FilterHeader

Trait Implementations§

§

impl AsRef<[u8]> for FilterHeader

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for FilterHeader

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for FilterHeader

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for FilterHeader

§

fn clone(&self) -> FilterHeader

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
§

impl Debug for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for FilterHeader

§

fn consensus_decode<R>(r: &mut R) -> Result<FilterHeader, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for FilterHeader

§

fn deserialize<D>(d: D) -> Result<FilterHeader, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for FilterHeader

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl FromStr for FilterHeader

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHeader, <FilterHeader as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHeader

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl FromStr for FilterHeader

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHeader, <FilterHeader as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHeader

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.ChildNumber.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.ChildNumber.html index db9e8b1b74..eda99a5509 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.ChildNumber.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.ChildNumber.html @@ -20,7 +20,7 @@

Trait Implementations§

§

impl AsRef<[ChildNumber]> for ChildNumber

§

fn as_ref(&self) -> &[ChildNumber]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for ChildNumber

§

fn clone(&self) -> ChildNumber

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
§

impl Debug for ChildNumber

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ChildNumber

§

fn deserialize<D>( deserializer: D ) -> Result<ChildNumber, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ChildNumber

§

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

Formats the value using the given formatter. Read more
§

impl From<ChildNumber> for u32

§

fn from(cnum: ChildNumber) -> u32

Converts to this type from the input type.
§

impl From<u32> for ChildNumber

§

fn from(number: u32) -> ChildNumber

Converts to this type from the input type.
§

impl FromIterator<ChildNumber> for DerivationPath

§

fn from_iter<T>(iter: T) -> DerivationPath
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ChildNumber

§

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

Formats the value using the given formatter. Read more
§

impl From<ChildNumber> for u32

§

fn from(cnum: ChildNumber) -> u32

Converts to this type from the input type.
§

impl From<u32> for ChildNumber

§

fn from(number: u32) -> ChildNumber

Converts to this type from the input type.
§

impl FromIterator<ChildNumber> for DerivationPath

§

fn from_iter<T>(iter: T) -> DerivationPath
where T: IntoIterator<Item = ChildNumber>,

Creates a value from an iterator. Read more
§

impl FromStr for ChildNumber

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(inp: &str) -> Result<ChildNumber, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for ChildNumber

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.Error.html index 7b829cde32..c353f233fc 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/enum.Error.html @@ -22,7 +22,7 @@
§

Hex(HexToArrayError)

Hexadecimal decoding error

§

InvalidPublicKeyHexLength(usize)

PublicKey hex should be 66 or 130 digits long.

§

InvalidBase58PayloadLength(InvalidBase58PayloadLengthError)

Base58 decoded data was an invalid length.

-

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(err: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for GetKeyError

§

fn from(e: Error) -> GetKeyError

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for Error

§

fn from(e: InvalidBase58PayloadLengthError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(err: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for GetKeyError

§

fn from(e: Error) -> GetKeyError

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for Error

§

fn from(e: InvalidBase58PayloadLengthError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for Error

§

impl StructuralPartialEq for Error

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.DerivationPath.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.DerivationPath.html index 28ca9df0c9..91e314b568 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.DerivationPath.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.DerivationPath.html @@ -38,7 +38,7 @@ Unhardened elements are copied as is.

Trait Implementations§

§

impl AsRef<[ChildNumber]> for DerivationPath

§

fn as_ref(&self) -> &[ChildNumber]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for DerivationPath

§

fn clone(&self) -> DerivationPath

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
§

impl Debug for DerivationPath

§

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

Formats the value using the given formatter. Read more
§

impl Default for DerivationPath

§

fn default() -> DerivationPath

Returns the “default value” for a type. Read more
§

impl<'de> Deserialize<'de> for DerivationPath

§

fn deserialize<D>( deserializer: D ) -> Result<DerivationPath, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for DerivationPath

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [ChildNumber]> for DerivationPath

§

fn from(numbers: &'a [ChildNumber]) -> DerivationPath

Converts to this type from the input type.
§

impl From<DerivationPath> for Vec<ChildNumber>

§

fn from(path: DerivationPath) -> Vec<ChildNumber>

Converts to this type from the input type.
§

impl From<Vec<ChildNumber>> for DerivationPath

§

fn from(numbers: Vec<ChildNumber>) -> DerivationPath

Converts to this type from the input type.
§

impl FromIterator<ChildNumber> for DerivationPath

§

fn from_iter<T>(iter: T) -> DerivationPath
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for DerivationPath

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [ChildNumber]> for DerivationPath

§

fn from(numbers: &'a [ChildNumber]) -> DerivationPath

Converts to this type from the input type.
§

impl From<DerivationPath> for Vec<ChildNumber>

§

fn from(path: DerivationPath) -> Vec<ChildNumber>

Converts to this type from the input type.
§

impl From<Vec<ChildNumber>> for DerivationPath

§

fn from(numbers: Vec<ChildNumber>) -> DerivationPath

Converts to this type from the input type.
§

impl FromIterator<ChildNumber> for DerivationPath

§

fn from_iter<T>(iter: T) -> DerivationPath
where T: IntoIterator<Item = ChildNumber>,

Creates a value from an iterator. Read more
§

impl FromStr for DerivationPath

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(path: &str) -> Result<DerivationPath, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for DerivationPath

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.Fingerprint.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.Fingerprint.html index 302cb439d1..7858ee2da8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.Fingerprint.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.Fingerprint.html @@ -6,7 +6,7 @@

§

impl Fingerprint

pub fn as_bytes(&self) -> &[u8; 4]

Returns a reference the underlying bytes.

pub fn to_bytes(self) -> [u8; 4]

Returns the underlying bytes.

pub fn from_hex(s: &str) -> Result<Fingerprint, HexToArrayError>

Creates Self from a hex string.

-

Trait Implementations§

§

impl AsMut<[u8]> for Fingerprint

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 4]> for Fingerprint

§

fn as_mut(&mut self) -> &mut [u8; 4]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Fingerprint

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 4]> for Fingerprint

§

fn as_ref(&self) -> &[u8; 4]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Fingerprint

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 4]> for Fingerprint

§

fn borrow(&self) -> &[u8; 4]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for Fingerprint

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 4]> for Fingerprint

§

fn borrow_mut(&mut self) -> &mut [u8; 4]

Mutably borrows from an owned value. Read more
§

impl Clone for Fingerprint

§

fn clone(&self) -> Fingerprint

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
§

impl Debug for Fingerprint

§

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

Formats the value using the given formatter. Read more
§

impl Default for Fingerprint

§

fn default() -> Fingerprint

Returns the “default value” for a type. Read more
§

impl<'de> Deserialize<'de> for Fingerprint

§

fn deserialize<D>(d: D) -> Result<Fingerprint, <D as Deserializer<'de>>::Error>
where +

Trait Implementations§

§

impl AsMut<[u8]> for Fingerprint

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 4]> for Fingerprint

§

fn as_mut(&mut self) -> &mut [u8; 4]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Fingerprint

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 4]> for Fingerprint

§

fn as_ref(&self) -> &[u8; 4]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Fingerprint

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 4]> for Fingerprint

§

fn borrow(&self) -> &[u8; 4]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for Fingerprint

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 4]> for Fingerprint

§

fn borrow_mut(&mut self) -> &mut [u8; 4]

Mutably borrows from an owned value. Read more
§

impl Clone for Fingerprint

§

fn clone(&self) -> Fingerprint

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
§

impl Debug for Fingerprint

§

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

Formats the value using the given formatter. Read more
§

impl Default for Fingerprint

§

fn default() -> Fingerprint

Returns the “default value” for a type. Read more
§

impl<'de> Deserialize<'de> for Fingerprint

§

fn deserialize<D>(d: D) -> Result<Fingerprint, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Fingerprint

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [u8; 4]> for Fingerprint

§

fn from(data: &'a [u8; 4]) -> Fingerprint

Converts to this type from the input type.
§

impl<'a> From<[u8; 4]> for Fingerprint

§

fn from(data: [u8; 4]) -> Fingerprint

Converts to this type from the input type.
§

impl FromStr for Fingerprint

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Fingerprint, <Fingerprint as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Fingerprint

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.XKeyIdentifier.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.XKeyIdentifier.html index a905fbdb88..35000534c8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.XKeyIdentifier.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/bip32/struct.XKeyIdentifier.html @@ -2,10 +2,10 @@

Implementations§

§

impl XKeyIdentifier

pub fn from_raw_hash(inner: Hash) -> XKeyIdentifier

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for XKeyIdentifier

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for XKeyIdentifier

§

fn clone(&self) -> XKeyIdentifier

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
§

impl Debug for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XKeyIdentifier

Trait Implementations§

§

impl AsRef<[u8]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for XKeyIdentifier

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for XKeyIdentifier

§

fn clone(&self) -> XKeyIdentifier

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
§

impl Debug for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XKeyIdentifier

§

fn deserialize<D>( d: D ) -> Result<XKeyIdentifier, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl From<&Xpub> for XKeyIdentifier

§

fn from(key: &Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<Hash> for XKeyIdentifier

§

fn from(inner: Hash) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<XKeyIdentifier> for Hash

§

fn from(hashtype: XKeyIdentifier) -> Hash

Converts to this type from the input type.
§

impl From<Xpub> for XKeyIdentifier

§

fn from(key: Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl FromStr for XKeyIdentifier

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XKeyIdentifier, <XKeyIdentifier as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for XKeyIdentifier

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl From<&Xpub> for XKeyIdentifier

§

fn from(key: &Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<Hash> for XKeyIdentifier

§

fn from(inner: Hash) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<XKeyIdentifier> for Hash

§

fn from(hashtype: XKeyIdentifier) -> Hash

Converts to this type from the input type.
§

impl From<Xpub> for XKeyIdentifier

§

fn from(key: Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl FromStr for XKeyIdentifier

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XKeyIdentifier, <XKeyIdentifier as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for XKeyIdentifier

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.Block.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.Block.html index def4d31723..0c7691d48d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.Block.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.Block.html @@ -36,7 +36,7 @@ including base data and witness data.

__deserializer: __D ) -> Result<Block, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Encodable for Block

§

fn consensus_encode<R>(&self, r: &mut R) -> Result<usize, Error>
where - R: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl PartialEq for Block

§

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

This method tests for self and other values to be equal, and is used + R: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl PartialEq for Block

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Serialize for Block

§

fn serialize<__S>( &self, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.BlockHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.BlockHash.html index f891d2f2cd..7cee9bd83c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.BlockHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.BlockHash.html @@ -2,11 +2,11 @@

Implementations§

§

impl BlockHash

pub fn from_raw_hash(inner: Hash) -> BlockHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for BlockHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for BlockHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for BlockHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for BlockHash

§

fn clone(&self) -> BlockHash

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
§

impl Debug for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for BlockHash

Trait Implementations§

§

impl AsRef<[u8]> for BlockHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for BlockHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for BlockHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for BlockHash

§

fn clone(&self) -> BlockHash

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
§

impl Debug for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for BlockHash

§

fn consensus_decode<R>(r: &mut R) -> Result<BlockHash, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for BlockHash

§

fn deserialize<D>(d: D) -> Result<BlockHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for BlockHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<&Header> for BlockHash

§

fn from(header: &Header) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Header> for BlockHash

§

fn from(header: Header) -> BlockHash

Converts to this type from the input type.
§

impl FromStr for BlockHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<BlockHash, <BlockHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for BlockHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<&Header> for BlockHash

§

fn from(header: &Header) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Header> for BlockHash

§

fn from(header: Header) -> BlockHash

Converts to this type from the input type.
§

impl FromStr for BlockHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<BlockHash, <BlockHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for BlockHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.TxMerkleNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.TxMerkleNode.html index 5a1d322eaf..3d7946be45 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.TxMerkleNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.TxMerkleNode.html @@ -6,7 +6,7 @@ R: Read + ?Sized,
Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for TxMerkleNode

§

fn deserialize<D>(d: D) -> Result<TxMerkleNode, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TxMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for TxMerkleNode

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for TxMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TxMerkleNode, <TxMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TxMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for TxMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TxMerkleNode, <TxMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TxMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.WitnessMerkleNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.WitnessMerkleNode.html index 379de92899..541eef44b0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.WitnessMerkleNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/block/struct.WitnessMerkleNode.html @@ -2,13 +2,13 @@

Implementations§

§

impl WitnessMerkleNode

pub fn from_raw_hash(inner: Hash) -> WitnessMerkleNode

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WitnessMerkleNode

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WitnessMerkleNode

§

fn clone(&self) -> WitnessMerkleNode

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
§

impl Debug for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for WitnessMerkleNode

Trait Implementations§

§

impl AsRef<[u8]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WitnessMerkleNode

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WitnessMerkleNode

§

fn clone(&self) -> WitnessMerkleNode

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
§

impl Debug for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for WitnessMerkleNode

§

fn consensus_decode<R>(r: &mut R) -> Result<WitnessMerkleNode, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for WitnessMerkleNode

§

fn deserialize<D>( d: D ) -> Result<WitnessMerkleNode, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for WitnessMerkleNode

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for WitnessMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for WitnessMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<WitnessMerkleNode, <WitnessMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WitnessMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/constants/struct.ChainHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/constants/struct.ChainHash.html index 4bd440e4aa..2cdbf1d28d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/constants/struct.ChainHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/constants/struct.ChainHash.html @@ -19,8 +19,8 @@ for specification.

See BOLT 0 for specification.

pub fn from_genesis_block_hash(block_hash: BlockHash) -> ChainHash

Converts genesis block hash into ChainHash.

-

Trait Implementations§

§

impl AsMut<[u8]> for ChainHash

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 32]> for ChainHash

§

fn as_mut(&mut self) -> &mut [u8; 32]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ChainHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for ChainHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ChainHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 32]> for ChainHash

§

fn borrow(&self) -> &[u8; 32]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for ChainHash

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 32]> for ChainHash

§

fn borrow_mut(&mut self) -> &mut [u8; 32]

Mutably borrows from an owned value. Read more
§

impl Clone for ChainHash

§

fn clone(&self) -> ChainHash

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
§

impl Debug for ChainHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ChainHash

§

fn deserialize<D>(d: D) -> Result<ChainHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ChainHash

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [u8; 32]> for ChainHash

§

fn from(data: &'a [u8; 32]) -> ChainHash

Converts to this type from the input type.
§

impl<'a> From<[u8; 32]> for ChainHash

§

fn from(data: [u8; 32]) -> ChainHash

Converts to this type from the input type.
§

impl FromStr for ChainHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<ChainHash, <ChainHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for ChainHash

§

fn hash<__H>(&self, state: &mut __H)
where +

Trait Implementations§

§

impl AsMut<[u8]> for ChainHash

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 32]> for ChainHash

§

fn as_mut(&mut self) -> &mut [u8; 32]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ChainHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for ChainHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ChainHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 32]> for ChainHash

§

fn borrow(&self) -> &[u8; 32]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for ChainHash

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 32]> for ChainHash

§

fn borrow_mut(&mut self) -> &mut [u8; 32]

Mutably borrows from an owned value. Read more
§

impl Clone for ChainHash

§

fn clone(&self) -> ChainHash

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
§

impl Debug for ChainHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ChainHash

§

fn deserialize<D>(d: D) -> Result<ChainHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ChainHash

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [u8; 32]> for ChainHash

§

fn from(data: &'a [u8; 32]) -> ChainHash

Converts to this type from the input type.
§

impl<'a> From<[u8; 32]> for ChainHash

§

fn from(data: [u8; 32]) -> ChainHash

Converts to this type from the input type.
§

impl FromStr for ChainHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<ChainHash, <ChainHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for ChainHash

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<I> Index<I> for ChainHash
where @@ -35,9 +35,9 @@ operator. Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl<'a> TryFrom<&'a [u8]> for ChainHash

§

type Error = TryFromSliceError

The type returned in the event of a conversion error.
§

fn try_from( + S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl<'a> TryFrom<&'a [u8]> for ChainHash

§

type Error = TryFromSliceError

The type returned in the event of a conversion error.
§

fn try_from( data: &'a [u8] -) -> Result<ChainHash, <ChainHash as TryFrom<&'a [u8]>>::Error>

Performs the conversion.
§

impl TryFrom<ChainHash> for Network

§

type Error = UnknownChainHashError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<ChainHash, <ChainHash as TryFrom<&'a [u8]>>::Error>

Performs the conversion.
§

impl TryFrom<ChainHash> for Network

§

type Error = UnknownChainHashError

The type returned in the event of a conversion error.
§

fn try_from( chain_hash: ChainHash ) -> Result<Network, <Network as TryFrom<ChainHash>>::Error>

Performs the conversion.
§

impl UpperHex for ChainHash

§

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

Formats the value using the given formatter. Read more
§

impl Copy for ChainHash

§

impl Eq for ChainHash

§

impl StructuralPartialEq for ChainHash

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/absolute/enum.LockTime.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/absolute/enum.LockTime.html index 3a2bd3ce7b..dd2a6bfae8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/absolute/enum.LockTime.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/absolute/enum.LockTime.html @@ -114,7 +114,7 @@ or use the pattern below:

deserializer: D ) -> Result<LockTime, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LockTime

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for LockTime

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<AbsLockTime> for LockTime

§

fn from(lock_time: AbsLockTime) -> LockTime

Converts to this type from the input type.
§

impl From<Height> for LockTime

§

fn from(h: Height) -> LockTime

Converts to this type from the input type.
§

impl From<Time> for LockTime

§

fn from(t: Time) -> LockTime

Converts to this type from the input type.
§

impl FromStr for LockTime

§

type Err = ParseIntError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<LockTime, <LockTime as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for LockTime

§

fn hash<__H>(&self, state: &mut __H)
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<AbsLockTime> for LockTime

§

fn from(lock_time: AbsLockTime) -> LockTime

Converts to this type from the input type.
§

impl From<Height> for LockTime

§

fn from(h: Height) -> LockTime

Converts to this type from the input type.
§

impl From<Time> for LockTime

§

fn from(t: Time) -> LockTime

Converts to this type from the input type.
§

impl FromStr for LockTime

§

type Err = ParseIntError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<LockTime, <LockTime as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for LockTime

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for LockTime

§

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

This method tests for self and other values to be equal, and is used diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/relative/enum.LockTime.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/relative/enum.LockTime.html index 8f6249bb23..13ee82aadd 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/relative/enum.LockTime.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/locktime/relative/enum.LockTime.html @@ -110,7 +110,7 @@ with the sequence number of the input which spends the script.

Trait Implementations§

§

impl Clone for LockTime

§

fn clone(&self) -> LockTime

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
§

impl Debug for LockTime

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for LockTime

§

fn deserialize<__D>( __deserializer: __D ) -> Result<LockTime, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LockTime

§

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

Formats the value using the given formatter. Read more
§

impl From<Height> for LockTime

§

fn from(h: Height) -> LockTime

Converts to this type from the input type.
§

impl From<LockTime> for Sequence

§

fn from(lt: LockTime) -> Sequence

Converts to this type from the input type.
§

impl From<RelLockTime> for LockTime

§

fn from(lock_time: RelLockTime) -> LockTime

Converts to this type from the input type.
§

impl From<Time> for LockTime

§

fn from(t: Time) -> LockTime

Converts to this type from the input type.
§

impl Hash for LockTime

§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LockTime

§

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

Formats the value using the given formatter. Read more
§

impl From<Height> for LockTime

§

fn from(h: Height) -> LockTime

Converts to this type from the input type.
§

impl From<LockTime> for Sequence

§

fn from(lt: LockTime) -> Sequence

Converts to this type from the input type.
§

impl From<RelLockTime> for LockTime

§

fn from(lock_time: RelLockTime) -> LockTime

Converts to this type from the input type.
§

impl From<Time> for LockTime

§

fn from(t: Time) -> LockTime

Converts to this type from the input type.
§

impl Hash for LockTime

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for LockTime

§

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

This method tests for self and other values to be equal, and is used diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/opcodes/struct.Opcode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/opcodes/struct.Opcode.html index 3fa6ecd82b..6516c33218 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/opcodes/struct.Opcode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/opcodes/struct.Opcode.html @@ -9,7 +9,7 @@ types of opcodes.

in contexts where only pushes are supposed to be allowed.

Implementations§

§

impl Opcode

pub fn classify(self, ctx: ClassifyContext) -> Class

Classifies an Opcode into a broad class.

pub const fn to_u8(self) -> u8

Encodes Opcode as a byte.

-

Trait Implementations§

§

impl Clone for Opcode

§

fn clone(&self) -> Opcode

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
§

impl Debug for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl Display for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl From<WitnessVersion> for Opcode

§

fn from(version: WitnessVersion) -> Opcode

Converts to this type from the input type.
§

impl From<u8> for Opcode

§

fn from(b: u8) -> Opcode

Converts to this type from the input type.
§

impl PartialEq for Opcode

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Opcode

§

fn clone(&self) -> Opcode

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
§

impl Debug for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl Display for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl From<WitnessVersion> for Opcode

§

fn from(version: WitnessVersion) -> Opcode

Converts to this type from the input type.
§

impl From<u8> for Opcode

§

fn from(b: u8) -> Opcode

Converts to this type from the input type.
§

impl PartialEq for Opcode

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Serialize for Opcode

§

fn serialize<S>( &self, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytes.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytes.html index 5ae221e932..ee2c15e684 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytes.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytes.html @@ -7,33 +7,33 @@ the script safely.

pub fn as_mut_bytes(&mut self) -> &mut [u8] ⓘ

Returns the underlying mutbale bytes.

§

impl PushBytes

pub fn len(&self) -> usize

Returns the number of bytes in buffer.

pub fn is_empty(&self) -> bool

Returns true if the buffer contains zero bytes.

-

Trait Implementations§

§

impl AsMut<[u8]> for PushBytes

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 0]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 1]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 10]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 11]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 12]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 13]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 14]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 15]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 16]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 17]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 18]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 19]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 2]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 20]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 21]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 22]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 23]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 24]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 25]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 26]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 27]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 28]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 29]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 3]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 30]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 31]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 32]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 33]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 34]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 35]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 36]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 37]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 38]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 39]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 4]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 40]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 41]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 42]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 43]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 44]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 45]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 46]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 47]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 48]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 49]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 5]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 50]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 51]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 52]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 53]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 54]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 55]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 56]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 57]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 58]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 59]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 6]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 60]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 61]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 62]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 63]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 64]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 65]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 66]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 67]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 68]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 69]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 7]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 70]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 71]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 72]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 73]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 74]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 75]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 76]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 8]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 9]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for PushBytes

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for PushBytesBuf

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for PushBytes

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 0]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 1]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 10]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 11]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 12]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 13]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 14]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 15]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 16]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 17]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 18]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 19]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 2]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 20]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 21]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 22]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 23]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 24]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 25]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 26]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 27]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 28]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 29]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 3]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 30]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 31]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 32]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 33]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 34]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 35]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 36]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 37]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 38]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 39]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 4]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 40]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 41]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 42]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 43]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 44]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 45]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 46]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 47]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 48]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 49]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 5]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 50]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 51]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 52]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 53]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 54]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 55]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 56]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 57]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 58]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 59]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 6]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 60]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 61]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 62]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 63]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 64]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 65]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 66]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 67]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 68]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 69]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 7]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 70]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 71]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 72]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 73]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 74]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 75]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 76]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 8]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 9]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PushBytes

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PushBytesBuf

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for ScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for SerializedSignature

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WPubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<PushBytes> for PushBytesBuf

§

fn borrow(&self) -> &PushBytes

Immutably borrows from an owned value. Read more
§

impl BorrowMut<PushBytes> for PushBytesBuf

§

fn borrow_mut(&mut self) -> &mut PushBytes

Mutably borrows from an owned value. Read more
§

impl Debug for PushBytes

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [u8; 0]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 0]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 1]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 1]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 10]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 10]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 11]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 11]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 12]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 12]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 13]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 13]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 14]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 14]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 15]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 15]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 16]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 16]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 17]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 17]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 18]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 18]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 19]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 19]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 2]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 2]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 20]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 20]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 21]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 21]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 22]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 22]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 23]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 23]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 24]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 24]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 25]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 25]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 26]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 26]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 27]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 27]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 28]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 28]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 29]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 29]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 3]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 3]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 30]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 30]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 31]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 31]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 32]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 32]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 33]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 33]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 34]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 34]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 35]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 35]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 36]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 36]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 37]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 37]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 38]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 38]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 39]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 39]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 4]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 4]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 40]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 40]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 41]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 41]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 42]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 42]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 43]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 43]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 44]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 44]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 45]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 45]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 46]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 46]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 47]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 47]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 48]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 48]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 49]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 49]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 5]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 5]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 50]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 50]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 51]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 51]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 52]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 52]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 53]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 53]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 54]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 54]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 55]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 55]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 56]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 56]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 57]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 57]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 58]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 58]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 59]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 59]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 6]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 6]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 60]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 60]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 61]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 61]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 62]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 62]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 63]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 63]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 64]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 64]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 65]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 65]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 66]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 66]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 67]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 67]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 68]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 68]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 69]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 69]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 7]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 7]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 70]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 70]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 71]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 71]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 72]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 72]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 73]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 73]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 74]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 74]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 75]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 75]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 76]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 76]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 8]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 8]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 9]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 9]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 0]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 0]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 1]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 1]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 10]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 10]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 11]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 11]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 12]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 12]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 13]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 13]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 14]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 14]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 15]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 15]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 16]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 16]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 17]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 17]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 18]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 18]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 19]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 19]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 2]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 2]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 20]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 20]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 21]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 21]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 22]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 22]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 23]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 23]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 24]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 24]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 25]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 25]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 26]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 26]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 27]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 27]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 28]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 28]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 29]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 29]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 3]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 3]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 30]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 30]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 31]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 31]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 32]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 32]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 33]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 33]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 34]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 34]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 35]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 35]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 36]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 36]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 37]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 37]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 38]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 38]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 39]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 39]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 4]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 4]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 40]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 40]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 41]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 41]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 42]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 42]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 43]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 43]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 44]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 44]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 45]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 45]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 46]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 46]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 47]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 47]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 48]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 48]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 49]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 49]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 5]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 5]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 50]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 50]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 51]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 51]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 52]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 52]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 53]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 53]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 54]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 54]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 55]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 55]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 56]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 56]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 57]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 57]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 58]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 58]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 59]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 59]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 6]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 6]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 60]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 60]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 61]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 61]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 62]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 62]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 63]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 63]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 64]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 64]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 65]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 65]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 66]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 66]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 67]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 67]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 68]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 68]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 69]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 69]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 7]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 7]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 70]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 70]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 71]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 71]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 72]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 72]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 73]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 73]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 74]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 74]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 75]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 75]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 76]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 76]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 8]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 8]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 9]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 9]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl Hash for PushBytes

§

fn hash<__H>(&self, state: &mut __H)
where +

Trait Implementations§

§

impl AsMut<[u8]> for PushBytes

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 0]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 1]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 10]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 11]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 12]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 13]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 14]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 15]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 16]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 17]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 18]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 19]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 2]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 20]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 21]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 22]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 23]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 24]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 25]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 26]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 27]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 28]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 29]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 3]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 30]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 31]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 32]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 33]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 34]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 35]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 36]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 37]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 38]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 39]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 4]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 40]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 41]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 42]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 43]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 44]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 45]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 46]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 47]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 48]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 49]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 5]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 50]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 51]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 52]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 53]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 54]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 55]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 56]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 57]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 58]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 59]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 6]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 60]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 61]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 62]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 63]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 64]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 65]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 66]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 67]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 68]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 69]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 7]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 70]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 71]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 72]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 73]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 74]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 75]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 76]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 8]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for [u8; 9]

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for PushBytes

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<PushBytes> for PushBytesBuf

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for PushBytes

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 0]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 1]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 10]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 11]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 12]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 13]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 14]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 15]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 16]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 17]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 18]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 19]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 2]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 20]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 21]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 22]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 23]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 24]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 25]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 26]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 27]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 28]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 29]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 3]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 30]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 31]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 32]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 33]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 34]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 35]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 36]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 37]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 38]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 39]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 4]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 40]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 41]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 42]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 43]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 44]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 45]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 46]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 47]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 48]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 49]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 5]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 50]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 51]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 52]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 53]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 54]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 55]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 56]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 57]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 58]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 59]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 6]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 60]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 61]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 62]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 63]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 64]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 65]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 66]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 67]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 68]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 69]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 7]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 70]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 71]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 72]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 73]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 74]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 75]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 76]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 8]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for [u8; 9]

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PushBytes

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PushBytesBuf

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for ScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for SerializedSignature

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WPubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<PushBytes> for PushBytesBuf

§

fn borrow(&self) -> &PushBytes

Immutably borrows from an owned value. Read more
§

impl BorrowMut<PushBytes> for PushBytesBuf

§

fn borrow_mut(&mut self) -> &mut PushBytes

Mutably borrows from an owned value. Read more
§

impl Debug for PushBytes

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a [u8; 0]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 0]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 1]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 1]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 10]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 10]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 11]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 11]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 12]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 12]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 13]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 13]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 14]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 14]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 15]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 15]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 16]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 16]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 17]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 17]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 18]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 18]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 19]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 19]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 2]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 2]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 20]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 20]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 21]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 21]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 22]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 22]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 23]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 23]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 24]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 24]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 25]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 25]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 26]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 26]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 27]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 27]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 28]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 28]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 29]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 29]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 3]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 3]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 30]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 30]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 31]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 31]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 32]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 32]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 33]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 33]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 34]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 34]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 35]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 35]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 36]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 36]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 37]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 37]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 38]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 38]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 39]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 39]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 4]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 4]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 40]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 40]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 41]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 41]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 42]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 42]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 43]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 43]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 44]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 44]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 45]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 45]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 46]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 46]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 47]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 47]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 48]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 48]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 49]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 49]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 5]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 5]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 50]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 50]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 51]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 51]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 52]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 52]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 53]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 53]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 54]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 54]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 55]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 55]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 56]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 56]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 57]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 57]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 58]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 58]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 59]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 59]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 6]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 6]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 60]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 60]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 61]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 61]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 62]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 62]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 63]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 63]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 64]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 64]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 65]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 65]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 66]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 66]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 67]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 67]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 68]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 68]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 69]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 69]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 7]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 7]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 70]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 70]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 71]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 71]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 72]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 72]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 73]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 73]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 74]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 74]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 75]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 75]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 76]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 76]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 8]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 8]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 9]> for &'a PushBytes

§

fn from(bytes: &'a [u8; 9]) -> &'a PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 0]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 0]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 1]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 1]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 10]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 10]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 11]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 11]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 12]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 12]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 13]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 13]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 14]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 14]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 15]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 15]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 16]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 16]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 17]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 17]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 18]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 18]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 19]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 19]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 2]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 2]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 20]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 20]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 21]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 21]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 22]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 22]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 23]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 23]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 24]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 24]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 25]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 25]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 26]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 26]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 27]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 27]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 28]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 28]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 29]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 29]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 3]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 3]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 30]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 30]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 31]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 31]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 32]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 32]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 33]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 33]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 34]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 34]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 35]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 35]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 36]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 36]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 37]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 37]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 38]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 38]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 39]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 39]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 4]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 4]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 40]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 40]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 41]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 41]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 42]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 42]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 43]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 43]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 44]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 44]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 45]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 45]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 46]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 46]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 47]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 47]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 48]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 48]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 49]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 49]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 5]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 5]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 50]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 50]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 51]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 51]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 52]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 52]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 53]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 53]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 54]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 54]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 55]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 55]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 56]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 56]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 57]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 57]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 58]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 58]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 59]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 59]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 6]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 6]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 60]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 60]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 61]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 61]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 62]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 62]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 63]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 63]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 64]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 64]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 65]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 65]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 66]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 66]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 67]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 67]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 68]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 68]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 69]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 69]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 7]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 7]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 70]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 70]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 71]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 71]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 72]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 72]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 73]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 73]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 74]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 74]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 75]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 75]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 76]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 76]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 8]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 8]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl<'a> From<&'a mut [u8; 9]> for &'a mut PushBytes

§

fn from(bytes: &'a mut [u8; 9]) -> &'a mut PushBytes

Converts to this type from the input type.
§

impl Hash for PushBytes

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
§

impl Index<(Bound<usize>, Bound<usize>)> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index( +

§

type Output = PushBytes

The returned type after indexing.
§

fn index( &self, index: (Bound<usize>, Bound<usize>) ) -> &<PushBytes as Index<(Bound<usize>, Bound<usize>)>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<Range<usize>> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index( +

§

type Output = PushBytes

The returned type after indexing.
§

fn index( &self, index: Range<usize> ) -> &<PushBytes as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFrom<usize>> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index( +

§

type Output = PushBytes

The returned type after indexing.
§

fn index( &self, index: RangeFrom<usize> ) -> &<PushBytes as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFull> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index(&self, index: RangeFull) -> &<PushBytes as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeInclusive<usize>> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index( +

§

type Output = PushBytes

The returned type after indexing.
§

fn index(&self, index: RangeFull) -> &<PushBytes as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeInclusive<usize>> for PushBytes

Script subslicing operation - read slicing safety!

+
§

type Output = PushBytes

The returned type after indexing.
§

fn index( &self, index: RangeInclusive<usize> ) -> &<PushBytes as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeTo<usize>> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index( +

§

type Output = PushBytes

The returned type after indexing.
§

fn index( &self, index: RangeTo<usize> ) -> &<PushBytes as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeToInclusive<usize>> for PushBytes

Script subslicing operation - read slicing safety!

-
§

type Output = PushBytes

The returned type after indexing.
§

fn index( +

§

type Output = PushBytes

The returned type after indexing.
§

fn index( &self, index: RangeToInclusive<usize> -) -> &<PushBytes as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<usize> for PushBytes

§

type Output = u8

The returned type after indexing.
§

fn index(&self, index: usize) -> &<PushBytes as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Ord for PushBytes

§

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

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

impl PartialEq for PushBytes

§

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

This method tests for self and other values to be equal, and is used +) -> &<PushBytes as Index<RangeToInclusive<usize>>>::Output
Performs the indexing (container[index]) operation. Read more
§

impl Index<usize> for PushBytes

§

type Output = u8

The returned type after indexing.
§

fn index(&self, index: usize) -> &<PushBytes as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Ord for PushBytes

§

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

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

impl PartialEq for PushBytes

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialOrd for PushBytes

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytesBuf.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytesBuf.html index 105664a392..c432443c86 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytesBuf.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.PushBytesBuf.html @@ -23,7 +23,7 @@

pub fn as_mut_bytes(&mut self) -> &mut [u8] ⓘ

Returns the underlying mutbale bytes.

pub fn len(&self) -> usize

Returns the number of bytes in buffer.

pub fn is_empty(&self) -> bool

Returns true if the buffer contains zero bytes.

-

Trait Implementations§

§

impl AsMut<PushBytes> for PushBytesBuf

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PushBytesBuf

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<PushBytes> for PushBytesBuf

§

fn borrow(&self) -> &PushBytes

Immutably borrows from an owned value. Read more
§

impl BorrowMut<PushBytes> for PushBytesBuf

§

fn borrow_mut(&mut self) -> &mut PushBytes

Mutably borrows from an owned value. Read more
§

impl Clone for PushBytesBuf

§

fn clone(&self) -> PushBytesBuf

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
§

impl Debug for PushBytesBuf

§

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

Formats the value using the given formatter. Read more
§

impl Default for PushBytesBuf

§

fn default() -> PushBytesBuf

Returns the “default value” for a type. Read more
§

impl Deref for PushBytesBuf

§

type Target = PushBytes

The resulting type after dereferencing.
§

fn deref(&self) -> &<PushBytesBuf as Deref>::Target

Dereferences the value.
§

impl DerefMut for PushBytesBuf

§

fn deref_mut(&mut self) -> &mut <PushBytesBuf as Deref>::Target

Mutably dereferences the value.
§

impl<'a> From<&'a [u8; 0]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 0]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 1]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 1]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 10]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 10]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 11]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 11]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 12]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 12]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 13]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 13]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 14]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 14]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 15]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 15]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 16]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 16]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 17]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 17]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 18]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 18]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 19]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 19]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 2]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 2]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 20]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 20]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 21]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 21]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 22]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 22]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 23]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 23]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 24]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 24]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 25]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 25]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 26]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 26]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 27]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 27]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 28]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 28]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 29]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 29]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 3]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 3]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 30]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 30]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 31]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 31]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 32]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 32]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 33]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 33]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 34]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 34]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 35]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 35]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 36]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 36]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 37]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 37]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 38]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 38]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 39]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 39]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 4]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 4]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 40]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 40]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 41]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 41]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 42]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 42]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 43]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 43]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 44]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 44]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 45]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 45]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 46]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 46]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 47]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 47]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 48]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 48]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 49]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 49]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 5]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 5]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 50]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 50]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 51]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 51]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 52]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 52]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 53]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 53]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 54]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 54]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 55]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 55]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 56]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 56]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 57]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 57]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 58]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 58]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 59]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 59]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 6]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 6]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 60]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 60]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 61]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 61]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 62]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 62]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 63]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 63]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 64]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 64]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 65]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 65]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 66]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 66]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 67]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 67]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 68]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 68]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 69]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 69]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 7]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 7]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 70]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 70]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 71]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 71]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 72]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 72]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 73]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 73]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 74]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 74]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 75]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 75]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 76]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 76]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 8]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 8]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 9]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 9]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 0]> for PushBytesBuf

§

fn from(bytes: [u8; 0]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 1]> for PushBytesBuf

§

fn from(bytes: [u8; 1]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 10]> for PushBytesBuf

§

fn from(bytes: [u8; 10]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 11]> for PushBytesBuf

§

fn from(bytes: [u8; 11]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 12]> for PushBytesBuf

§

fn from(bytes: [u8; 12]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 13]> for PushBytesBuf

§

fn from(bytes: [u8; 13]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 14]> for PushBytesBuf

§

fn from(bytes: [u8; 14]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 15]> for PushBytesBuf

§

fn from(bytes: [u8; 15]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 16]> for PushBytesBuf

§

fn from(bytes: [u8; 16]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 17]> for PushBytesBuf

§

fn from(bytes: [u8; 17]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 18]> for PushBytesBuf

§

fn from(bytes: [u8; 18]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 19]> for PushBytesBuf

§

fn from(bytes: [u8; 19]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 2]> for PushBytesBuf

§

fn from(bytes: [u8; 2]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 20]> for PushBytesBuf

§

fn from(bytes: [u8; 20]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 21]> for PushBytesBuf

§

fn from(bytes: [u8; 21]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 22]> for PushBytesBuf

§

fn from(bytes: [u8; 22]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 23]> for PushBytesBuf

§

fn from(bytes: [u8; 23]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 24]> for PushBytesBuf

§

fn from(bytes: [u8; 24]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 25]> for PushBytesBuf

§

fn from(bytes: [u8; 25]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 26]> for PushBytesBuf

§

fn from(bytes: [u8; 26]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 27]> for PushBytesBuf

§

fn from(bytes: [u8; 27]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 28]> for PushBytesBuf

§

fn from(bytes: [u8; 28]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 29]> for PushBytesBuf

§

fn from(bytes: [u8; 29]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 3]> for PushBytesBuf

§

fn from(bytes: [u8; 3]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 30]> for PushBytesBuf

§

fn from(bytes: [u8; 30]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 31]> for PushBytesBuf

§

fn from(bytes: [u8; 31]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 32]> for PushBytesBuf

§

fn from(bytes: [u8; 32]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 33]> for PushBytesBuf

§

fn from(bytes: [u8; 33]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 34]> for PushBytesBuf

§

fn from(bytes: [u8; 34]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 35]> for PushBytesBuf

§

fn from(bytes: [u8; 35]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 36]> for PushBytesBuf

§

fn from(bytes: [u8; 36]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 37]> for PushBytesBuf

§

fn from(bytes: [u8; 37]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 38]> for PushBytesBuf

§

fn from(bytes: [u8; 38]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 39]> for PushBytesBuf

§

fn from(bytes: [u8; 39]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 4]> for PushBytesBuf

§

fn from(bytes: [u8; 4]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 40]> for PushBytesBuf

§

fn from(bytes: [u8; 40]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 41]> for PushBytesBuf

§

fn from(bytes: [u8; 41]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 42]> for PushBytesBuf

§

fn from(bytes: [u8; 42]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 43]> for PushBytesBuf

§

fn from(bytes: [u8; 43]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 44]> for PushBytesBuf

§

fn from(bytes: [u8; 44]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 45]> for PushBytesBuf

§

fn from(bytes: [u8; 45]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 46]> for PushBytesBuf

§

fn from(bytes: [u8; 46]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 47]> for PushBytesBuf

§

fn from(bytes: [u8; 47]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 48]> for PushBytesBuf

§

fn from(bytes: [u8; 48]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 49]> for PushBytesBuf

§

fn from(bytes: [u8; 49]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 5]> for PushBytesBuf

§

fn from(bytes: [u8; 5]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 50]> for PushBytesBuf

§

fn from(bytes: [u8; 50]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 51]> for PushBytesBuf

§

fn from(bytes: [u8; 51]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 52]> for PushBytesBuf

§

fn from(bytes: [u8; 52]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 53]> for PushBytesBuf

§

fn from(bytes: [u8; 53]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 54]> for PushBytesBuf

§

fn from(bytes: [u8; 54]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 55]> for PushBytesBuf

§

fn from(bytes: [u8; 55]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 56]> for PushBytesBuf

§

fn from(bytes: [u8; 56]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 57]> for PushBytesBuf

§

fn from(bytes: [u8; 57]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 58]> for PushBytesBuf

§

fn from(bytes: [u8; 58]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 59]> for PushBytesBuf

§

fn from(bytes: [u8; 59]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 6]> for PushBytesBuf

§

fn from(bytes: [u8; 6]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 60]> for PushBytesBuf

§

fn from(bytes: [u8; 60]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 61]> for PushBytesBuf

§

fn from(bytes: [u8; 61]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 62]> for PushBytesBuf

§

fn from(bytes: [u8; 62]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 63]> for PushBytesBuf

§

fn from(bytes: [u8; 63]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 64]> for PushBytesBuf

§

fn from(bytes: [u8; 64]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 65]> for PushBytesBuf

§

fn from(bytes: [u8; 65]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 66]> for PushBytesBuf

§

fn from(bytes: [u8; 66]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 67]> for PushBytesBuf

§

fn from(bytes: [u8; 67]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 68]> for PushBytesBuf

§

fn from(bytes: [u8; 68]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 69]> for PushBytesBuf

§

fn from(bytes: [u8; 69]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 7]> for PushBytesBuf

§

fn from(bytes: [u8; 7]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 70]> for PushBytesBuf

§

fn from(bytes: [u8; 70]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 71]> for PushBytesBuf

§

fn from(bytes: [u8; 71]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 72]> for PushBytesBuf

§

fn from(bytes: [u8; 72]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 73]> for PushBytesBuf

§

fn from(bytes: [u8; 73]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 74]> for PushBytesBuf

§

fn from(bytes: [u8; 74]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 75]> for PushBytesBuf

§

fn from(bytes: [u8; 75]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 76]> for PushBytesBuf

§

fn from(bytes: [u8; 76]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 8]> for PushBytesBuf

§

fn from(bytes: [u8; 8]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 9]> for PushBytesBuf

§

fn from(bytes: [u8; 9]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PubkeyHash> for PushBytesBuf

§

fn from(hash: PubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PushBytesBuf> for Vec<u8>

§

fn from(value: PushBytesBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptHash> for PushBytesBuf

§

fn from(hash: ScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<WPubkeyHash> for PushBytesBuf

§

fn from(hash: WPubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<WScriptHash> for PushBytesBuf

§

fn from(hash: WScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl Hash for PushBytesBuf

§

fn hash<__H>(&self, state: &mut __H)
where +

Trait Implementations§

§

impl AsMut<PushBytes> for PushBytesBuf

§

fn as_mut(&mut self) -> &mut PushBytes

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PushBytesBuf

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<PushBytes> for PushBytesBuf

§

fn borrow(&self) -> &PushBytes

Immutably borrows from an owned value. Read more
§

impl BorrowMut<PushBytes> for PushBytesBuf

§

fn borrow_mut(&mut self) -> &mut PushBytes

Mutably borrows from an owned value. Read more
§

impl Clone for PushBytesBuf

§

fn clone(&self) -> PushBytesBuf

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
§

impl Debug for PushBytesBuf

§

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

Formats the value using the given formatter. Read more
§

impl Default for PushBytesBuf

§

fn default() -> PushBytesBuf

Returns the “default value” for a type. Read more
§

impl Deref for PushBytesBuf

§

type Target = PushBytes

The resulting type after dereferencing.
§

fn deref(&self) -> &<PushBytesBuf as Deref>::Target

Dereferences the value.
§

impl DerefMut for PushBytesBuf

§

fn deref_mut(&mut self) -> &mut <PushBytesBuf as Deref>::Target

Mutably dereferences the value.
§

impl<'a> From<&'a [u8; 0]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 0]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 1]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 1]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 10]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 10]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 11]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 11]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 12]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 12]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 13]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 13]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 14]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 14]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 15]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 15]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 16]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 16]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 17]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 17]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 18]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 18]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 19]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 19]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 2]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 2]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 20]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 20]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 21]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 21]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 22]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 22]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 23]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 23]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 24]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 24]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 25]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 25]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 26]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 26]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 27]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 27]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 28]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 28]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 29]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 29]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 3]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 3]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 30]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 30]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 31]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 31]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 32]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 32]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 33]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 33]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 34]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 34]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 35]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 35]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 36]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 36]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 37]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 37]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 38]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 38]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 39]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 39]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 4]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 4]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 40]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 40]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 41]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 41]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 42]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 42]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 43]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 43]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 44]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 44]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 45]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 45]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 46]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 46]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 47]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 47]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 48]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 48]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 49]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 49]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 5]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 5]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 50]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 50]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 51]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 51]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 52]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 52]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 53]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 53]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 54]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 54]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 55]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 55]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 56]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 56]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 57]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 57]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 58]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 58]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 59]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 59]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 6]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 6]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 60]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 60]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 61]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 61]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 62]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 62]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 63]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 63]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 64]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 64]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 65]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 65]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 66]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 66]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 67]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 67]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 68]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 68]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 69]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 69]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 7]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 7]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 70]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 70]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 71]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 71]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 72]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 72]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 73]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 73]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 74]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 74]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 75]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 75]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 76]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 76]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 8]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 8]) -> PushBytesBuf

Converts to this type from the input type.
§

impl<'a> From<&'a [u8; 9]> for PushBytesBuf

§

fn from(bytes: &'a [u8; 9]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 0]> for PushBytesBuf

§

fn from(bytes: [u8; 0]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 1]> for PushBytesBuf

§

fn from(bytes: [u8; 1]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 10]> for PushBytesBuf

§

fn from(bytes: [u8; 10]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 11]> for PushBytesBuf

§

fn from(bytes: [u8; 11]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 12]> for PushBytesBuf

§

fn from(bytes: [u8; 12]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 13]> for PushBytesBuf

§

fn from(bytes: [u8; 13]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 14]> for PushBytesBuf

§

fn from(bytes: [u8; 14]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 15]> for PushBytesBuf

§

fn from(bytes: [u8; 15]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 16]> for PushBytesBuf

§

fn from(bytes: [u8; 16]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 17]> for PushBytesBuf

§

fn from(bytes: [u8; 17]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 18]> for PushBytesBuf

§

fn from(bytes: [u8; 18]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 19]> for PushBytesBuf

§

fn from(bytes: [u8; 19]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 2]> for PushBytesBuf

§

fn from(bytes: [u8; 2]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 20]> for PushBytesBuf

§

fn from(bytes: [u8; 20]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 21]> for PushBytesBuf

§

fn from(bytes: [u8; 21]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 22]> for PushBytesBuf

§

fn from(bytes: [u8; 22]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 23]> for PushBytesBuf

§

fn from(bytes: [u8; 23]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 24]> for PushBytesBuf

§

fn from(bytes: [u8; 24]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 25]> for PushBytesBuf

§

fn from(bytes: [u8; 25]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 26]> for PushBytesBuf

§

fn from(bytes: [u8; 26]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 27]> for PushBytesBuf

§

fn from(bytes: [u8; 27]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 28]> for PushBytesBuf

§

fn from(bytes: [u8; 28]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 29]> for PushBytesBuf

§

fn from(bytes: [u8; 29]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 3]> for PushBytesBuf

§

fn from(bytes: [u8; 3]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 30]> for PushBytesBuf

§

fn from(bytes: [u8; 30]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 31]> for PushBytesBuf

§

fn from(bytes: [u8; 31]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 32]> for PushBytesBuf

§

fn from(bytes: [u8; 32]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 33]> for PushBytesBuf

§

fn from(bytes: [u8; 33]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 34]> for PushBytesBuf

§

fn from(bytes: [u8; 34]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 35]> for PushBytesBuf

§

fn from(bytes: [u8; 35]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 36]> for PushBytesBuf

§

fn from(bytes: [u8; 36]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 37]> for PushBytesBuf

§

fn from(bytes: [u8; 37]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 38]> for PushBytesBuf

§

fn from(bytes: [u8; 38]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 39]> for PushBytesBuf

§

fn from(bytes: [u8; 39]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 4]> for PushBytesBuf

§

fn from(bytes: [u8; 4]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 40]> for PushBytesBuf

§

fn from(bytes: [u8; 40]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 41]> for PushBytesBuf

§

fn from(bytes: [u8; 41]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 42]> for PushBytesBuf

§

fn from(bytes: [u8; 42]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 43]> for PushBytesBuf

§

fn from(bytes: [u8; 43]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 44]> for PushBytesBuf

§

fn from(bytes: [u8; 44]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 45]> for PushBytesBuf

§

fn from(bytes: [u8; 45]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 46]> for PushBytesBuf

§

fn from(bytes: [u8; 46]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 47]> for PushBytesBuf

§

fn from(bytes: [u8; 47]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 48]> for PushBytesBuf

§

fn from(bytes: [u8; 48]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 49]> for PushBytesBuf

§

fn from(bytes: [u8; 49]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 5]> for PushBytesBuf

§

fn from(bytes: [u8; 5]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 50]> for PushBytesBuf

§

fn from(bytes: [u8; 50]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 51]> for PushBytesBuf

§

fn from(bytes: [u8; 51]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 52]> for PushBytesBuf

§

fn from(bytes: [u8; 52]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 53]> for PushBytesBuf

§

fn from(bytes: [u8; 53]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 54]> for PushBytesBuf

§

fn from(bytes: [u8; 54]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 55]> for PushBytesBuf

§

fn from(bytes: [u8; 55]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 56]> for PushBytesBuf

§

fn from(bytes: [u8; 56]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 57]> for PushBytesBuf

§

fn from(bytes: [u8; 57]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 58]> for PushBytesBuf

§

fn from(bytes: [u8; 58]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 59]> for PushBytesBuf

§

fn from(bytes: [u8; 59]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 6]> for PushBytesBuf

§

fn from(bytes: [u8; 6]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 60]> for PushBytesBuf

§

fn from(bytes: [u8; 60]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 61]> for PushBytesBuf

§

fn from(bytes: [u8; 61]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 62]> for PushBytesBuf

§

fn from(bytes: [u8; 62]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 63]> for PushBytesBuf

§

fn from(bytes: [u8; 63]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 64]> for PushBytesBuf

§

fn from(bytes: [u8; 64]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 65]> for PushBytesBuf

§

fn from(bytes: [u8; 65]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 66]> for PushBytesBuf

§

fn from(bytes: [u8; 66]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 67]> for PushBytesBuf

§

fn from(bytes: [u8; 67]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 68]> for PushBytesBuf

§

fn from(bytes: [u8; 68]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 69]> for PushBytesBuf

§

fn from(bytes: [u8; 69]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 7]> for PushBytesBuf

§

fn from(bytes: [u8; 7]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 70]> for PushBytesBuf

§

fn from(bytes: [u8; 70]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 71]> for PushBytesBuf

§

fn from(bytes: [u8; 71]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 72]> for PushBytesBuf

§

fn from(bytes: [u8; 72]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 73]> for PushBytesBuf

§

fn from(bytes: [u8; 73]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 74]> for PushBytesBuf

§

fn from(bytes: [u8; 74]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 75]> for PushBytesBuf

§

fn from(bytes: [u8; 75]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 76]> for PushBytesBuf

§

fn from(bytes: [u8; 76]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 8]> for PushBytesBuf

§

fn from(bytes: [u8; 8]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<[u8; 9]> for PushBytesBuf

§

fn from(bytes: [u8; 9]) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PubkeyHash> for PushBytesBuf

§

fn from(hash: PubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PushBytesBuf> for Vec<u8>

§

fn from(value: PushBytesBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptHash> for PushBytesBuf

§

fn from(hash: ScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<WPubkeyHash> for PushBytesBuf

§

fn from(hash: WPubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<WScriptHash> for PushBytesBuf

§

fn from(hash: WScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl Hash for PushBytesBuf

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for PushBytesBuf

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.Script.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.Script.html index 5c09f7e98b..99386c5d0c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.Script.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.Script.html @@ -148,45 +148,45 @@ For better performance you should generally prefer displaying the script but if required (this is common in tests) this method can be used.

pub fn first_opcode(&self) -> Option<Opcode>

Returns the first opcode of the script (if there is any).

pub fn into_script_buf(self: Box<Script>) -> ScriptBuf

Converts a Box<Script> into a ScriptBuf without copying or allocating.

-

Trait Implementations§

§

impl AsMut<[u8]> for Script

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for Script

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Script

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for Script

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Debug for Script

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for &'de Script

Can only deserialize borrowed bytes.

+

Trait Implementations§

§

impl AsMut<[u8]> for Script

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for Script

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Script

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for Script

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Debug for Script

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for &'de Script

Can only deserialize borrowed bytes.

§

fn deserialize<D>( deserializer: D ) -> Result<&'de Script, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Script

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Script

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl<'a> From<&'a Script> for Arc<Script>

Note: This will fail to compile on old Rust for targets that don’t support atomics

-
§

fn from(value: &'a Script) -> Arc<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Box<Script>

§

fn from(value: &'a Script) -> Box<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Cow<'a, Script>

§

fn from(value: &'a Script) -> Cow<'a, Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Rc<Script>

§

fn from(value: &'a Script) -> Rc<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for Box<Script>

§

fn from(value: Cow<'a, Script>) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl Hash for Script

§

fn hash<__H>(&self, state: &mut __H)
where +
§

fn from(value: &'a Script) -> Arc<Script>

Converts to this type from the input type.

§

impl<'a> From<&'a Script> for Box<Script>

§

fn from(value: &'a Script) -> Box<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Cow<'a, Script>

§

fn from(value: &'a Script) -> Cow<'a, Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Rc<Script>

§

fn from(value: &'a Script) -> Rc<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for Box<Script>

§

fn from(value: Cow<'a, Script>) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl Hash for Script

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
§

impl Index<(Bound<usize>, Bound<usize>)> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: (Bound<usize>, Bound<usize>) ) -> &<Script as Index<(Bound<usize>, Bound<usize>)>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<Range<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: Range<usize>) -> &<Script as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFrom<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: Range<usize>) -> &<Script as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFrom<usize>> for Script

Script subslicing operation - read slicing safety!

+
§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeFrom<usize> ) -> &<Script as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFull> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: RangeFull) -> &<Script as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeInclusive<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: RangeFull) -> &<Script as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeInclusive<usize>> for Script

Script subslicing operation - read slicing safety!

+
§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeInclusive<usize> ) -> &<Script as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeTo<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeTo<usize> ) -> &<Script as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeToInclusive<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeToInclusive<usize> -) -> &<Script as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl LowerHex for Script

§

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

Formats the value using the given formatter. Read more
§

impl Ord for Script

§

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

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

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +) -> &<Script as Index<RangeToInclusive<usize>>>::Output
Performs the indexing (container[index]) operation. Read more
§

impl LowerHex for Script

§

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

Formats the value using the given formatter. Read more
§

impl Ord for Script

§

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

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

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialEq<ScriptBuf> for Script

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialEq for Script

§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialEq for Script

§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl PartialOrd for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Serialize for Script

§

fn serialize<S>( diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptBuf.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptBuf.html index cd0d7926e5..c3b92e72ca 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptBuf.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptBuf.html @@ -186,32 +186,32 @@ returned if a push is not minimal.

For better performance you should generally prefer displaying the script but if String is required (this is common in tests) this method can be used.

pub fn first_opcode(&self) -> Option<Opcode>

Returns the first opcode of the script (if there is any).

-

Trait Implementations§

§

impl AsMut<[u8]> for ScriptBuf

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ScriptBuf

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Clone for ScriptBuf

§

fn clone(&self) -> ScriptBuf

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
§

impl Debug for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for ScriptBuf

Trait Implementations§

§

impl AsMut<[u8]> for ScriptBuf

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ScriptBuf

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Clone for ScriptBuf

§

fn clone(&self) -> ScriptBuf

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
§

impl Debug for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for ScriptBuf

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<ScriptBuf, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Default for ScriptBuf

§

fn default() -> ScriptBuf

Returns the “default value” for a type. Read more
§

impl Deref for ScriptBuf

§

type Target = Script

The resulting type after dereferencing.
§

fn deref(&self) -> &<ScriptBuf as Deref>::Target

Dereferences the value.
§

impl DerefMut for ScriptBuf

§

fn deref_mut(&mut self) -> &mut <ScriptBuf as Deref>::Target

Mutably dereferences the value.
§

impl<'de> Deserialize<'de> for ScriptBuf

§

fn deserialize<D>( deserializer: D ) -> Result<ScriptBuf, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for ScriptBuf

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl<'a> Extend<Instruction<'a>> for ScriptBuf

§

fn extend<T>(&mut self, iter: T)
where - T: IntoIterator<Item = Instruction<'a>>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Address> for ScriptBuf

§

fn from(a: Address) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for ScriptBuf

§

fn from(value: Cow<'a, Script>) -> ScriptBuf

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Cow<'_, Script>

§

fn from(value: ScriptBuf) -> Cow<'_, Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for Vec<u8>

§

fn from(v: ScriptBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Vec<u8>> for ScriptBuf

§

fn from(v: Vec<u8>) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> FromIterator<Instruction<'a>> for ScriptBuf

§

fn from_iter<T>(iter: T) -> ScriptBuf
where + T: IntoIterator<Item = Instruction<'a>>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Address> for ScriptBuf

§

fn from(a: Address) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for ScriptBuf

§

fn from(value: Cow<'a, Script>) -> ScriptBuf

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Cow<'_, Script>

§

fn from(value: ScriptBuf) -> Cow<'_, Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for Vec<u8>

§

fn from(v: ScriptBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Vec<u8>> for ScriptBuf

§

fn from(v: Vec<u8>) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> FromIterator<Instruction<'a>> for ScriptBuf

§

fn from_iter<T>(iter: T) -> ScriptBuf
where T: IntoIterator<Item = Instruction<'a>>,

Creates a value from an iterator. Read more
§

impl Hash for ScriptBuf

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl LowerHex for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Ord for ScriptBuf

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 - Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used + Self: Sized + PartialOrd,
Restrict a value to a certain interval. Read more
§

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
§

impl PartialEq<ScriptBuf> for Script

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialEq<ScriptBuf> for Script

§

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

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
§

impl PartialEq for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialEq for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Serialize for ScriptBuf

§

fn serialize<S>( &self, serializer: S diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptHash.html index da8b16ca05..b60f98ec35 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.ScriptHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl ScriptHash

pub fn from_raw_hash(inner: Hash) -> ScriptHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for ScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for ScriptHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for ScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for ScriptHash

§

fn clone(&self) -> ScriptHash

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
§

impl Debug for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ScriptHash

§

fn deserialize<D>(d: D) -> Result<ScriptHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<Hash> for ScriptHash

§

fn from(inner: Hash) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptHash> for Hash

§

fn from(hashtype: ScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<ScriptHash> for PushBytesBuf

§

fn from(hash: ScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for ScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<ScriptHash, <ScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for ScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for ScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for ScriptHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for ScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for ScriptHash

§

fn clone(&self) -> ScriptHash

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
§

impl Debug for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ScriptHash

§

fn deserialize<D>(d: D) -> Result<ScriptHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<Hash> for ScriptHash

§

fn from(inner: Hash) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptHash> for Hash

§

fn from(hashtype: ScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<ScriptHash> for PushBytesBuf

§

fn from(hash: ScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for ScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<ScriptHash, <ScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for ScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.WScriptHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.WScriptHash.html index e855ca2c7d..6c496274e9 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.WScriptHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/struct.WScriptHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl WScriptHash

pub fn from_raw_hash(inner: Hash) -> WScriptHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WScriptHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WScriptHash

§

fn clone(&self) -> WScriptHash

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
§

impl Debug for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WScriptHash

§

fn deserialize<D>(d: D) -> Result<WScriptHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Hash> for WScriptHash

§

fn from(inner: Hash) -> WScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<WScriptHash> for Hash

§

fn from(hashtype: WScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<WScriptHash> for PushBytesBuf

§

fn from(hash: WScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WScriptHash, <WScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for WScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WScriptHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WScriptHash

§

fn clone(&self) -> WScriptHash

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
§

impl Debug for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WScriptHash

§

fn deserialize<D>(d: D) -> Result<WScriptHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Hash> for WScriptHash

§

fn from(inner: Hash) -> WScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<WScriptHash> for Hash

§

fn from(hashtype: WScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<WScriptHash> for PushBytesBuf

§

fn from(hash: WScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WScriptHash, <WScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_program/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_program/enum.Error.html index f0809410df..54ca43071d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_program/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_program/enum.Error.html @@ -4,7 +4,7 @@ }
Expand description

Witness program error.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

InvalidLength(usize)

The witness program must be between 2 and 40 bytes in length.

§

InvalidSegwitV0Length(usize)

A v0 witness program must be either of length 20 or 32.

-

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromScriptError

§

fn from(e: Error) -> FromScriptError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromScriptError

§

fn from(e: Error) -> FromScriptError

Converts to this type from the input type.
§

impl From<Error> for ParseError

§

fn from(e: Error) -> ParseError

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for Error

§

impl StructuralPartialEq for Error

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/enum.WitnessVersion.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/enum.WitnessVersion.html index 3fb4146a37..5d047f6d0b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/enum.WitnessVersion.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/enum.WitnessVersion.html @@ -54,11 +54,11 @@ into a byte since the conversion requires context (bitcoin script or just a vers by ==.

1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialOrd for WitnessVersion

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl TryFrom<Fe32> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( +operator. Read more

§

impl TryFrom<Fe32> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( value: Fe32 -) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Fe32>>::Error>

Performs the conversion.
§

impl<'a> TryFrom<Instruction<'a>> for WitnessVersion

§

type Error = TryFromInstructionError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Fe32>>::Error>

Performs the conversion.
§

impl<'a> TryFrom<Instruction<'a>> for WitnessVersion

§

type Error = TryFromInstructionError

The type returned in the event of a conversion error.
§

fn try_from( instruction: Instruction<'_> -) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Instruction<'a>>>::Error>

Performs the conversion.
§

impl TryFrom<Opcode> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Instruction<'a>>>::Error>

Performs the conversion.
§

impl TryFrom<Opcode> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( opcode: Opcode ) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Opcode>>::Error>

Performs the conversion.
§

impl TryFrom<u8> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( no: u8 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/struct.TryFromError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/struct.TryFromError.html index 175830457b..6f94ead046 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/struct.TryFromError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/script/witness_version/struct.TryFromError.html @@ -1,6 +1,6 @@ TryFromError in bdk_chain::bitcoin::blockdata::script::witness_version - Rust
pub struct TryFromError { /* private fields */ }
Expand description

Error attempting to create a WitnessVersion from an integer.

Implementations§

§

impl TryFromError

pub fn invalid_version(&self) -> u8

Returns the invalid non-witness version integer.

-

Trait Implementations§

§

impl Clone for TryFromError

§

fn clone(&self) -> TryFromError

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
§

impl Debug for TryFromError

§

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

Formats the value using the given formatter. Read more
§

impl Display for TryFromError

§

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

Formats the value using the given formatter. Read more
§

impl Error for TryFromError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<TryFromError> for FromScriptError

§

fn from(e: TryFromError) -> FromScriptError

Converts to this type from the input type.
§

impl From<TryFromError> for FromStrError

§

fn from(e: TryFromError) -> FromStrError

Converts to this type from the input type.
§

impl From<TryFromError> for ParseError

§

fn from(e: TryFromError) -> ParseError

Converts to this type from the input type.
§

impl From<TryFromError> for TryFromInstructionError

§

fn from(e: TryFromError) -> TryFromInstructionError

Converts to this type from the input type.
§

impl PartialEq for TryFromError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for TryFromError

§

fn clone(&self) -> TryFromError

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
§

impl Debug for TryFromError

§

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

Formats the value using the given formatter. Read more
§

impl Display for TryFromError

§

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

Formats the value using the given formatter. Read more
§

impl Error for TryFromError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<TryFromError> for FromScriptError

§

fn from(e: TryFromError) -> FromScriptError

Converts to this type from the input type.
§

impl From<TryFromError> for FromStrError

§

fn from(e: TryFromError) -> FromStrError

Converts to this type from the input type.
§

impl From<TryFromError> for ParseError

§

fn from(e: TryFromError) -> ParseError

Converts to this type from the input type.
§

impl From<TryFromError> for TryFromInstructionError

§

fn from(e: TryFromError) -> TryFromInstructionError

Converts to this type from the input type.
§

impl PartialEq for TryFromError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for TryFromError

§

impl StructuralPartialEq for TryFromError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.IndexOutOfBoundsError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.IndexOutOfBoundsError.html index 3164c097bb..d9bb7d8f05 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.IndexOutOfBoundsError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.IndexOutOfBoundsError.html @@ -4,7 +4,7 @@ }
Expand description

Error attempting to do an out of bounds access on a vector.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§index: usize

Attempted index access.

§length: usize

Length of the vector where access was attempted.

-

Trait Implementations§

§

impl Clone for IndexOutOfBoundsError

§

fn clone(&self) -> IndexOutOfBoundsError

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
§

impl Debug for IndexOutOfBoundsError

§

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

Formats the value using the given formatter. Read more
§

impl Display for IndexOutOfBoundsError

§

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

Formats the value using the given formatter. Read more
§

impl Error for IndexOutOfBoundsError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<IndexOutOfBoundsError> for InputsIndexError

§

fn from(e: IndexOutOfBoundsError) -> InputsIndexError

Converts to this type from the input type.
§

impl From<IndexOutOfBoundsError> for OutputsIndexError

§

fn from(e: IndexOutOfBoundsError) -> OutputsIndexError

Converts to this type from the input type.
§

impl PartialEq for IndexOutOfBoundsError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for IndexOutOfBoundsError

§

fn clone(&self) -> IndexOutOfBoundsError

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
§

impl Debug for IndexOutOfBoundsError

§

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

Formats the value using the given formatter. Read more
§

impl Display for IndexOutOfBoundsError

§

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

Formats the value using the given formatter. Read more
§

impl Error for IndexOutOfBoundsError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<IndexOutOfBoundsError> for InputsIndexError

§

fn from(e: IndexOutOfBoundsError) -> InputsIndexError

Converts to this type from the input type.
§

impl From<IndexOutOfBoundsError> for OutputsIndexError

§

fn from(e: IndexOutOfBoundsError) -> OutputsIndexError

Converts to this type from the input type.
§

impl PartialEq for IndexOutOfBoundsError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for IndexOutOfBoundsError

§

impl StructuralPartialEq for IndexOutOfBoundsError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Sequence.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Sequence.html index 9e3a26c649..45d8a0f80a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Sequence.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Sequence.html @@ -94,7 +94,7 @@ for dissatisfying pkh.

Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

§

impl TryFrom<&str> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: &str) -> Result<Sequence, <Sequence as TryFrom<&str>>::Error>

Performs the conversion.
§

impl TryFrom<Box<str>> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from( s: Box<str> -) -> Result<Sequence, <Sequence as TryFrom<Box<str>>>::Error>

Performs the conversion.
§

impl TryFrom<Sequence> for LockTime

§

type Error = DisabledLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<LockTime, DisabledLockTimeError>

Performs the conversion.
§

impl TryFrom<Sequence> for RelLockTime

§

type Error = RelLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<RelLockTime, RelLockTimeError>

Performs the conversion.
§

impl TryFrom<String> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Sequence, <Sequence as TryFrom<String>>::Error>

Performs the conversion.
§

impl UpperHex for Sequence

§

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

Formats the value using the given formatter. Read more
§

impl Copy for Sequence

§

impl Eq for Sequence

§

impl StructuralPartialEq for Sequence

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +) -> Result<Sequence, <Sequence as TryFrom<Box<str>>>::Error>

Performs the conversion.
§

impl TryFrom<Sequence> for LockTime

§

type Error = DisabledLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<LockTime, DisabledLockTimeError>

Performs the conversion.
§

impl TryFrom<Sequence> for RelLockTime

§

type Error = RelLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<RelLockTime, RelLockTimeError>

Performs the conversion.
§

impl TryFrom<String> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Sequence, <Sequence as TryFrom<String>>::Error>

Performs the conversion.
§

impl UpperHex for Sequence

§

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

Formats the value using the given formatter. Read more
§

impl Copy for Sequence

§

impl Eq for Sequence

§

impl StructuralPartialEq for Sequence

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
§

impl<T, Pk> AssetProvider<Pk> for T
where T: Satisfier<Pk>, Pk: MiniscriptKey + ToPublicKey,

§

fn provider_lookup_ecdsa_sig(&self, pk: &Pk) -> bool

Given a public key, look up an ECDSA signature with that key, return whether we found it
§

fn provider_lookup_tap_key_spend_sig(&self, _: &Pk) -> Option<usize>

Lookup the tap key spend sig and return its size
§

fn provider_lookup_tap_leaf_script_sig( diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Transaction.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Transaction.html index 03da77d4c5..50c5a12f37 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Transaction.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Transaction.html @@ -148,7 +148,7 @@ as well as any segwit sigops will not be counted for that input.

__deserializer: __D ) -> Result<Transaction, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Encodable for Transaction

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl Hash for Transaction

§

fn hash<__H>(&self, state: &mut __H)
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl Hash for Transaction

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Transaction

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Txid.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Txid.html index 54cf29f6b5..8eebb81031 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Txid.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Txid.html @@ -6,11 +6,11 @@ trait operations. See Implementations§

§

impl Txid

pub fn from_raw_hash(inner: Hash) -> Txid

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for Txid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Txid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Txid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Txid

§

fn clone(&self) -> Txid

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
§

impl Debug for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Txid

Trait Implementations§

§

impl AsRef<[u8]> for Txid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Txid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Txid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Txid

§

fn clone(&self) -> Txid

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
§

impl Debug for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Txid

§

fn consensus_decode<R>(r: &mut R) -> Result<Txid, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Txid

§

fn deserialize<D>(d: D) -> Result<Txid, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Txid

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for Txid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Txid, <Txid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Txid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for Txid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Txid, <Txid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Txid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Wtxid.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Wtxid.html index 3750ece872..72496d4cea 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Wtxid.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/blockdata/transaction/struct.Wtxid.html @@ -2,11 +2,11 @@

Implementations§

§

impl Wtxid

pub fn from_raw_hash(inner: Hash) -> Wtxid

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for Wtxid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Wtxid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Wtxid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Wtxid

§

fn clone(&self) -> Wtxid

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
§

impl Debug for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Wtxid

Trait Implementations§

§

impl AsRef<[u8]> for Wtxid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Wtxid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Wtxid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Wtxid

§

fn clone(&self) -> Wtxid

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
§

impl Debug for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Wtxid

§

fn consensus_decode<R>(r: &mut R) -> Result<Wtxid, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Wtxid

§

fn deserialize<D>(d: D) -> Result<Wtxid, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Wtxid

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for Wtxid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Wtxid, <Wtxid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Wtxid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for Wtxid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Wtxid, <Wtxid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Wtxid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/encode/struct.VarInt.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/encode/struct.VarInt.html index 66cef4f460..146bc38276 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/encode/struct.VarInt.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/encode/struct.VarInt.html @@ -6,10 +6,10 @@ R: Read + ?Sized,
Decode Self from a size-limited reader. Read more
§

impl Encodable for VarInt

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<u16> for VarInt

Creates a VarInt from a usize by casting the to a u64.

§

fn from(x: u16) -> VarInt

Converts to this type from the input type.
§

impl From<u32> for VarInt

Creates a VarInt from a usize by casting the to a u64.

-
§

fn from(x: u32) -> VarInt

Converts to this type from the input type.
§

impl From<u64> for VarInt

Creates a VarInt from a usize by casting the to a u64.

+
§

fn from(x: u32) -> VarInt

Converts to this type from the input type.
§

impl From<u64> for VarInt

Creates a VarInt from a usize by casting the to a u64.

§

fn from(x: u64) -> VarInt

Converts to this type from the input type.
§

impl From<u8> for VarInt

Creates a VarInt from a usize by casting the to a u64.

-
§

fn from(x: u8) -> VarInt

Converts to this type from the input type.
§

impl From<usize> for VarInt

Creates a VarInt from a usize by casting the to a u64.

-
§

fn from(x: usize) -> VarInt

Converts to this type from the input type.
§

impl Ord for VarInt

§

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

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

fn max(self, other: Self) -> Self
where +
§

fn from(x: u8) -> VarInt

Converts to this type from the input type.

§

impl From<usize> for VarInt

Creates a VarInt from a usize by casting the to a u64.

+
§

fn from(x: usize) -> VarInt

Converts to this type from the input type.
§

impl Ord for VarInt

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq for VarInt

§

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

This method tests for self and other values to be equal, and is used diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/params/struct.Params.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/params/struct.Params.html index 0a8ca5ebef..2c81be0c45 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/params/struct.Params.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/params/struct.Params.html @@ -45,7 +45,7 @@ compact-expressible values between Bitcoin Core’s and the limit expressed here

pub const REGTEST: Params = _

The regtest parameters.

pub const fn new(network: Network) -> Params

Creates parameters set for the given network.

pub fn difficulty_adjustment_interval(&self) -> u64

Calculates the number of blocks between difficulty adjustments.

-

Trait Implementations§

§

impl AsRef<Params> for Network

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Params> for Params

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Params

§

fn clone(&self) -> Params

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
§

impl Debug for Params

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

§

impl AsRef<Params> for Network

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Params> for Params

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Params

§

fn clone(&self) -> Params

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
§

impl Debug for Params

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/struct.Params.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/struct.Params.html index 56ac23cd7c..a44d457245 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/struct.Params.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/consensus/struct.Params.html @@ -45,7 +45,7 @@ compact-expressible values between Bitcoin Core’s and the limit expressed here

pub const REGTEST: Params = _

The regtest parameters.

pub const fn new(network: Network) -> Params

Creates parameters set for the given network.

pub fn difficulty_adjustment_interval(&self) -> u64

Calculates the number of blocks between difficulty adjustments.

-

Trait Implementations§

§

impl AsRef<Params> for Network

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Params> for Params

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Params

§

fn clone(&self) -> Params

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
§

impl Debug for Params

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

§

impl AsRef<Params> for Network

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Params> for Params

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Params

§

fn clone(&self) -> Params

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
§

impl Debug for Params

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/ecdsa/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/ecdsa/enum.Error.html index 10d2a5ff2b..4c975248e0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/ecdsa/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/ecdsa/enum.Error.html @@ -8,7 +8,7 @@
§

SighashType(NonStandardSighashTypeError)

Non-standard sighash type.

§

EmptySignature

Signature was empty.

§

Secp256k1(Error)

A secp256k1 error.

-

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<HexToBytesError> for Error

§

fn from(e: HexToBytesError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<NonStandardSighashTypeError> for Error

§

fn from(e: NonStandardSighashTypeError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<HexToBytesError> for Error

§

fn from(e: HexToBytesError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.
§

impl From<NonStandardSighashTypeError> for Error

§

fn from(e: NonStandardSighashTypeError) -> Error

Converts to this type from the input type.
§

impl PartialEq for Error

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for Error

§

impl StructuralPartialEq for Error

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.Network.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.Network.html index 02919d947f..c9cf355d78 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.Network.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.Network.html @@ -56,7 +56,7 @@ Use the chain <chain> (default: main). Allowed values: main, test, signet,

Trait Implementations§

§

impl AsRef<Params> for Network

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Network

§

fn clone(&self) -> Network

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
§

impl Debug for Network

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Network

§

fn deserialize<__D>( __deserializer: __D ) -> Result<Network, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Network

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for KnownHrp

§

fn from(n: Network) -> KnownHrp

Converts to this type from the input type.
§

impl From<Network> for Magic

§

fn from(network: Network) -> Magic

Converts to this type from the input type.
§

impl From<Network> for NetworkKind

§

fn from(n: Network) -> NetworkKind

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.
§

impl FromStr for Network

§

type Err = ParseNetworkError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Network, <Network as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Network

§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Network

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for KnownHrp

§

fn from(n: Network) -> KnownHrp

Converts to this type from the input type.
§

impl From<Network> for Magic

§

fn from(network: Network) -> Magic

Converts to this type from the input type.
§

impl From<Network> for NetworkKind

§

fn from(n: Network) -> NetworkKind

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.
§

impl FromStr for Network

§

type Err = ParseNetworkError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Network, <Network as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Network

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Network

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.TapSighashType.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.TapSighashType.html index 160660a2e1..b3d89bd7b5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.TapSighashType.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.TapSighashType.html @@ -24,7 +24,7 @@ to follow it.)

Trait Implementations§

§

impl Clone for TapSighashType

§

fn clone(&self) -> TapSighashType

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
§

impl Debug for TapSighashType

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapSighashType

§

fn deserialize<D>( deserializer: D ) -> Result<TapSighashType, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighashType

§

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

Formats the value using the given formatter. Read more
§

impl From<EcdsaSighashType> for TapSighashType

§

fn from(s: EcdsaSighashType) -> TapSighashType

Converts to this type from the input type.
§

impl From<TapSighashType> for PsbtSighashType

§

fn from(taproot_hash_ty: TapSighashType) -> PsbtSighashType

Converts to this type from the input type.
§

impl FromStr for TapSighashType

§

type Err = SighashTypeParseError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighashType, <TapSighashType as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighashType

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighashType

§

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

Formats the value using the given formatter. Read more
§

impl From<EcdsaSighashType> for TapSighashType

§

fn from(s: EcdsaSighashType) -> TapSighashType

Converts to this type from the input type.
§

impl From<TapSighashType> for PsbtSighashType

§

fn from(taproot_hash_ty: TapSighashType) -> PsbtSighashType

Converts to this type from the input type.
§

impl FromStr for TapSighashType

§

type Err = SighashTypeParseError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighashType, <TapSighashType as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighashType

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for TapSighashType

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.WitnessVersion.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.WitnessVersion.html index 2f1ed0dd6d..b4a5ecb001 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.WitnessVersion.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/enum.WitnessVersion.html @@ -54,11 +54,11 @@ into a byte since the conversion requires context (bitcoin script or just a vers by ==.

1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialOrd for WitnessVersion

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl TryFrom<Fe32> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( +operator. Read more

§

impl TryFrom<Fe32> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( value: Fe32 -) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Fe32>>::Error>

Performs the conversion.
§

impl<'a> TryFrom<Instruction<'a>> for WitnessVersion

§

type Error = TryFromInstructionError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Fe32>>::Error>

Performs the conversion.
§

impl<'a> TryFrom<Instruction<'a>> for WitnessVersion

§

type Error = TryFromInstructionError

The type returned in the event of a conversion error.
§

fn try_from( instruction: Instruction<'_> -) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Instruction<'a>>>::Error>

Performs the conversion.
§

impl TryFrom<Opcode> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Instruction<'a>>>::Error>

Performs the conversion.
§

impl TryFrom<Opcode> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( opcode: Opcode ) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Opcode>>::Error>

Performs the conversion.
§

impl TryFrom<u8> for WitnessVersion

§

type Error = TryFromError

The type returned in the event of a conversion error.
§

fn try_from( no: u8 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/error/struct.ParseIntError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/error/struct.ParseIntError.html index 7bbae2ee64..a0f08c311c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/error/struct.ParseIntError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/error/struct.ParseIntError.html @@ -6,7 +6,7 @@ make it easier to understand the problem and correct mistakes.

in a performance-critical application you may want to box it or throw away the context by converting to core type.

Implementations§

§

impl ParseIntError

pub fn input(&self) -> &str

Returns the input that was attempted to be parsed.

-

Trait Implementations§

§

impl AsRef<ParseIntError> for ParseIntError

§

fn as_ref(&self) -> &ParseIntError

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for ParseIntError

§

fn clone(&self) -> ParseIntError

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
§

impl Debug for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseIntError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<ParseIntError> for FromStrError

§

fn from(e: ParseIntError) -> FromStrError

Converts to this type from the input type.
§

impl From<ParseIntError> for ParseIntError

§

fn from(value: ParseIntError) -> ParseIntError

Converts to this type from the input type.
§

impl From<ParseIntError> for PrefixedHexError

§

fn from(e: ParseIntError) -> PrefixedHexError

Converts to this type from the input type.
§

impl From<ParseIntError> for UnprefixedHexError

§

fn from(e: ParseIntError) -> UnprefixedHexError

Converts to this type from the input type.
§

impl PartialEq for ParseIntError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl AsRef<ParseIntError> for ParseIntError

§

fn as_ref(&self) -> &ParseIntError

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for ParseIntError

§

fn clone(&self) -> ParseIntError

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
§

impl Debug for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseIntError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<ParseIntError> for FromStrError

§

fn from(e: ParseIntError) -> FromStrError

Converts to this type from the input type.
§

impl From<ParseIntError> for ParseIntError

§

fn from(value: ParseIntError) -> ParseIntError

Converts to this type from the input type.
§

impl From<ParseIntError> for PrefixedHexError

§

fn from(e: ParseIntError) -> PrefixedHexError

Converts to this type from the input type.
§

impl From<ParseIntError> for UnprefixedHexError

§

fn from(e: ParseIntError) -> UnprefixedHexError

Converts to this type from the input type.
§

impl PartialEq for ParseIntError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for ParseIntError

§

impl StructuralPartialEq for ParseIntError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.BlockHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.BlockHash.html index fa152da204..99aa48725c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.BlockHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.BlockHash.html @@ -2,11 +2,11 @@

Implementations§

§

impl BlockHash

pub fn from_raw_hash(inner: Hash) -> BlockHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for BlockHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for BlockHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for BlockHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for BlockHash

§

fn clone(&self) -> BlockHash

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
§

impl Debug for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for BlockHash

Trait Implementations§

§

impl AsRef<[u8]> for BlockHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for BlockHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for BlockHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for BlockHash

§

fn clone(&self) -> BlockHash

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
§

impl Debug for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for BlockHash

§

fn consensus_decode<R>(r: &mut R) -> Result<BlockHash, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for BlockHash

§

fn deserialize<D>(d: D) -> Result<BlockHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for BlockHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<&Header> for BlockHash

§

fn from(header: &Header) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Header> for BlockHash

§

fn from(header: Header) -> BlockHash

Converts to this type from the input type.
§

impl FromStr for BlockHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<BlockHash, <BlockHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for BlockHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<&Header> for BlockHash

§

fn from(header: &Header) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Header> for BlockHash

§

fn from(header: Header) -> BlockHash

Converts to this type from the input type.
§

impl FromStr for BlockHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<BlockHash, <BlockHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for BlockHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHash.html index 6948c999e1..3d8497b812 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHash.html @@ -10,7 +10,7 @@ R: Read + ?Sized,
Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for FilterHash

§

fn deserialize<D>(d: D) -> Result<FilterHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for FilterHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for FilterHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl FromStr for FilterHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHash, <FilterHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl FromStr for FilterHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHash, <FilterHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHeader.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHeader.html index f37101f6aa..7763792e52 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHeader.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.FilterHeader.html @@ -2,11 +2,11 @@

Implementations§

§

impl FilterHeader

pub fn from_raw_hash(inner: Hash) -> FilterHeader

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for FilterHeader

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for FilterHeader

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for FilterHeader

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for FilterHeader

§

fn clone(&self) -> FilterHeader

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
§

impl Debug for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for FilterHeader

Trait Implementations§

§

impl AsRef<[u8]> for FilterHeader

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for FilterHeader

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for FilterHeader

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for FilterHeader

§

fn clone(&self) -> FilterHeader

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
§

impl Debug for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for FilterHeader

§

fn consensus_decode<R>(r: &mut R) -> Result<FilterHeader, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for FilterHeader

§

fn deserialize<D>(d: D) -> Result<FilterHeader, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for FilterHeader

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl FromStr for FilterHeader

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHeader, <FilterHeader as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHeader

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl FromStr for FilterHeader

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHeader, <FilterHeader as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHeader

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.TxMerkleNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.TxMerkleNode.html index d80014af03..80fef87546 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.TxMerkleNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.TxMerkleNode.html @@ -6,7 +6,7 @@ R: Read + ?Sized,
Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for TxMerkleNode

§

fn deserialize<D>(d: D) -> Result<TxMerkleNode, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TxMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for TxMerkleNode

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for TxMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TxMerkleNode, <TxMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TxMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for TxMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TxMerkleNode, <TxMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TxMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Txid.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Txid.html index 9da793ac47..cd2ee3e252 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Txid.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Txid.html @@ -6,11 +6,11 @@ trait operations. See Implementations§
§

impl Txid

pub fn from_raw_hash(inner: Hash) -> Txid

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for Txid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Txid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Txid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Txid

§

fn clone(&self) -> Txid

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
§

impl Debug for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Txid

Trait Implementations§

§

impl AsRef<[u8]> for Txid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Txid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Txid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Txid

§

fn clone(&self) -> Txid

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
§

impl Debug for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Txid

§

fn consensus_decode<R>(r: &mut R) -> Result<Txid, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Txid

§

fn deserialize<D>(d: D) -> Result<Txid, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Txid

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for Txid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Txid, <Txid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Txid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for Txid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Txid, <Txid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Txid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.WitnessMerkleNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.WitnessMerkleNode.html index 84539caa69..6360be972e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.WitnessMerkleNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.WitnessMerkleNode.html @@ -2,13 +2,13 @@

Implementations§

§

impl WitnessMerkleNode

pub fn from_raw_hash(inner: Hash) -> WitnessMerkleNode

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WitnessMerkleNode

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WitnessMerkleNode

§

fn clone(&self) -> WitnessMerkleNode

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
§

impl Debug for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for WitnessMerkleNode

Trait Implementations§

§

impl AsRef<[u8]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WitnessMerkleNode

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WitnessMerkleNode

§

fn clone(&self) -> WitnessMerkleNode

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
§

impl Debug for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for WitnessMerkleNode

§

fn consensus_decode<R>(r: &mut R) -> Result<WitnessMerkleNode, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for WitnessMerkleNode

§

fn deserialize<D>( d: D ) -> Result<WitnessMerkleNode, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for WitnessMerkleNode

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for WitnessMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for WitnessMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<WitnessMerkleNode, <WitnessMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WitnessMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Wtxid.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Wtxid.html index 3845db531d..ba69e9f031 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Wtxid.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hash_types/struct.Wtxid.html @@ -2,11 +2,11 @@

Implementations§

§

impl Wtxid

pub fn from_raw_hash(inner: Hash) -> Wtxid

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for Wtxid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Wtxid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Wtxid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Wtxid

§

fn clone(&self) -> Wtxid

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
§

impl Debug for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Wtxid

Trait Implementations§

§

impl AsRef<[u8]> for Wtxid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Wtxid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Wtxid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Wtxid

§

fn clone(&self) -> Wtxid

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
§

impl Debug for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Wtxid

§

fn consensus_decode<R>(r: &mut R) -> Result<Wtxid, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Wtxid

§

fn deserialize<D>(d: D) -> Result<Wtxid, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Wtxid

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for Wtxid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Wtxid, <Wtxid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Wtxid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for Wtxid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Wtxid, <Wtxid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Wtxid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/hash160/struct.Hash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/hash160/struct.Hash.html index 1b10d77fe9..fd666f7da6 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/hash160/struct.Hash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/hash160/struct.Hash.html @@ -4,7 +4,7 @@ a shared reference to this Hash type.

pub fn from_bytes_mut(bytes: &mut [u8; 20]) -> &mut Hash

Zero cost conversion between a fixed length byte array exclusive reference and an exclusive reference to this Hash type.

Trait Implementations§

§

impl AsRef<[u8]> for Hash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for Hash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Hash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Hash

§

fn clone(&self) -> Hash

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
§

impl Debug for Hash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Hash

§

fn deserialize<D>(d: D) -> Result<Hash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Hash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for PubkeyHash

§

fn from(inner: Hash) -> PubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for ScriptHash

§

fn from(inner: Hash) -> ScriptHash

Converts to this type from the input type.
§

impl From<Hash> for WPubkeyHash

§

fn from(inner: Hash) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for XKeyIdentifier

§

fn from(inner: Hash) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<PubkeyHash> for Hash

§

fn from(hashtype: PubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<ScriptHash> for Hash

§

fn from(hashtype: ScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for Hash

§

fn from(hashtype: WPubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<XKeyIdentifier> for Hash

§

fn from(hashtype: XKeyIdentifier) -> Hash

Converts to this type from the input type.
§

impl FromStr for Hash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Hash, <Hash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Hash

§

type Engine = HashEngine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Hash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for PubkeyHash

§

fn from(inner: Hash) -> PubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for ScriptHash

§

fn from(inner: Hash) -> ScriptHash

Converts to this type from the input type.
§

impl From<Hash> for WPubkeyHash

§

fn from(inner: Hash) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for XKeyIdentifier

§

fn from(inner: Hash) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<PubkeyHash> for Hash

§

fn from(hashtype: PubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<ScriptHash> for Hash

§

fn from(hashtype: ScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for Hash

§

fn from(hashtype: WPubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<XKeyIdentifier> for Hash

§

fn from(hashtype: XKeyIdentifier) -> Hash

Converts to this type from the input type.
§

impl FromStr for Hash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Hash, <Hash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Hash

§

type Engine = HashEngine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = [u8; 20]

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserialize.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserialize.html index 1621fa9414..6fafede133 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserialize.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserialize.html @@ -1,4 +1,4 @@ -Deserialize in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::Deserialize

source ·
pub trait Deserialize<'de>: Sized {
+Deserialize in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::Deserialize

source ·
pub trait Deserialize<'de>: Sized {
     // Required method
     fn deserialize<D>(
         deserializer: D
@@ -36,298 +36,282 @@ manual for more information about how to implement this method.

D: Deserializer<'de>,
source§

impl<'de> Deserialize<'de> for SocketAddr

source§

fn deserialize<D>( deserializer: D ) -> Result<SocketAddr, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D>( - deserializer: D -) -> Result<Value, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for bool

source§

impl<'de> Deserialize<'de> for bool

source§

fn deserialize<D>( deserializer: D ) -> Result<bool, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for char

source§

impl<'de> Deserialize<'de> for char

source§

fn deserialize<D>( deserializer: D ) -> Result<char, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f32

source§

impl<'de> Deserialize<'de> for f32

source§

fn deserialize<D>( deserializer: D ) -> Result<f32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f64

source§

impl<'de> Deserialize<'de> for f64

source§

fn deserialize<D>( deserializer: D ) -> Result<f64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i8

source§

impl<'de> Deserialize<'de> for i8

source§

fn deserialize<D>( deserializer: D ) -> Result<i8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i16

source§

impl<'de> Deserialize<'de> for i16

source§

fn deserialize<D>( deserializer: D ) -> Result<i16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i32

source§

impl<'de> Deserialize<'de> for i32

source§

fn deserialize<D>( deserializer: D ) -> Result<i32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i64

source§

impl<'de> Deserialize<'de> for i64

source§

fn deserialize<D>( deserializer: D ) -> Result<i64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i128

source§

impl<'de> Deserialize<'de> for i128

source§

fn deserialize<D>( deserializer: D ) -> Result<i128, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for isize

source§

impl<'de> Deserialize<'de> for isize

source§

fn deserialize<D>( deserializer: D ) -> Result<isize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u8

source§

impl<'de> Deserialize<'de> for u8

source§

fn deserialize<D>( deserializer: D ) -> Result<u8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u16

source§

impl<'de> Deserialize<'de> for u16

source§

fn deserialize<D>( deserializer: D ) -> Result<u16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u32

source§

impl<'de> Deserialize<'de> for u32

source§

fn deserialize<D>( deserializer: D ) -> Result<u32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u64

source§

impl<'de> Deserialize<'de> for u64

source§

fn deserialize<D>( deserializer: D ) -> Result<u64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u128

source§

impl<'de> Deserialize<'de> for u128

source§

fn deserialize<D>( deserializer: D ) -> Result<u128, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for ()

source§

impl<'de> Deserialize<'de> for ()

source§

fn deserialize<D>( deserializer: D ) -> Result<(), <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for usize

source§

impl<'de> Deserialize<'de> for usize

source§

fn deserialize<D>( deserializer: D ) -> Result<usize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<str>

source§

impl<'de> Deserialize<'de> for Box<str>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<str>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<CStr>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<OsStr>

source§

impl<'de> Deserialize<'de> for Box<OsStr>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<OsStr>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<Path>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<RawValue>

source§

fn deserialize<D>( - deserializer: D -) -> Result<Box<RawValue>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for CString

source§

impl<'de> Deserialize<'de> for CString

source§

fn deserialize<D>( deserializer: D ) -> Result<CString, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

fn deserialize<D>( deserializer: D ) -> Result<Ipv4Addr, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

fn deserialize<D>( deserializer: D ) -> Result<Ipv6Addr, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

fn deserialize<D>( deserializer: D ) -> Result<SocketAddrV4, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

fn deserialize<D>( deserializer: D ) -> Result<SocketAddrV6, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i8>

source§

impl<'de> Deserialize<'de> for NonZero<i8>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i16>

source§

impl<'de> Deserialize<'de> for NonZero<i16>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i32>

source§

impl<'de> Deserialize<'de> for NonZero<i32>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i64>

source§

impl<'de> Deserialize<'de> for NonZero<i64>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i128>

source§

impl<'de> Deserialize<'de> for NonZero<i128>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<isize>

source§

impl<'de> Deserialize<'de> for NonZero<isize>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<isize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u8>

source§

impl<'de> Deserialize<'de> for NonZero<u8>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u16>

source§

impl<'de> Deserialize<'de> for NonZero<u16>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u32>

source§

impl<'de> Deserialize<'de> for NonZero<u32>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u64>

source§

impl<'de> Deserialize<'de> for NonZero<u64>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u128>

source§

impl<'de> Deserialize<'de> for NonZero<u128>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<usize>

source§

impl<'de> Deserialize<'de> for NonZero<usize>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<usize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i8>

source§

impl<'de> Deserialize<'de> for Saturating<i8>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i16>

source§

impl<'de> Deserialize<'de> for Saturating<i16>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i32>

source§

impl<'de> Deserialize<'de> for Saturating<i32>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i64>

source§

impl<'de> Deserialize<'de> for Saturating<i64>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i128>

source§

impl<'de> Deserialize<'de> for Saturating<i128>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<isize>

source§

impl<'de> Deserialize<'de> for Saturating<isize>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<isize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u8>

source§

impl<'de> Deserialize<'de> for Saturating<u8>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u16>

source§

impl<'de> Deserialize<'de> for Saturating<u16>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u32>

source§

impl<'de> Deserialize<'de> for Saturating<u32>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u64>

source§

impl<'de> Deserialize<'de> for Saturating<u64>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u128>

source§

impl<'de> Deserialize<'de> for Saturating<u128>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<usize>

source§

impl<'de> Deserialize<'de> for Saturating<usize>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<usize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicBool, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicIsize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicUsize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Duration

source§

impl<'de> Deserialize<'de> for Duration

source§

fn deserialize<D>( deserializer: D ) -> Result<Duration, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for OsString

source§

impl<'de> Deserialize<'de> for OsString

source§

fn deserialize<D>( deserializer: D ) -> Result<OsString, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for PathBuf

source§

impl<'de> Deserialize<'de> for PathBuf

source§

fn deserialize<D>( deserializer: D ) -> Result<PathBuf, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SystemTime

source§

impl<'de> Deserialize<'de> for SystemTime

source§

fn deserialize<D>( deserializer: D ) -> Result<SystemTime, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Map<String, Value>

source§

fn deserialize<D>( - deserializer: D -) -> Result<Map<String, Value>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Number

source§

fn deserialize<D>( - deserializer: D -) -> Result<Number, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for DescriptorPublicKey

§

fn deserialize<D>( + D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for DescriptorPublicKey

§

fn deserialize<D>( deserializer: D ) -> Result<DescriptorPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for Hash

§

fn deserialize<D>(d: D) -> Result<Hash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for Hash

§

fn deserialize<D>(d: D) -> Result<Hash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a str
where - 'de: 'a,

source§

fn deserialize<D>( + 'de: 'a,

source§

fn deserialize<D>( deserializer: D ) -> Result<&'a str, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a Path
where - 'de: 'a,

source§

fn deserialize<D>( + 'de: 'a,

source§

fn deserialize<D>( deserializer: D ) -> Result<&'a Path, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a RawValue
where - 'de: 'a,

source§

fn deserialize<D>( - deserializer: D -) -> Result<&'a RawValue, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a [u8]
where - 'de: 'a,

source§

fn deserialize<D>( + 'de: 'a,

source§

fn deserialize<D>( deserializer: D ) -> Result<&'a [u8], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a, T> Deserialize<'de> for Cow<'a, T>
where T: ToOwned + ?Sized, - <T as ToOwned>::Owned: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Cow<'a, T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for Range<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Range<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeFrom<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RangeFrom<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeInclusive<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RangeInclusive<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeTo<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RangeTo<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>
where K: Deserialize<'de> + Ord, - V: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<BTreeMap<K, V>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, K, V, S> Deserialize<'de> for HashMap<K, V, S>
where K: Deserialize<'de> + Eq + Hash, V: Deserialize<'de>, - S: BuildHasher + Default,

source§

fn deserialize<D>( deserializer: D ) -> Result<HashMap<K, V, S>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Descriptor<Pk>
where - Pk: FromStrKey,

§

fn deserialize<D>( + Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D ) -> Result<Descriptor<Pk>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where - Pk: FromStrKey,

§

fn deserialize<D>( + D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where + Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D ) -> Result<Policy<Pk>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where - Pk: FromStrKey,

§

fn deserialize<D>( + D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where + Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D ) -> Result<Policy<Pk>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

§

impl<'de, Pk, Ctx> Deserialize<'de> for Miniscript<Pk, Ctx>
where Pk: FromStrKey, - Ctx: ScriptContext,

§

fn deserialize<D>( + Ctx: ScriptContext,

§

fn deserialize<D>( deserializer: D ) -> Result<Miniscript<Pk, Ctx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1> Deserialize<'de> for (T0, T1)
where T0: Deserialize<'de>, - T1: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2> Deserialize<'de> for (T0, T1, T2)
where T0: Deserialize<'de>, T1: Deserialize<'de>, - T2: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3> Deserialize<'de> for (T0, T1, T2, T3)
where T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, - T3: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4> Deserialize<'de> for (T0, T1, T2, T3, T4)
where @@ -335,7 +319,7 @@ manual for more information about how to implement this method.

T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, - T4: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5> Deserialize<'de> for (T0, T1, T2, T3, T4, T5)
where @@ -344,7 +328,7 @@ manual for more information about how to implement this method.

T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, - T5: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6)
where @@ -354,7 +338,7 @@ manual for more information about how to implement this method.

T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, - T6: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5, T6), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7)
where @@ -365,7 +349,7 @@ manual for more information about how to implement this method.

T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, - T7: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5, T6, T7), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)
where @@ -377,7 +361,7 @@ manual for more information about how to implement this method.

T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, - T8: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5, T6, T7, T8), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)
where @@ -390,7 +374,7 @@ manual for more information about how to implement this method.

T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, - T9: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)
where @@ -404,7 +388,7 @@ manual for more information about how to implement this method.

T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, - T10: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)
where @@ -419,7 +403,7 @@ manual for more information about how to implement this method.

T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, - T11: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)
where @@ -435,7 +419,7 @@ manual for more information about how to implement this method.

T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, - T12: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)
where @@ -452,7 +436,7 @@ manual for more information about how to implement this method.

T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, - T13: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)
where @@ -470,7 +454,7 @@ manual for more information about how to implement this method.

T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, - T14: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)
where @@ -489,174 +473,174 @@ manual for more information about how to implement this method.

T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>, - T15: Deserialize<'de>,

source§

impl<'de, T> Deserialize<'de> for Bound<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Bound<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Option<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Option<T>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 0], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 1]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 1], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 2]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 2], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 3]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 3], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 4]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 4], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 5]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 5], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 6]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 6], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 7]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 7], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 8]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 8], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 9]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 9], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 10]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 10], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 11]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 11], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 12]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 12], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 13]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 13], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 14]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 14], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 15]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 15], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 16]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 16], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 17]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 17], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 18]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 18], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 19]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 19], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 20]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 20], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 21]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 21], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 22]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 22], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 23]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 23], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 24]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 24], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 25]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 25], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 26]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 26], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 27]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 27], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 28]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 28], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 29]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 29], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 30]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 30], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 31]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 31], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 32]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 32], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for (T,)
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T,), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Box<[T]>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<[T]>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Box<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BinaryHeap<T>
where - T: Deserialize<'de> + Ord,

source§

fn deserialize<D>( deserializer: D ) -> Result<BinaryHeap<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BTreeSet<T>
where - T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>( + T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>( deserializer: D ) -> Result<BTreeSet<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for LinkedList<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<LinkedList<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for VecDeque<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<VecDeque<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Rc<T>
where @@ -665,13 +649,13 @@ manual for more information about how to implement this method.

Deserializing a data structure containing Rc will not attempt to deduplicate Rc references to the same data. Every deserialized Rc will end up with a strong count of 1.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Rc<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Weak<T>
where T: Deserialize<'de>,

This impl requires the "rc" Cargo feature of Serde. The resulting Weak<T> has a reference count of 0 and cannot be upgraded.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Weak<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Arc<T>
where @@ -680,51 +664,51 @@ will end up with a strong count of 1.

Deserializing a data structure containing Arc will not attempt to deduplicate Arc references to the same data. Every deserialized Arc will end up with a strong count of 1.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Arc<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Weak<T>
where T: Deserialize<'de>,

This impl requires the "rc" Cargo feature of Serde. The resulting Weak<T> has a reference count of 0 and cannot be upgraded.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Weak<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Cell<T>
where - T: Deserialize<'de> + Copy,

source§

fn deserialize<D>( deserializer: D ) -> Result<Cell<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for RefCell<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RefCell<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Reverse<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Reverse<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for PhantomData<T>
where - T: ?Sized,

source§

fn deserialize<D>( deserializer: D ) -> Result<PhantomData<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Wrapping<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Wrapping<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Mutex<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Mutex<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for RwLock<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RwLock<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T, E> Deserialize<'de> for Result<T, E>
where T: Deserialize<'de>, - E: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Result<T, E>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T, S> Deserialize<'de> for HashSet<T, S>
where T: Deserialize<'de> + Eq + Hash, - S: BuildHasher + Default,

source§

fn deserialize<D>( deserializer: D ) -> Result<HashSet<T, S>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Implementors§

§

impl<'de> Deserialize<'de> for &'de Script

Can only deserialize borrowed bytes.

@@ -738,4 +722,4 @@ will end up with a strong count of 1.

Subtype: Copy + From<u8> + Into<u8> + Deserialize<'de>,
source§

impl<'de, T> Deserialize<'de> for Vec<T>
where T: Deserialize<'de>,

§

impl<'de, T> Deserialize<'de> for Hmac<T>
where T: Hash + Deserialize<'de>,

§

impl<'de, T> Deserialize<'de> for bdk_chain::bitcoin::hashes::sha256t::Hash<T>
where - T: Tag,

\ No newline at end of file + T: Tag, \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserializer.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserializer.html index b8917b8dd0..a72ec1b9dc 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserializer.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Deserializer.html @@ -1,4 +1,4 @@ -Deserializer in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::Deserializer

source ·
pub trait Deserializer<'de>: Sized {
+Deserializer in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::Deserializer

source ·
pub trait Deserializer<'de>: Sized {
     type Error: Error;
 
 
Show 32 methods // Required methods @@ -555,1162 +555,38 @@ support one. Note that modifying this method to change a format from human-readable to compact or vice versa should be regarded as a breaking change, as a value serialized in human-readable mode is not required to deserialize from the same data in compact mode.

-

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - _name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - _name: &'static str, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - _name: &'static str, - _fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for &'de Map<String, Value>

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - _name: &'static str, - _variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for &'de RawValue

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for &Number

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for Value

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - _name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - _name: &'static str, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - _name: &'static str, - _fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for Map<String, Value>

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - _name: &'static str, - _variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for Number

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de, R> Deserializer<'de> for &mut Deserializer<R>
where - R: Read<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses a JSON string as bytes. Note that this function does not check -whether the bytes represent a valid UTF-8 string.

-

The relevant part of the JSON specification is Section 8.2 of RFC -7159:

-
-

When all the strings represented in a JSON text are composed entirely -of Unicode characters (however escaped), then that JSON text is -interoperable in the sense that all software implementations that -parse it will agree on the contents of names and of string values in -objects and arrays.

-

However, the ABNF in this specification allows member names and string -values to contain bit sequences that cannot encode Unicode characters; -for example, “\uDEAD” (a single unpaired UTF-16 surrogate). Instances -of this have been observed, for example, when a library truncates a -UTF-16 string without checking whether the truncation split a -surrogate pair. The behavior of software that receives JSON texts -containing such values is unpredictable; for example, implementations -might return different values for the length of a string value or even -suffer fatal runtime exceptions.

-
-

The behavior of serde_json is specified to fail on non-UTF-8 strings -when deserializing into Rust UTF-8 string types such as String, and -succeed with the bytes representing the WTF-8 encoding of code points -when deserializing using this method.

-

Escape sequences are processed as usual, and for \uXXXX escapes it is -still checked if the hex number represents a valid Unicode code point.

-
§Examples
-

You can use this to parse JSON strings containing invalid UTF-8 bytes, -or unpaired surrogates.

- -
use serde_bytes::ByteBuf;
-
-fn look_at_bytes() -> Result<(), serde_json::Error> {
-    let json_data = b"\"some bytes: \xe5\x00\xe5\"";
-    let bytes: ByteBuf = serde_json::from_slice(json_data)?;
-
-    assert_eq!(b'\xe5', bytes[12]);
-    assert_eq!(b'\0', bytes[13]);
-    assert_eq!(b'\xe5', bytes[14]);
-
-    Ok(())
-}
-

Backslash escape sequences like \n are still interpreted and required -to be valid. \u escape sequences are required to represent a valid -Unicode code point or lone surrogate.

- -
use serde_bytes::ByteBuf;
-
-fn look_at_bytes() -> Result<(), serde_json::Error> {
-    let json_data = b"\"lone surrogate: \\uD801\"";
-    let bytes: ByteBuf = serde_json::from_slice(json_data)?;
-    let expected = b"lone surrogate: \xED\xA0\x81";
-    assert_eq!(expected, bytes.as_slice());
-    Ok(())
-}
-
source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses a null as a None, and any other values as a Some(...).

-
source§

fn deserialize_newtype_struct<V>( - self, - name: &str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses a newtype struct as the underlying value.

-
source§

fn deserialize_enum<V>( - self, - _name: &str, - _variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses an enum as an object like {"$KEY":$VALUE}, where $VALUE is either a straight -value, a [..], or a {..}.

-
§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - _name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - _name: &'static str, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - _name: &'static str, - _fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Implementors§

source§

impl<'de, 'a, E> Deserializer<'de> for BytesDeserializer<'a, E>
where - E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for CowStrDeserializer<'a, E>
where - E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for StrDeserializer<'a, E>
where - E: Error,

§

type Error = E

source§

impl<'de, A> Deserializer<'de> for EnumAccessDeserializer<A>
where - A: EnumAccess<'de>,

§

type Error = <A as EnumAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for MapAccessDeserializer<A>
where - A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for SeqAccessDeserializer<A>
where - A: SeqAccess<'de>,

§

type Error = <A as SeqAccess<'de>>::Error

source§

impl<'de, E> Deserializer<'de> for BoolDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedBytesDeserializer<'de, E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedStrDeserializer<'de, E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for CharDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F32Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F64Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I8Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I16Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I32Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I64Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I128Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for IsizeDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for StringDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U8Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U16Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U32Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U64Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U128Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UnitDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UsizeDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, I, E> Deserializer<'de> for MapDeserializer<'de, I, E>
where +

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'de, 'a, E> Deserializer<'de> for BytesDeserializer<'a, E>
where + E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for CowStrDeserializer<'a, E>
where + E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for StrDeserializer<'a, E>
where + E: Error,

§

type Error = E

source§

impl<'de, A> Deserializer<'de> for EnumAccessDeserializer<A>
where + A: EnumAccess<'de>,

§

type Error = <A as EnumAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for MapAccessDeserializer<A>
where + A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for SeqAccessDeserializer<A>
where + A: SeqAccess<'de>,

§

type Error = <A as SeqAccess<'de>>::Error

source§

impl<'de, E> Deserializer<'de> for BoolDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedBytesDeserializer<'de, E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedStrDeserializer<'de, E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for CharDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F32Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F64Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I8Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I16Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I32Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I64Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I128Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for IsizeDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for StringDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U8Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U16Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U32Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U64Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U128Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UnitDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UsizeDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, I, E> Deserializer<'de> for MapDeserializer<'de, I, E>
where I: Iterator, <I as Iterator>::Item: Pair, <<I as Iterator>::Item as Pair>::First: IntoDeserializer<'de, E>, <<I as Iterator>::Item as Pair>::Second: IntoDeserializer<'de, E>, - E: Error,

§

type Error = E

source§

impl<'de, I, T, E> Deserializer<'de> for SeqDeserializer<I, E>
where + E: Error,

§

type Error = E

source§

impl<'de, I, T, E> Deserializer<'de> for SeqDeserializer<I, E>
where I: Iterator<Item = T>, T: IntoDeserializer<'de, E>, - E: Error,

§

type Error = E

\ No newline at end of file + E: Error,
§

type Error = E

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Error.html index 3f294a4062..01d3011747 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.Error.html @@ -1,4 +1,4 @@ -Error in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::Error

source ·
pub trait Error: Sized + Error {
+Error in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::Error

source ·
pub trait Error: Sized + Error {
     // Required method
     fn custom<T>(msg: T) -> Self
        where T: Display;
@@ -76,5 +76,4 @@ field with a particular name but that field was not present in the
 input.

source

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the same field.

-

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Error
where - T: Display,

source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Error

source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Error

Implementors§

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

\ No newline at end of file +

Object Safety§

This trait is not object safe.

Implementors§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.IntoDeserializer.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.IntoDeserializer.html index 7857786652..b867b66f2b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.IntoDeserializer.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.IntoDeserializer.html @@ -1,4 +1,4 @@ -IntoDeserializer in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::IntoDeserializer

source ·
pub trait IntoDeserializer<'de, E = Error>
where +IntoDeserializer in bdk_chain::bitcoin::hashes::serde::de - Rust

Trait bdk_chain::bitcoin::hashes::serde::de::IntoDeserializer

source ·
pub trait IntoDeserializer<'de, E = Error>
where E: Error,
{ type Deserializer: Deserializer<'de, Error = E>; @@ -30,91 +30,81 @@ deserializer lifetimes for a more detailed explanation of these lifetimes.

Required Associated Types§

source

type Deserializer: Deserializer<'de, Error = E>

The type of the deserializer being converted into.

Required Methods§

source

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.

-

Implementations on Foreign Types§

source§

impl<'de> IntoDeserializer<'de, Error> for &'de Value

source§

impl<'de> IntoDeserializer<'de, Error> for &'de Map<String, Value>

source§

impl<'de> IntoDeserializer<'de, Error> for &'de RawValue

source§

impl<'de> IntoDeserializer<'de, Error> for Value

source§

impl<'de> IntoDeserializer<'de, Error> for Map<String, Value>

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a str
where - E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a [u8]
where - E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for Cow<'a, str>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for bool
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for char
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for f32
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for f64
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i8
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i16
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i32
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i64
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i128
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for isize
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u8
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u16
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u32
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u64
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u128
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for ()
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for usize
where - E: Error,

source§

impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>
where +

Implementations on Foreign Types§

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a str
where + E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a [u8]
where + E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for Cow<'a, str>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for bool
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for char
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for f32
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for f64
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i8
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i16
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i32
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i64
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for i128
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for isize
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u8
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u16
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u32
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u64
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for u128
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for ()
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for usize
where + E: Error,

source§

impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>
where K: IntoDeserializer<'de, E> + Eq + Ord, V: IntoDeserializer<'de, E>, - E: Error,

source§

impl<'de, K, V, S, E> IntoDeserializer<'de, E> for HashMap<K, V, S>
where K: IntoDeserializer<'de, E> + Eq + Hash, V: IntoDeserializer<'de, E>, S: BuildHasher, - E: Error,

source§

impl<'de, T, E> IntoDeserializer<'de, E> for BTreeSet<T>
where T: IntoDeserializer<'de, E> + Eq + Ord, - E: Error,

source§

impl<'de, T, S, E> IntoDeserializer<'de, E> for HashSet<T, S>
where T: IntoDeserializer<'de, E> + Eq + Hash, S: BuildHasher, - E: Error,

Implementors§

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for BytesDeserializer<'a, E>
where - E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for CowStrDeserializer<'a, E>
where - E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for StrDeserializer<'a, E>
where - E: Error,

source§

impl<'de, A> IntoDeserializer<'de, <A as EnumAccess<'de>>::Error> for EnumAccessDeserializer<A>
where - A: EnumAccess<'de>,

source§

impl<'de, A> IntoDeserializer<'de, <A as MapAccess<'de>>::Error> for MapAccessDeserializer<A>
where - A: MapAccess<'de>,

source§

impl<'de, A> IntoDeserializer<'de, <A as SeqAccess<'de>>::Error> for SeqAccessDeserializer<A>
where - A: SeqAccess<'de>,

source§

impl<'de, E> IntoDeserializer<'de, E> for String
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for BoolDeserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for BorrowedBytesDeserializer<'de, E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for BorrowedStrDeserializer<'de, E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for CharDeserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for F32Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for F64Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I8Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I16Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I32Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I64Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I128Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for IsizeDeserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for StringDeserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U8Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U16Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U32Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U64Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U128Deserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for UnitDeserializer<E>
where - E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for UsizeDeserializer<E>
where - E: Error,

source§

impl<'de, I, E> IntoDeserializer<'de, E> for MapDeserializer<'de, I, E>
where + E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for CowStrDeserializer<'a, E>
where + E: Error,

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for StrDeserializer<'a, E>
where + E: Error,

source§

impl<'de, A> IntoDeserializer<'de, <A as EnumAccess<'de>>::Error> for EnumAccessDeserializer<A>
where + A: EnumAccess<'de>,

source§

impl<'de, A> IntoDeserializer<'de, <A as MapAccess<'de>>::Error> for MapAccessDeserializer<A>
where + A: MapAccess<'de>,

source§

impl<'de, A> IntoDeserializer<'de, <A as SeqAccess<'de>>::Error> for SeqAccessDeserializer<A>
where + A: SeqAccess<'de>,

source§

impl<'de, E> IntoDeserializer<'de, E> for String
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for BoolDeserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for BorrowedBytesDeserializer<'de, E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for BorrowedStrDeserializer<'de, E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for CharDeserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for F32Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for F64Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I8Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I16Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I32Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I64Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for I128Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for IsizeDeserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for StringDeserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U8Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U16Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U32Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U64Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for U128Deserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for UnitDeserializer<E>
where + E: Error,

source§

impl<'de, E> IntoDeserializer<'de, E> for UsizeDeserializer<E>
where + E: Error,

source§

impl<'de, I, E> IntoDeserializer<'de, E> for MapDeserializer<'de, I, E>
where I: Iterator, <I as Iterator>::Item: Pair, <<I as Iterator>::Item as Pair>::First: IntoDeserializer<'de, E>, <<I as Iterator>::Item as Pair>::Second: IntoDeserializer<'de, E>, - E: Error,

source§

impl<'de, I, T, E> IntoDeserializer<'de, E> for SeqDeserializer<I, E>
where + E: Error,

source§

impl<'de, I, T, E> IntoDeserializer<'de, E> for SeqDeserializer<I, E>
where I: Iterator<Item = T>, T: IntoDeserializer<'de, E>, - E: Error,

source§

impl<'de, T, E> IntoDeserializer<'de, E> for Vec<T>
where + E: Error,

source§

impl<'de, T, E> IntoDeserializer<'de, E> for Vec<T>
where T: IntoDeserializer<'de, E>, - E: Error,

\ No newline at end of file + E: Error, \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.StdError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.StdError.html index d6c3c1d20f..131bf415b5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.StdError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/de/trait.StdError.html @@ -300,7 +300,7 @@ dyn 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.0.0 · source§

impl !Error for &str

source§

impl Error for ApplyHeaderError

source§

impl Error for CalculateFeeError

§

impl Error for FromScriptError

§

impl Error for P2shError

§

impl Error for bdk_chain::bitcoin::address::ParseError

§

impl Error for ParseAmountError

§

impl Error for bdk_chain::bitcoin::base58::Error

§

impl Error for ParseAlphabetError

§

impl Error for bdk_chain::bitcoin::base64::DecodeError

§

impl Error for DecodeSliceError

§

impl Error for EncodeSliceError

§

impl Error for bdk_chain::bitcoin::bech32::DecodeError

§

impl Error for bdk_chain::bitcoin::bech32::EncodeError

§

impl Error for EncodeIoError

§

impl Error for CharError

§

impl Error for CheckedHrpstringError

§

impl Error for ChecksumError

§

impl Error for PaddingError

§

impl Error for SegwitHrpstringError

§

impl Error for UncheckedHrpstringError

§

impl Error for FromCharError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::gf32::TryFromError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::hrp::Error

§

impl Error for WitnessLengthError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::EncodeError

§

impl Error for bdk_chain::bitcoin::bip32::Error

§

impl Error for bdk_chain::bitcoin::bip152::Error

§

impl Error for bdk_chain::bitcoin::bip158::Error

§

impl Error for Bip34Error

§

impl Error for ValidationError

§

impl Error for bdk_chain::bitcoin::blockdata::script::Error

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_program::Error

§

impl Error for FromStrError

§

impl Error for TryFromInstructionError

§

impl Error for ParseOutPointError

§

impl Error for bdk_chain::bitcoin::consensus::encode::Error

§

impl Error for FromHexError

§

impl Error for bdk_chain::bitcoin::ecdsa::Error

§

impl Error for PrefixedHexError

§

impl Error for UnprefixedHexError

§

impl Error for bdk_chain::bitcoin::key::FromSliceError

§

impl Error for FromWifError

§

impl Error for ParseCompressedPublicKeyError

§

impl Error for ParsePublicKeyError

§

impl Error for MerkleBlockError

§

impl Error for bdk_chain::bitcoin::psbt::Error

§

impl Error for ExtractTxError

§

impl Error for GetKeyError

§

impl Error for bdk_chain::bitcoin::psbt::IndexOutOfBoundsError

§

impl Error for PsbtParseError

§

impl Error for SignError

§

impl Error for bdk_chain::bitcoin::secp256k1::Error

source§

impl Error for BernoulliError

source§

impl Error for WeightedError

§

impl Error for AnnexError

§

impl Error for P2wpkhError

§

impl Error for PrevoutsIndexError

§

impl Error for bdk_chain::bitcoin::sighash::TaprootError

§

impl Error for MessageSignatureError

§

impl Error for HiddenNodesError

§

impl Error for IncompleteBuilderError

§

impl Error for SigFromSliceError

§

impl Error for TaprootBuilderError

§

impl Error for bdk_chain::bitcoin::taproot::TaprootError

§

impl Error for HexToArrayError

§

impl Error for HexToBytesError

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 AlterCheckPointError

source§

impl Error for CannotConnectError

source§

impl Error for MissingGenesisError

§

impl Error for bdk_chain::bitcoin::address::InvalidBase58PayloadLengthError

§

impl Error for InvalidLegacyPrefixError

§

impl Error for LegacyAddressTooLongError

§

impl Error for NetworkValidationError

§

impl Error for UnknownAddressTypeError

§

impl Error for UnknownHrpError

§

impl Error for IncorrectChecksumError

§

impl Error for TooShortError

§

impl Error for bdk_chain::bitcoin::base58::InvalidCharacterError

§

impl Error for CodeLengthError

§

impl Error for SegwitCodeLengthError

§

impl Error for InvalidWitnessVersionError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::DecodeError

§

impl Error for bdk_chain::bitcoin::bip32::InvalidBase58PayloadLengthError

§

impl Error for TxIndexOutOfRangeError

§

impl Error for bdk_chain::bitcoin::blockdata::locktime::absolute::ConversionError

§

impl Error for ParseHeightError

§

impl Error for ParseTimeError

§

impl Error for DisabledLockTimeError

§

impl Error for IncompatibleHeightError

§

impl Error for IncompatibleTimeError

§

impl Error for TimeOverflowError

§

impl Error for PushBytesError

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_version::TryFromError

§

impl Error for bdk_chain::bitcoin::blockdata::transaction::IndexOutOfBoundsError

§

impl Error for InputsIndexError

§

impl Error for OutputsIndexError

§

impl Error for ContainsPrefixError

§

impl Error for MissingPrefixError

§

impl Error for bdk_chain::bitcoin::io::Error

§

impl Error for InvalidAddressVersionError

§

impl Error for bdk_chain::bitcoin::key::InvalidBase58PayloadLengthError

§

impl Error for UncompressedPublicKeyError

§

impl Error for ParseNetworkError

§

impl Error for UnknownChainHashError

§

impl Error for CommandStringError

§

impl Error for ParseMagicError

§

impl Error for UnknownMagicError

§

impl Error for bdk_chain::bitcoin::parse::ParseIntError

§

impl Error for bdk_chain::bitcoin::secp256k1::hashes::FromSliceError

source§

impl Error for ReadError

source§

impl Error for bdk_chain::bitcoin::secp256k1::rand::Error

§

impl Error for bdk_chain::bitcoin::secp256k1::scalar::OutOfRangeError

§

impl Error for InvalidParityValue

§

impl Error for InvalidSighashTypeError

§

impl Error for NonStandardSighashTypeError

§

impl Error for PrevoutsKindError

§

impl Error for PrevoutsSizeError

§

impl Error for SighashTypeParseError

§

impl Error for SingleMissingOutputError

§

impl Error for InvalidLengthError

§

impl Error for InvalidCharError

§

impl Error for OddLengthStringError

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

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.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.28.0 · source§

impl Error for LayoutError

source§

impl Error for AllocError

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.20.0 · source§

impl Error for ParseCharError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.59.0 · source§

impl Error for TryFromCharError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.11.0 · source§

impl Error for core::fmt::Error

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for core::num::error::ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.66.0 · source§

impl Error for TryFromFloatSecsError

1.0.0 · source§

impl Error for JoinPathsError

1.56.0 · source§

impl Error for WriterPanicked

1.0.0 · source§

impl Error for std::io::error::Error

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

source§

impl Error for getrandom::error::Error

source§

impl Error for serde_json::error::Error

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

§

impl Error for AbsLockTimeError

§

impl Error for AnalysisError

§

impl Error for ConversionError

§

impl Error for DescriptorKeyParseError

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for FromSqlError

§

impl Error for InputError

§

impl Error for InputTooLargeError

§

impl Error for InvalidCharacterError

§

impl Error for KeyParseError

§

impl Error for LiftError

§

impl Error for MissingDigitsError

§

impl Error for OutOfRangeError

§

impl Error for OutputUpdateError

§

impl Error for ParseDenominationError

§

impl Error for ParseError

§

impl Error for ParseError

§

impl Error for ParseThresholdError

§

impl Error for PolicyError

§

impl Error for PossiblyConfusingDenominationError

§

impl Error for RelLockTimeError

§

impl Error for SighashError

§

impl Error for ThresholdError

§

impl Error for TooPreciseError

§

impl Error for UnknownDenominationError

§

impl Error for UtxoUpdateError

source§

impl<'a, K, V> Error for alloc::collections::btree::map::entry::OccupiedError<'a, K, V>
where +

Implementors§

1.0.0 · source§

impl !Error for &str

source§

impl Error for ApplyHeaderError

source§

impl Error for CalculateFeeError

§

impl Error for FromScriptError

§

impl Error for P2shError

§

impl Error for bdk_chain::bitcoin::address::ParseError

§

impl Error for ParseAmountError

§

impl Error for bdk_chain::bitcoin::base58::Error

§

impl Error for ParseAlphabetError

§

impl Error for bdk_chain::bitcoin::base64::DecodeError

§

impl Error for DecodeSliceError

§

impl Error for EncodeSliceError

§

impl Error for bdk_chain::bitcoin::bech32::DecodeError

§

impl Error for bdk_chain::bitcoin::bech32::EncodeError

§

impl Error for EncodeIoError

§

impl Error for CharError

§

impl Error for CheckedHrpstringError

§

impl Error for ChecksumError

§

impl Error for PaddingError

§

impl Error for SegwitHrpstringError

§

impl Error for UncheckedHrpstringError

§

impl Error for FromCharError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::gf32::TryFromError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::hrp::Error

§

impl Error for WitnessLengthError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::EncodeError

§

impl Error for bdk_chain::bitcoin::bip32::Error

§

impl Error for bdk_chain::bitcoin::bip152::Error

§

impl Error for bdk_chain::bitcoin::bip158::Error

§

impl Error for Bip34Error

§

impl Error for ValidationError

§

impl Error for bdk_chain::bitcoin::blockdata::script::Error

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_program::Error

§

impl Error for FromStrError

§

impl Error for TryFromInstructionError

§

impl Error for ParseOutPointError

§

impl Error for bdk_chain::bitcoin::consensus::encode::Error

§

impl Error for FromHexError

§

impl Error for bdk_chain::bitcoin::ecdsa::Error

§

impl Error for PrefixedHexError

§

impl Error for UnprefixedHexError

§

impl Error for bdk_chain::bitcoin::key::FromSliceError

§

impl Error for FromWifError

§

impl Error for ParseCompressedPublicKeyError

§

impl Error for ParsePublicKeyError

§

impl Error for MerkleBlockError

§

impl Error for bdk_chain::bitcoin::psbt::Error

§

impl Error for ExtractTxError

§

impl Error for GetKeyError

§

impl Error for bdk_chain::bitcoin::psbt::IndexOutOfBoundsError

§

impl Error for PsbtParseError

§

impl Error for SignError

§

impl Error for bdk_chain::bitcoin::secp256k1::Error

source§

impl Error for BernoulliError

source§

impl Error for WeightedError

§

impl Error for AnnexError

§

impl Error for P2wpkhError

§

impl Error for PrevoutsIndexError

§

impl Error for bdk_chain::bitcoin::sighash::TaprootError

§

impl Error for MessageSignatureError

§

impl Error for HiddenNodesError

§

impl Error for IncompleteBuilderError

§

impl Error for SigFromSliceError

§

impl Error for TaprootBuilderError

§

impl Error for bdk_chain::bitcoin::taproot::TaprootError

§

impl Error for HexToArrayError

§

impl Error for HexToBytesError

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 AlterCheckPointError

source§

impl Error for CannotConnectError

source§

impl Error for MissingGenesisError

§

impl Error for bdk_chain::bitcoin::address::InvalidBase58PayloadLengthError

§

impl Error for InvalidLegacyPrefixError

§

impl Error for LegacyAddressTooLongError

§

impl Error for NetworkValidationError

§

impl Error for UnknownAddressTypeError

§

impl Error for UnknownHrpError

§

impl Error for IncorrectChecksumError

§

impl Error for TooShortError

§

impl Error for bdk_chain::bitcoin::base58::InvalidCharacterError

§

impl Error for CodeLengthError

§

impl Error for SegwitCodeLengthError

§

impl Error for InvalidWitnessVersionError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::DecodeError

§

impl Error for bdk_chain::bitcoin::bip32::InvalidBase58PayloadLengthError

§

impl Error for TxIndexOutOfRangeError

§

impl Error for bdk_chain::bitcoin::blockdata::locktime::absolute::ConversionError

§

impl Error for ParseHeightError

§

impl Error for ParseTimeError

§

impl Error for DisabledLockTimeError

§

impl Error for IncompatibleHeightError

§

impl Error for IncompatibleTimeError

§

impl Error for TimeOverflowError

§

impl Error for PushBytesError

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_version::TryFromError

§

impl Error for bdk_chain::bitcoin::blockdata::transaction::IndexOutOfBoundsError

§

impl Error for InputsIndexError

§

impl Error for OutputsIndexError

§

impl Error for ContainsPrefixError

§

impl Error for MissingPrefixError

§

impl Error for bdk_chain::bitcoin::io::Error

§

impl Error for InvalidAddressVersionError

§

impl Error for bdk_chain::bitcoin::key::InvalidBase58PayloadLengthError

§

impl Error for UncompressedPublicKeyError

§

impl Error for ParseNetworkError

§

impl Error for UnknownChainHashError

§

impl Error for CommandStringError

§

impl Error for ParseMagicError

§

impl Error for UnknownMagicError

§

impl Error for bdk_chain::bitcoin::parse::ParseIntError

§

impl Error for bdk_chain::bitcoin::secp256k1::hashes::FromSliceError

source§

impl Error for ReadError

source§

impl Error for bdk_chain::bitcoin::secp256k1::rand::Error

§

impl Error for bdk_chain::bitcoin::secp256k1::scalar::OutOfRangeError

§

impl Error for InvalidParityValue

§

impl Error for InvalidSighashTypeError

§

impl Error for NonStandardSighashTypeError

§

impl Error for PrevoutsKindError

§

impl Error for PrevoutsSizeError

§

impl Error for SighashTypeParseError

§

impl Error for SingleMissingOutputError

§

impl Error for InvalidLengthError

§

impl Error for InvalidCharError

§

impl Error for OddLengthStringError

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

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.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.28.0 · source§

impl Error for LayoutError

source§

impl Error for AllocError

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.20.0 · source§

impl Error for ParseCharError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.59.0 · source§

impl Error for TryFromCharError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.11.0 · source§

impl Error for core::fmt::Error

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for core::num::error::ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.66.0 · source§

impl Error for TryFromFloatSecsError

1.0.0 · source§

impl Error for JoinPathsError

1.56.0 · source§

impl Error for WriterPanicked

1.0.0 · source§

impl Error for std::io::error::Error

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

source§

impl Error for getrandom::error::Error

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

§

impl Error for AbsLockTimeError

§

impl Error for AnalysisError

§

impl Error for ConversionError

§

impl Error for DescriptorKeyParseError

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for FromSqlError

§

impl Error for InputError

§

impl Error for InputTooLargeError

§

impl Error for InvalidCharacterError

§

impl Error for KeyParseError

§

impl Error for LiftError

§

impl Error for MissingDigitsError

§

impl Error for OutOfRangeError

§

impl Error for OutputUpdateError

§

impl Error for ParseDenominationError

§

impl Error for ParseError

§

impl Error for ParseError

§

impl Error for ParseThresholdError

§

impl Error for PolicyError

§

impl Error for PossiblyConfusingDenominationError

§

impl Error for RelLockTimeError

§

impl Error for SighashError

§

impl Error for ThresholdError

§

impl Error for TooPreciseError

§

impl Error for UnknownDenominationError

§

impl Error for UtxoUpdateError

source§

impl<'a, K, V> Error for alloc::collections::btree::map::entry::OccupiedError<'a, K, V>
where K: Debug + Ord, V: Debug,

source§

impl<'a, K, V> Error for std::collections::hash::map::OccupiedError<'a, K, V>
where K: Debug, @@ -311,4 +311,4 @@ dyn Error,

source§

impl<T> Error for ThinBox<T>
where T: Error + ?Sized,

1.52.0 · source§

impl<T> Error for Arc<T>
where T: Error + ?Sized,

1.0.0 · source§

impl<T> Error for SendError<T>

1.0.0 · source§

impl<T> Error for PoisonError<T>

1.0.0 · source§

impl<W> Error for IntoInnerError<W>
where - W: Send + Debug,

source§

impl<const N: usize> Error for GetManyMutError<N>

\ No newline at end of file + W: Send + Debug,
source§

impl<const N: usize> Error for GetManyMutError<N>

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Error.html index a262308ecd..7ba5d2738d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Error.html @@ -1,4 +1,4 @@ -Error in bdk_chain::bitcoin::hashes::serde::ser - Rust

Trait bdk_chain::bitcoin::hashes::serde::ser::Error

source ·
pub trait Error: Sized + Error {
+Error in bdk_chain::bitcoin::hashes::serde::ser - Rust

Trait bdk_chain::bitcoin::hashes::serde::ser::Error

source ·
pub trait Error: Sized + Error {
     // Required method
     fn custom<T>(msg: T) -> Self
        where T: Display;
@@ -30,5 +30,4 @@ itself if it contains invalid UTF-8 data.

} }

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Error for Error

source§

fn custom<T>(_msg: T) -> Error
where - T: Display,

source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Error
where - T: Display,

Implementors§

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

\ No newline at end of file + T: Display,

Implementors§

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serialize.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serialize.html index 9f1b72272b..2581bfdef5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serialize.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serialize.html @@ -1,4 +1,4 @@ -Serialize in bdk_chain::bitcoin::hashes::serde::ser - Rust

Trait bdk_chain::bitcoin::hashes::serde::ser::Serialize

source ·
pub trait Serialize {
+Serialize in bdk_chain::bitcoin::hashes::serde::ser - Rust

Trait bdk_chain::bitcoin::hashes::serde::ser::Serialize

source ·
pub trait Serialize {
     // Required method
     fn serialize<S>(
         &self,
@@ -57,324 +57,308 @@ information about how to implement this method.

&self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,
source§

impl Serialize for Value

source§

impl Serialize for bool

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for bool

source§

impl Serialize for char

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for char

source§

impl Serialize for f32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for f32

source§

impl Serialize for f64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for f64

source§

impl Serialize for i8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i8

source§

impl Serialize for i16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i16

source§

impl Serialize for i32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i32

source§

impl Serialize for i64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i64

source§

impl Serialize for i128

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i128

source§

impl Serialize for isize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for isize

source§

impl Serialize for str

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for str

source§

impl Serialize for u8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u8

source§

impl Serialize for u16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u16

source§

impl Serialize for u32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u32

source§

impl Serialize for u64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u64

source§

impl Serialize for u128

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u128

source§

impl Serialize for ()

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for ()

source§

impl Serialize for usize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for usize

source§

impl Serialize for CString

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for CString

source§

impl Serialize for CStr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for CStr

source§

impl Serialize for Ipv4Addr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Ipv4Addr

source§

impl Serialize for Ipv6Addr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Ipv6Addr

source§

impl Serialize for SocketAddrV4

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for SocketAddrV4

source§

impl Serialize for SocketAddrV6

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for SocketAddrV6

source§

impl Serialize for NonZero<i8>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i8>

source§

impl Serialize for NonZero<i16>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i16>

source§

impl Serialize for NonZero<i32>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i32>

source§

impl Serialize for NonZero<i64>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i64>

source§

impl Serialize for NonZero<i128>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i128>

source§

impl Serialize for NonZero<isize>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<isize>

source§

impl Serialize for NonZero<u8>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u8>

source§

impl Serialize for NonZero<u16>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u16>

source§

impl Serialize for NonZero<u32>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u32>

source§

impl Serialize for NonZero<u64>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u64>

source§

impl Serialize for NonZero<u128>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u128>

source§

impl Serialize for NonZero<usize>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<usize>

source§

impl Serialize for AtomicBool

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicBool

source§

impl Serialize for AtomicI8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI8

source§

impl Serialize for AtomicI16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI16

source§

impl Serialize for AtomicI32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI32

source§

impl Serialize for AtomicI64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI64

source§

impl Serialize for AtomicIsize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicIsize

source§

impl Serialize for AtomicU8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU8

source§

impl Serialize for AtomicU16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU16

source§

impl Serialize for AtomicU32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU32

source§

impl Serialize for AtomicU64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU64

source§

impl Serialize for AtomicUsize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicUsize

source§

impl Serialize for Duration

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Duration

source§

impl Serialize for OsStr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for OsStr

source§

impl Serialize for OsString

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for OsString

source§

impl Serialize for Path

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Path

source§

impl Serialize for PathBuf

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for PathBuf

source§

impl Serialize for SystemTime

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for SystemTime

§

impl Serialize for DescriptorPublicKey

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Map<String, Value>

source§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Number

source§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for RawValue

source§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl Serialize for DescriptorPublicKey

§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl Serialize for Hash

§

impl Serialize for Hash

§

fn serialize<S>( &self, s: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl<'a> Serialize for Arguments<'a>

source§

impl<'a> Serialize for Arguments<'a>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<'a, T> Serialize for Cow<'a, T>
where - T: Serialize + ToOwned + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<'a, T> Serialize for &'a T
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<'a, T> Serialize for &'a mut T
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

§

impl<'de, Pk> Serialize for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn serialize<S>( + Pk: MiniscriptKey,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl<'de, Pk> Serialize for Policy<Pk>
where - Pk: MiniscriptKey,

§

impl<'de, Pk> Serialize for Policy<Pk>
where + Pk: MiniscriptKey,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl<'de, Pk> Serialize for Policy<Pk>
where - Pk: MiniscriptKey,

§

impl<'de, Pk> Serialize for Policy<Pk>
where + Pk: MiniscriptKey,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

§

impl<'de, Pk, Ctx> Serialize for Miniscript<Pk, Ctx>
where Pk: MiniscriptKey, - Ctx: ScriptContext,

§

fn serialize<S>( + Ctx: ScriptContext,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for Range<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for RangeFrom<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for RangeInclusive<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for RangeTo<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<K, V> Serialize for BTreeMap<K, V>
where K: Serialize, - V: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<K, V, H> Serialize for HashMap<K, V, H>
where K: Serialize, - V: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T0, T1> Serialize for (T0, T1)
where T0: Serialize, - T1: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T0, T1, T2> Serialize for (T0, T1, T2)
where T0: Serialize, T1: Serialize, - T2: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -382,7 +366,7 @@ information about how to implement this method.

T0: Serialize, T1: Serialize, T2: Serialize, - T3: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -391,7 +375,7 @@ information about how to implement this method.

T1: Serialize, T2: Serialize, T3: Serialize, - T4: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -401,7 +385,7 @@ information about how to implement this method.

T2: Serialize, T3: Serialize, T4: Serialize, - T5: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -412,7 +396,7 @@ information about how to implement this method.

T3: Serialize, T4: Serialize, T5: Serialize, - T6: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -424,7 +408,7 @@ information about how to implement this method.

T4: Serialize, T5: Serialize, T6: Serialize, - T7: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -437,7 +421,7 @@ information about how to implement this method.

T5: Serialize, T6: Serialize, T7: Serialize, - T8: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -451,7 +435,7 @@ information about how to implement this method.

T6: Serialize, T7: Serialize, T8: Serialize, - T9: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -466,7 +450,7 @@ information about how to implement this method.

T7: Serialize, T8: Serialize, T9: Serialize, - T10: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -482,7 +466,7 @@ information about how to implement this method.

T8: Serialize, T9: Serialize, T10: Serialize, - T11: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -499,7 +483,7 @@ information about how to implement this method.

T9: Serialize, T10: Serialize, T11: Serialize, - T12: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -517,7 +501,7 @@ information about how to implement this method.

T10: Serialize, T11: Serialize, T12: Serialize, - T13: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -536,7 +520,7 @@ information about how to implement this method.

T11: Serialize, T12: Serialize, T13: Serialize, - T14: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -556,216 +540,216 @@ information about how to implement this method.

T12: Serialize, T13: Serialize, T14: Serialize, - T15: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Bound<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Option<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl<T> Serialize for [T; 0]

source§

impl<T> Serialize for [T; 0]

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 1]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 2]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 3]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 4]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 5]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 6]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 7]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 8]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 9]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 10]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 11]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 12]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 13]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 14]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 15]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 16]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 17]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 18]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 19]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 20]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 21]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 22]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 23]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 24]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 25]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 26]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 27]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 28]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 29]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 30]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 31]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 32]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for (T,)
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Box<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for BinaryHeap<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for BTreeSet<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for LinkedList<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for VecDeque<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -775,13 +759,13 @@ information about how to implement this method.

the contents of the Rc each time the Rc is referenced within the data structure. Serialization will not attempt to deduplicate these repeated data.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Weak<T>
where T: Serialize + ?Sized,

This impl requires the "rc" Cargo feature of Serde.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -791,64 +775,64 @@ repeated data.

the contents of the Arc each time the Arc is referenced within the data structure. Serialization will not attempt to deduplicate these repeated data.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Weak<T>
where T: Serialize + ?Sized,

This impl requires the "rc" Cargo feature of Serde.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Cell<T>
where - T: Serialize + Copy,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for RefCell<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Reverse<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for PhantomData<T>
where - T: ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Saturating<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Wrapping<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Mutex<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for RwLock<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T, E> Serialize for Result<T, E>
where T: Serialize, - E: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T, H> Serialize for HashSet<T, H>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -863,4 +847,4 @@ repeated data.

Subtype: Copy + From<u8> + Into<u8> + Serialize,

source§

impl<T> Serialize for Vec<T>
where T: Serialize,

§

impl<T> Serialize for Hmac<T>
where T: Hash + Serialize,

§

impl<T> Serialize for bdk_chain::bitcoin::hashes::sha256t::Hash<T>
where - T: Tag,

\ No newline at end of file + T: Tag, \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serializer.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serializer.html index 151b989ad5..f20cb3426f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serializer.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.Serializer.html @@ -1,4 +1,4 @@ -Serializer in bdk_chain::bitcoin::hashes::serde::ser - Rust

Trait bdk_chain::bitcoin::hashes::serde::ser::Serializer

source ·
pub trait Serializer: Sized {
+Serializer in bdk_chain::bitcoin::hashes::serde::ser - Rust

Trait bdk_chain::bitcoin::hashes::serde::ser::Serializer

source ·
pub trait Serializer: Sized {
     type Ok;
     type Error: Error;
     type SerializeSeq: SerializeSeq<Ok = Self::Ok, Error = Self::Error>;
@@ -897,55 +897,7 @@ support one. Note that modifying this method to change a format from
 human-readable to compact or vice versa should be regarded as a breaking
 change, as a value serialized in human-readable mode is not required to
 deserialize from the same data in compact mode.

-

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Serializer for Serializer

§

type Ok = Value

§

type Error = Error

§

type SerializeSeq = SerializeVec

§

type SerializeTuple = SerializeVec

§

type SerializeTupleStruct = SerializeVec

§

type SerializeTupleVariant = SerializeTupleVariant

§

type SerializeMap = SerializeMap

§

type SerializeStruct = SerializeMap

§

type SerializeStructVariant = SerializeStructVariant

source§

fn serialize_bool(self, value: bool) -> Result<Value, Error>

source§

fn serialize_i8(self, value: i8) -> Result<Value, Error>

source§

fn serialize_i16(self, value: i16) -> Result<Value, Error>

source§

fn serialize_i32(self, value: i32) -> Result<Value, Error>

source§

fn serialize_i64(self, value: i64) -> Result<Value, Error>

source§

fn serialize_i128(self, value: i128) -> Result<Value, Error>

source§

fn serialize_u8(self, value: u8) -> Result<Value, Error>

source§

fn serialize_u16(self, value: u16) -> Result<Value, Error>

source§

fn serialize_u32(self, value: u32) -> Result<Value, Error>

source§

fn serialize_u64(self, value: u64) -> Result<Value, Error>

source§

fn serialize_u128(self, value: u128) -> Result<Value, Error>

source§

fn serialize_f32(self, float: f32) -> Result<Value, Error>

source§

fn serialize_f64(self, float: f64) -> Result<Value, Error>

source§

fn serialize_char(self, value: char) -> Result<Value, Error>

source§

fn serialize_str(self, value: &str) -> Result<Value, Error>

source§

fn serialize_bytes(self, value: &[u8]) -> Result<Value, Error>

source§

fn serialize_unit(self) -> Result<Value, Error>

source§

fn serialize_unit_struct(self, _name: &'static str) -> Result<Value, Error>

source§

fn serialize_unit_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str -) -> Result<Value, Error>

source§

fn serialize_newtype_struct<T>( - self, - _name: &'static str, - value: &T -) -> Result<Value, Error>
where - T: Serialize + ?Sized,

source§

fn serialize_newtype_variant<T>( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - value: &T -) -> Result<Value, Error>
where - T: Serialize + ?Sized,

source§

fn serialize_none(self) -> Result<Value, Error>

source§

fn serialize_some<T>(self, value: &T) -> Result<Value, Error>
where - T: Serialize + ?Sized,

source§

fn serialize_seq( - self, - len: Option<usize> -) -> Result<<Serializer as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( - self, - len: usize -) -> Result<<Serializer as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( - self, - _name: &'static str, - len: usize -) -> Result<<Serializer as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - len: usize -) -> Result<<Serializer as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( - self, - _len: Option<usize> -) -> Result<<Serializer as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( - self, - name: &'static str, - len: usize -) -> Result<<Serializer as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - _len: usize -) -> Result<<Serializer as Serializer>::SerializeStructVariant, Error>

source§

fn collect_str<T>(self, value: &T) -> Result<Value, Error>
where - T: Display + ?Sized,

source§

impl<'a> Serializer for &mut Formatter<'a>

+

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> Serializer for &mut Formatter<'a>

ⓘ
use serde::ser::Serialize;
 use serde_derive::Serialize;
 use std::fmt::{self, Display};
@@ -962,103 +914,52 @@ deserialize from the same data in compact mode.

self.serialize(f) } }
-
§

type Ok = ()

§

type Error = Error

§

type SerializeSeq = Impossible<(), Error>

§

type SerializeTuple = Impossible<(), Error>

§

type SerializeTupleStruct = Impossible<(), Error>

§

type SerializeTupleVariant = Impossible<(), Error>

§

type SerializeMap = Impossible<(), Error>

§

type SerializeStruct = Impossible<(), Error>

§

type SerializeStructVariant = Impossible<(), Error>

source§

fn serialize_bool(self, v: bool) -> Result<(), Error>

source§

fn serialize_i8(self, v: i8) -> Result<(), Error>

source§

fn serialize_i16(self, v: i16) -> Result<(), Error>

source§

fn serialize_i32(self, v: i32) -> Result<(), Error>

source§

fn serialize_i64(self, v: i64) -> Result<(), Error>

source§

fn serialize_i128(self, v: i128) -> Result<(), Error>

source§

fn serialize_u8(self, v: u8) -> Result<(), Error>

source§

fn serialize_u16(self, v: u16) -> Result<(), Error>

source§

fn serialize_u32(self, v: u32) -> Result<(), Error>

source§

fn serialize_u64(self, v: u64) -> Result<(), Error>

source§

fn serialize_u128(self, v: u128) -> Result<(), Error>

source§

fn serialize_f32(self, v: f32) -> Result<(), Error>

source§

fn serialize_f64(self, v: f64) -> Result<(), Error>

source§

fn serialize_char(self, v: char) -> Result<(), Error>

source§

fn serialize_str(self, v: &str) -> Result<(), Error>

source§

fn serialize_unit_struct(self, v: &'static str) -> Result<(), Error>

source§

fn serialize_unit_variant( self, _name: &'static str, _variant_index: u32, variant: &'static str -) -> Result<(), Error>

source§

fn serialize_newtype_struct<T>( +) -> Result<(), Error>

source§

fn serialize_newtype_struct<T>( self, _name: &'static str, value: &T ) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_bytes(self, _v: &[u8]) -> Result<(), Error>

source§

fn serialize_none(self) -> Result<(), Error>

source§

fn serialize_some<T>(self, _value: &T) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_unit(self) -> Result<(), Error>

source§

fn serialize_newtype_variant<T>( + T: Serialize + ?Sized,

source§

fn serialize_bytes(self, _v: &[u8]) -> Result<(), Error>

source§

fn serialize_none(self) -> Result<(), Error>

source§

fn serialize_some<T>(self, _value: &T) -> Result<(), Error>
where + T: Serialize + ?Sized,

source§

fn serialize_unit(self) -> Result<(), Error>

source§

fn serialize_newtype_variant<T>( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _value: &T ) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_seq( + T: Serialize + ?Sized,

source§

fn serialize_seq( self, _len: Option<usize> -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( self, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( self, _name: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( self, _len: Option<usize> -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( self, _name: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStructVariant, Error>

source§

fn collect_str<T>(self, value: &T) -> Result<(), Error>
where - T: Display + ?Sized,

source§

impl<'a, W, F> Serializer for &'a mut Serializer<W, F>
where - W: Write, - F: Formatter,

source§

fn serialize_newtype_struct<T>( - self, - _name: &'static str, - value: &T -) -> Result<(), Error>
where - T: Serialize + ?Sized,

Serialize newtypes without an object wrapper.

-
§

type Ok = ()

§

type Error = Error

§

type SerializeSeq = Compound<'a, W, F>

§

type SerializeTuple = Compound<'a, W, F>

§

type SerializeTupleStruct = Compound<'a, W, F>

§

type SerializeTupleVariant = Compound<'a, W, F>

§

type SerializeMap = Compound<'a, W, F>

§

type SerializeStruct = Compound<'a, W, F>

§

type SerializeStructVariant = Compound<'a, W, F>

source§

fn serialize_bool(self, value: bool) -> Result<(), Error>

source§

fn serialize_i8(self, value: i8) -> Result<(), Error>

source§

fn serialize_i16(self, value: i16) -> Result<(), Error>

source§

fn serialize_i32(self, value: i32) -> Result<(), Error>

source§

fn serialize_i64(self, value: i64) -> Result<(), Error>

source§

fn serialize_i128(self, value: i128) -> Result<(), Error>

source§

fn serialize_u8(self, value: u8) -> Result<(), Error>

source§

fn serialize_u16(self, value: u16) -> Result<(), Error>

source§

fn serialize_u32(self, value: u32) -> Result<(), Error>

source§

fn serialize_u64(self, value: u64) -> Result<(), Error>

source§

fn serialize_u128(self, value: u128) -> Result<(), Error>

source§

fn serialize_f32(self, value: f32) -> Result<(), Error>

source§

fn serialize_f64(self, value: f64) -> Result<(), Error>

source§

fn serialize_char(self, value: char) -> Result<(), Error>

source§

fn serialize_str(self, value: &str) -> Result<(), Error>

source§

fn serialize_bytes(self, value: &[u8]) -> Result<(), Error>

source§

fn serialize_unit(self) -> Result<(), Error>

source§

fn serialize_unit_struct(self, _name: &'static str) -> Result<(), Error>

source§

fn serialize_unit_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str -) -> Result<(), Error>

source§

fn serialize_newtype_variant<T>( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - value: &T -) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_none(self) -> Result<(), Error>

source§

fn serialize_some<T>(self, value: &T) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_seq( - self, - len: Option<usize> -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( - self, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( - self, - _name: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( - self, - len: Option<usize> -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( - self, - name: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeStructVariant, Error>

source§

fn collect_str<T>(self, value: &T) -> Result<(), Error>
where - T: Display + ?Sized,

Implementors§

\ No newline at end of file +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStructVariant, Error>
source§

fn collect_str<T>(self, value: &T) -> Result<(), Error>
where + T: Display + ?Sized,

Implementors§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.StdError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.StdError.html index 91323e42d1..52690721f0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.StdError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/ser/trait.StdError.html @@ -300,7 +300,7 @@ dyn 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.0.0 · source§

impl !Error for &str

source§

impl Error for ApplyHeaderError

source§

impl Error for CalculateFeeError

§

impl Error for FromScriptError

§

impl Error for P2shError

§

impl Error for bdk_chain::bitcoin::address::ParseError

§

impl Error for ParseAmountError

§

impl Error for bdk_chain::bitcoin::base58::Error

§

impl Error for ParseAlphabetError

§

impl Error for bdk_chain::bitcoin::base64::DecodeError

§

impl Error for DecodeSliceError

§

impl Error for EncodeSliceError

§

impl Error for bdk_chain::bitcoin::bech32::DecodeError

§

impl Error for bdk_chain::bitcoin::bech32::EncodeError

§

impl Error for EncodeIoError

§

impl Error for CharError

§

impl Error for CheckedHrpstringError

§

impl Error for ChecksumError

§

impl Error for PaddingError

§

impl Error for SegwitHrpstringError

§

impl Error for UncheckedHrpstringError

§

impl Error for FromCharError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::gf32::TryFromError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::hrp::Error

§

impl Error for WitnessLengthError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::EncodeError

§

impl Error for bdk_chain::bitcoin::bip32::Error

§

impl Error for bdk_chain::bitcoin::bip152::Error

§

impl Error for bdk_chain::bitcoin::bip158::Error

§

impl Error for Bip34Error

§

impl Error for ValidationError

§

impl Error for bdk_chain::bitcoin::blockdata::script::Error

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_program::Error

§

impl Error for FromStrError

§

impl Error for TryFromInstructionError

§

impl Error for ParseOutPointError

§

impl Error for bdk_chain::bitcoin::consensus::encode::Error

§

impl Error for FromHexError

§

impl Error for bdk_chain::bitcoin::ecdsa::Error

§

impl Error for PrefixedHexError

§

impl Error for UnprefixedHexError

§

impl Error for bdk_chain::bitcoin::key::FromSliceError

§

impl Error for FromWifError

§

impl Error for ParseCompressedPublicKeyError

§

impl Error for ParsePublicKeyError

§

impl Error for MerkleBlockError

§

impl Error for bdk_chain::bitcoin::psbt::Error

§

impl Error for ExtractTxError

§

impl Error for GetKeyError

§

impl Error for bdk_chain::bitcoin::psbt::IndexOutOfBoundsError

§

impl Error for PsbtParseError

§

impl Error for SignError

§

impl Error for bdk_chain::bitcoin::secp256k1::Error

source§

impl Error for BernoulliError

source§

impl Error for WeightedError

§

impl Error for AnnexError

§

impl Error for P2wpkhError

§

impl Error for PrevoutsIndexError

§

impl Error for bdk_chain::bitcoin::sighash::TaprootError

§

impl Error for MessageSignatureError

§

impl Error for HiddenNodesError

§

impl Error for IncompleteBuilderError

§

impl Error for SigFromSliceError

§

impl Error for TaprootBuilderError

§

impl Error for bdk_chain::bitcoin::taproot::TaprootError

§

impl Error for HexToArrayError

§

impl Error for HexToBytesError

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 AlterCheckPointError

source§

impl Error for CannotConnectError

source§

impl Error for MissingGenesisError

§

impl Error for bdk_chain::bitcoin::address::InvalidBase58PayloadLengthError

§

impl Error for InvalidLegacyPrefixError

§

impl Error for LegacyAddressTooLongError

§

impl Error for NetworkValidationError

§

impl Error for UnknownAddressTypeError

§

impl Error for UnknownHrpError

§

impl Error for IncorrectChecksumError

§

impl Error for TooShortError

§

impl Error for bdk_chain::bitcoin::base58::InvalidCharacterError

§

impl Error for CodeLengthError

§

impl Error for SegwitCodeLengthError

§

impl Error for InvalidWitnessVersionError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::DecodeError

§

impl Error for bdk_chain::bitcoin::bip32::InvalidBase58PayloadLengthError

§

impl Error for TxIndexOutOfRangeError

§

impl Error for bdk_chain::bitcoin::blockdata::locktime::absolute::ConversionError

§

impl Error for ParseHeightError

§

impl Error for ParseTimeError

§

impl Error for DisabledLockTimeError

§

impl Error for IncompatibleHeightError

§

impl Error for IncompatibleTimeError

§

impl Error for TimeOverflowError

§

impl Error for PushBytesError

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_version::TryFromError

§

impl Error for bdk_chain::bitcoin::blockdata::transaction::IndexOutOfBoundsError

§

impl Error for InputsIndexError

§

impl Error for OutputsIndexError

§

impl Error for ContainsPrefixError

§

impl Error for MissingPrefixError

§

impl Error for bdk_chain::bitcoin::io::Error

§

impl Error for InvalidAddressVersionError

§

impl Error for bdk_chain::bitcoin::key::InvalidBase58PayloadLengthError

§

impl Error for UncompressedPublicKeyError

§

impl Error for ParseNetworkError

§

impl Error for UnknownChainHashError

§

impl Error for CommandStringError

§

impl Error for ParseMagicError

§

impl Error for UnknownMagicError

§

impl Error for bdk_chain::bitcoin::parse::ParseIntError

§

impl Error for bdk_chain::bitcoin::secp256k1::hashes::FromSliceError

source§

impl Error for ReadError

source§

impl Error for bdk_chain::bitcoin::secp256k1::rand::Error

§

impl Error for bdk_chain::bitcoin::secp256k1::scalar::OutOfRangeError

§

impl Error for InvalidParityValue

§

impl Error for InvalidSighashTypeError

§

impl Error for NonStandardSighashTypeError

§

impl Error for PrevoutsKindError

§

impl Error for PrevoutsSizeError

§

impl Error for SighashTypeParseError

§

impl Error for SingleMissingOutputError

§

impl Error for InvalidLengthError

§

impl Error for InvalidCharError

§

impl Error for OddLengthStringError

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

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.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.28.0 · source§

impl Error for LayoutError

source§

impl Error for AllocError

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.20.0 · source§

impl Error for ParseCharError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.59.0 · source§

impl Error for TryFromCharError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.11.0 · source§

impl Error for core::fmt::Error

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for core::num::error::ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.66.0 · source§

impl Error for TryFromFloatSecsError

1.0.0 · source§

impl Error for JoinPathsError

1.56.0 · source§

impl Error for WriterPanicked

1.0.0 · source§

impl Error for std::io::error::Error

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

source§

impl Error for getrandom::error::Error

source§

impl Error for serde_json::error::Error

§

impl Error for AbsLockTimeError

§

impl Error for AnalysisError

§

impl Error for ConversionError

§

impl Error for DescriptorKeyParseError

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for FromSqlError

§

impl Error for InputError

§

impl Error for InputTooLargeError

§

impl Error for InvalidCharacterError

§

impl Error for KeyParseError

§

impl Error for LiftError

§

impl Error for MissingDigitsError

§

impl Error for OutOfRangeError

§

impl Error for OutputUpdateError

§

impl Error for ParseDenominationError

§

impl Error for ParseError

§

impl Error for ParseError

§

impl Error for ParseThresholdError

§

impl Error for PolicyError

§

impl Error for PossiblyConfusingDenominationError

§

impl Error for RelLockTimeError

§

impl Error for SighashError

§

impl Error for ThresholdError

§

impl Error for TooPreciseError

§

impl Error for UnknownDenominationError

§

impl Error for UtxoUpdateError

source§

impl<'a, K, V> Error for alloc::collections::btree::map::entry::OccupiedError<'a, K, V>
where +

Implementors§

1.0.0 · source§

impl !Error for &str

source§

impl Error for ApplyHeaderError

source§

impl Error for CalculateFeeError

§

impl Error for FromScriptError

§

impl Error for P2shError

§

impl Error for bdk_chain::bitcoin::address::ParseError

§

impl Error for ParseAmountError

§

impl Error for bdk_chain::bitcoin::base58::Error

§

impl Error for ParseAlphabetError

§

impl Error for bdk_chain::bitcoin::base64::DecodeError

§

impl Error for DecodeSliceError

§

impl Error for EncodeSliceError

§

impl Error for bdk_chain::bitcoin::bech32::DecodeError

§

impl Error for bdk_chain::bitcoin::bech32::EncodeError

§

impl Error for EncodeIoError

§

impl Error for CharError

§

impl Error for CheckedHrpstringError

§

impl Error for ChecksumError

§

impl Error for PaddingError

§

impl Error for SegwitHrpstringError

§

impl Error for UncheckedHrpstringError

§

impl Error for FromCharError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::gf32::TryFromError

§

impl Error for bdk_chain::bitcoin::bech32::primitives::hrp::Error

§

impl Error for WitnessLengthError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::EncodeError

§

impl Error for bdk_chain::bitcoin::bip32::Error

§

impl Error for bdk_chain::bitcoin::bip152::Error

§

impl Error for bdk_chain::bitcoin::bip158::Error

§

impl Error for Bip34Error

§

impl Error for ValidationError

§

impl Error for bdk_chain::bitcoin::blockdata::script::Error

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_program::Error

§

impl Error for FromStrError

§

impl Error for TryFromInstructionError

§

impl Error for ParseOutPointError

§

impl Error for bdk_chain::bitcoin::consensus::encode::Error

§

impl Error for FromHexError

§

impl Error for bdk_chain::bitcoin::ecdsa::Error

§

impl Error for PrefixedHexError

§

impl Error for UnprefixedHexError

§

impl Error for bdk_chain::bitcoin::key::FromSliceError

§

impl Error for FromWifError

§

impl Error for ParseCompressedPublicKeyError

§

impl Error for ParsePublicKeyError

§

impl Error for MerkleBlockError

§

impl Error for bdk_chain::bitcoin::psbt::Error

§

impl Error for ExtractTxError

§

impl Error for GetKeyError

§

impl Error for bdk_chain::bitcoin::psbt::IndexOutOfBoundsError

§

impl Error for PsbtParseError

§

impl Error for SignError

§

impl Error for bdk_chain::bitcoin::secp256k1::Error

source§

impl Error for BernoulliError

source§

impl Error for WeightedError

§

impl Error for AnnexError

§

impl Error for P2wpkhError

§

impl Error for PrevoutsIndexError

§

impl Error for bdk_chain::bitcoin::sighash::TaprootError

§

impl Error for MessageSignatureError

§

impl Error for HiddenNodesError

§

impl Error for IncompleteBuilderError

§

impl Error for SigFromSliceError

§

impl Error for TaprootBuilderError

§

impl Error for bdk_chain::bitcoin::taproot::TaprootError

§

impl Error for HexToArrayError

§

impl Error for HexToBytesError

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 AlterCheckPointError

source§

impl Error for CannotConnectError

source§

impl Error for MissingGenesisError

§

impl Error for bdk_chain::bitcoin::address::InvalidBase58PayloadLengthError

§

impl Error for InvalidLegacyPrefixError

§

impl Error for LegacyAddressTooLongError

§

impl Error for NetworkValidationError

§

impl Error for UnknownAddressTypeError

§

impl Error for UnknownHrpError

§

impl Error for IncorrectChecksumError

§

impl Error for TooShortError

§

impl Error for bdk_chain::bitcoin::base58::InvalidCharacterError

§

impl Error for CodeLengthError

§

impl Error for SegwitCodeLengthError

§

impl Error for InvalidWitnessVersionError

§

impl Error for bdk_chain::bitcoin::bech32::segwit::DecodeError

§

impl Error for bdk_chain::bitcoin::bip32::InvalidBase58PayloadLengthError

§

impl Error for TxIndexOutOfRangeError

§

impl Error for bdk_chain::bitcoin::blockdata::locktime::absolute::ConversionError

§

impl Error for ParseHeightError

§

impl Error for ParseTimeError

§

impl Error for DisabledLockTimeError

§

impl Error for IncompatibleHeightError

§

impl Error for IncompatibleTimeError

§

impl Error for TimeOverflowError

§

impl Error for PushBytesError

§

impl Error for bdk_chain::bitcoin::blockdata::script::witness_version::TryFromError

§

impl Error for bdk_chain::bitcoin::blockdata::transaction::IndexOutOfBoundsError

§

impl Error for InputsIndexError

§

impl Error for OutputsIndexError

§

impl Error for ContainsPrefixError

§

impl Error for MissingPrefixError

§

impl Error for bdk_chain::bitcoin::io::Error

§

impl Error for InvalidAddressVersionError

§

impl Error for bdk_chain::bitcoin::key::InvalidBase58PayloadLengthError

§

impl Error for UncompressedPublicKeyError

§

impl Error for ParseNetworkError

§

impl Error for UnknownChainHashError

§

impl Error for CommandStringError

§

impl Error for ParseMagicError

§

impl Error for UnknownMagicError

§

impl Error for bdk_chain::bitcoin::parse::ParseIntError

§

impl Error for bdk_chain::bitcoin::secp256k1::hashes::FromSliceError

source§

impl Error for ReadError

source§

impl Error for bdk_chain::bitcoin::secp256k1::rand::Error

§

impl Error for bdk_chain::bitcoin::secp256k1::scalar::OutOfRangeError

§

impl Error for InvalidParityValue

§

impl Error for InvalidSighashTypeError

§

impl Error for NonStandardSighashTypeError

§

impl Error for PrevoutsKindError

§

impl Error for PrevoutsSizeError

§

impl Error for SighashTypeParseError

§

impl Error for SingleMissingOutputError

§

impl Error for InvalidLengthError

§

impl Error for InvalidCharError

§

impl Error for OddLengthStringError

source§

impl Error for bdk_chain::bitcoin::hashes::serde::de::value::Error

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

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.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.28.0 · source§

impl Error for LayoutError

source§

impl Error for AllocError

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.20.0 · source§

impl Error for ParseCharError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.59.0 · source§

impl Error for TryFromCharError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.11.0 · source§

impl Error for core::fmt::Error

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for core::num::error::ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.66.0 · source§

impl Error for TryFromFloatSecsError

1.0.0 · source§

impl Error for JoinPathsError

1.56.0 · source§

impl Error for WriterPanicked

1.0.0 · source§

impl Error for std::io::error::Error

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

source§

impl Error for getrandom::error::Error

§

impl Error for AbsLockTimeError

§

impl Error for AnalysisError

§

impl Error for ConversionError

§

impl Error for DescriptorKeyParseError

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for Error

§

impl Error for FromSqlError

§

impl Error for InputError

§

impl Error for InputTooLargeError

§

impl Error for InvalidCharacterError

§

impl Error for KeyParseError

§

impl Error for LiftError

§

impl Error for MissingDigitsError

§

impl Error for OutOfRangeError

§

impl Error for OutputUpdateError

§

impl Error for ParseDenominationError

§

impl Error for ParseError

§

impl Error for ParseError

§

impl Error for ParseThresholdError

§

impl Error for PolicyError

§

impl Error for PossiblyConfusingDenominationError

§

impl Error for RelLockTimeError

§

impl Error for SighashError

§

impl Error for ThresholdError

§

impl Error for TooPreciseError

§

impl Error for UnknownDenominationError

§

impl Error for UtxoUpdateError

source§

impl<'a, K, V> Error for alloc::collections::btree::map::entry::OccupiedError<'a, K, V>
where K: Debug + Ord, V: Debug,

source§

impl<'a, K, V> Error for std::collections::hash::map::OccupiedError<'a, K, V>
where K: Debug, @@ -311,4 +311,4 @@ dyn Error,

source§

impl<T> Error for ThinBox<T>
where T: Error + ?Sized,

1.52.0 · source§

impl<T> Error for Arc<T>
where T: Error + ?Sized,

1.0.0 · source§

impl<T> Error for SendError<T>

1.0.0 · source§

impl<T> Error for PoisonError<T>

1.0.0 · source§

impl<W> Error for IntoInnerError<W>
where - W: Send + Debug,

source§

impl<const N: usize> Error for GetManyMutError<N>

\ No newline at end of file + W: Send + Debug,
source§

impl<const N: usize> Error for GetManyMutError<N>

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserialize.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserialize.html index 56dd14ea28..aee3d6a1f4 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserialize.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserialize.html @@ -1,4 +1,4 @@ -Deserialize in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Deserialize

source ·
pub trait Deserialize<'de>: Sized {
+Deserialize in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Deserialize

source ·
pub trait Deserialize<'de>: Sized {
     // Required method
     fn deserialize<D>(
         deserializer: D
@@ -36,298 +36,282 @@ manual for more information about how to implement this method.

D: Deserializer<'de>,
source§

impl<'de> Deserialize<'de> for SocketAddr

source§

fn deserialize<D>( deserializer: D ) -> Result<SocketAddr, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D>( - deserializer: D -) -> Result<Value, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for bool

source§

impl<'de> Deserialize<'de> for bool

source§

fn deserialize<D>( deserializer: D ) -> Result<bool, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for char

source§

impl<'de> Deserialize<'de> for char

source§

fn deserialize<D>( deserializer: D ) -> Result<char, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f32

source§

impl<'de> Deserialize<'de> for f32

source§

fn deserialize<D>( deserializer: D ) -> Result<f32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f64

source§

impl<'de> Deserialize<'de> for f64

source§

fn deserialize<D>( deserializer: D ) -> Result<f64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i8

source§

impl<'de> Deserialize<'de> for i8

source§

fn deserialize<D>( deserializer: D ) -> Result<i8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i16

source§

impl<'de> Deserialize<'de> for i16

source§

fn deserialize<D>( deserializer: D ) -> Result<i16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i32

source§

impl<'de> Deserialize<'de> for i32

source§

fn deserialize<D>( deserializer: D ) -> Result<i32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i64

source§

impl<'de> Deserialize<'de> for i64

source§

fn deserialize<D>( deserializer: D ) -> Result<i64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i128

source§

impl<'de> Deserialize<'de> for i128

source§

fn deserialize<D>( deserializer: D ) -> Result<i128, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for isize

source§

impl<'de> Deserialize<'de> for isize

source§

fn deserialize<D>( deserializer: D ) -> Result<isize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u8

source§

impl<'de> Deserialize<'de> for u8

source§

fn deserialize<D>( deserializer: D ) -> Result<u8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u16

source§

impl<'de> Deserialize<'de> for u16

source§

fn deserialize<D>( deserializer: D ) -> Result<u16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u32

source§

impl<'de> Deserialize<'de> for u32

source§

fn deserialize<D>( deserializer: D ) -> Result<u32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u64

source§

impl<'de> Deserialize<'de> for u64

source§

fn deserialize<D>( deserializer: D ) -> Result<u64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u128

source§

impl<'de> Deserialize<'de> for u128

source§

fn deserialize<D>( deserializer: D ) -> Result<u128, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for ()

source§

impl<'de> Deserialize<'de> for ()

source§

fn deserialize<D>( deserializer: D ) -> Result<(), <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for usize

source§

impl<'de> Deserialize<'de> for usize

source§

fn deserialize<D>( deserializer: D ) -> Result<usize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<str>

source§

impl<'de> Deserialize<'de> for Box<str>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<str>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<CStr>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<OsStr>

source§

impl<'de> Deserialize<'de> for Box<OsStr>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<OsStr>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<Path>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<RawValue>

source§

fn deserialize<D>( - deserializer: D -) -> Result<Box<RawValue>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for CString

source§

impl<'de> Deserialize<'de> for CString

source§

fn deserialize<D>( deserializer: D ) -> Result<CString, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

fn deserialize<D>( deserializer: D ) -> Result<Ipv4Addr, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

fn deserialize<D>( deserializer: D ) -> Result<Ipv6Addr, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

fn deserialize<D>( deserializer: D ) -> Result<SocketAddrV4, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

fn deserialize<D>( deserializer: D ) -> Result<SocketAddrV6, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i8>

source§

impl<'de> Deserialize<'de> for NonZero<i8>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i16>

source§

impl<'de> Deserialize<'de> for NonZero<i16>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i32>

source§

impl<'de> Deserialize<'de> for NonZero<i32>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i64>

source§

impl<'de> Deserialize<'de> for NonZero<i64>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<i128>

source§

impl<'de> Deserialize<'de> for NonZero<i128>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<i128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<isize>

source§

impl<'de> Deserialize<'de> for NonZero<isize>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<isize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u8>

source§

impl<'de> Deserialize<'de> for NonZero<u8>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u16>

source§

impl<'de> Deserialize<'de> for NonZero<u16>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u32>

source§

impl<'de> Deserialize<'de> for NonZero<u32>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u64>

source§

impl<'de> Deserialize<'de> for NonZero<u64>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<u128>

source§

impl<'de> Deserialize<'de> for NonZero<u128>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<u128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZero<usize>

source§

impl<'de> Deserialize<'de> for NonZero<usize>

source§

fn deserialize<D>( deserializer: D ) -> Result<NonZero<usize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i8>

source§

impl<'de> Deserialize<'de> for Saturating<i8>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i16>

source§

impl<'de> Deserialize<'de> for Saturating<i16>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i32>

source§

impl<'de> Deserialize<'de> for Saturating<i32>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i64>

source§

impl<'de> Deserialize<'de> for Saturating<i64>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<i128>

source§

impl<'de> Deserialize<'de> for Saturating<i128>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<i128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<isize>

source§

impl<'de> Deserialize<'de> for Saturating<isize>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<isize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u8>

source§

impl<'de> Deserialize<'de> for Saturating<u8>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u8>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u16>

source§

impl<'de> Deserialize<'de> for Saturating<u16>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u16>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u32>

source§

impl<'de> Deserialize<'de> for Saturating<u32>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u32>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u64>

source§

impl<'de> Deserialize<'de> for Saturating<u64>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u64>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<u128>

source§

impl<'de> Deserialize<'de> for Saturating<u128>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<u128>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Saturating<usize>

source§

impl<'de> Deserialize<'de> for Saturating<usize>

source§

fn deserialize<D>( deserializer: D ) -> Result<Saturating<usize>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicBool, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicI64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicIsize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU8, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU16, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU32, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicU64, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

fn deserialize<D>( deserializer: D ) -> Result<AtomicUsize, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Duration

source§

impl<'de> Deserialize<'de> for Duration

source§

fn deserialize<D>( deserializer: D ) -> Result<Duration, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for OsString

source§

impl<'de> Deserialize<'de> for OsString

source§

fn deserialize<D>( deserializer: D ) -> Result<OsString, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for PathBuf

source§

impl<'de> Deserialize<'de> for PathBuf

source§

fn deserialize<D>( deserializer: D ) -> Result<PathBuf, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SystemTime

source§

impl<'de> Deserialize<'de> for SystemTime

source§

fn deserialize<D>( deserializer: D ) -> Result<SystemTime, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Map<String, Value>

source§

fn deserialize<D>( - deserializer: D -) -> Result<Map<String, Value>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Number

source§

fn deserialize<D>( - deserializer: D -) -> Result<Number, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for DescriptorPublicKey

§

fn deserialize<D>( + D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for DescriptorPublicKey

§

fn deserialize<D>( deserializer: D ) -> Result<DescriptorPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for Hash

§

fn deserialize<D>(d: D) -> Result<Hash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

§

impl<'de> Deserialize<'de> for Hash

§

fn deserialize<D>(d: D) -> Result<Hash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a str
where - 'de: 'a,

source§

fn deserialize<D>( + 'de: 'a,

source§

fn deserialize<D>( deserializer: D ) -> Result<&'a str, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a Path
where - 'de: 'a,

source§

fn deserialize<D>( + 'de: 'a,

source§

fn deserialize<D>( deserializer: D ) -> Result<&'a Path, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a RawValue
where - 'de: 'a,

source§

fn deserialize<D>( - deserializer: D -) -> Result<&'a RawValue, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a> Deserialize<'de> for &'a [u8]
where - 'de: 'a,

source§

fn deserialize<D>( + 'de: 'a,

source§

fn deserialize<D>( deserializer: D ) -> Result<&'a [u8], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, 'a, T> Deserialize<'de> for Cow<'a, T>
where T: ToOwned + ?Sized, - <T as ToOwned>::Owned: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Cow<'a, T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for Range<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Range<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeFrom<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RangeFrom<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeInclusive<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RangeInclusive<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeTo<Idx>
where - Idx: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RangeTo<Idx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>
where K: Deserialize<'de> + Ord, - V: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<BTreeMap<K, V>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, K, V, S> Deserialize<'de> for HashMap<K, V, S>
where K: Deserialize<'de> + Eq + Hash, V: Deserialize<'de>, - S: BuildHasher + Default,

source§

fn deserialize<D>( deserializer: D ) -> Result<HashMap<K, V, S>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Descriptor<Pk>
where - Pk: FromStrKey,

§

fn deserialize<D>( + Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D ) -> Result<Descriptor<Pk>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where - Pk: FromStrKey,

§

fn deserialize<D>( + D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where + Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D ) -> Result<Policy<Pk>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where - Pk: FromStrKey,

§

fn deserialize<D>( + D: Deserializer<'de>,

§

impl<'de, Pk> Deserialize<'de> for Policy<Pk>
where + Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D ) -> Result<Policy<Pk>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

§

impl<'de, Pk, Ctx> Deserialize<'de> for Miniscript<Pk, Ctx>
where Pk: FromStrKey, - Ctx: ScriptContext,

§

fn deserialize<D>( + Ctx: ScriptContext,

§

fn deserialize<D>( deserializer: D ) -> Result<Miniscript<Pk, Ctx>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1> Deserialize<'de> for (T0, T1)
where T0: Deserialize<'de>, - T1: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2> Deserialize<'de> for (T0, T1, T2)
where T0: Deserialize<'de>, T1: Deserialize<'de>, - T2: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3> Deserialize<'de> for (T0, T1, T2, T3)
where T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, - T3: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4> Deserialize<'de> for (T0, T1, T2, T3, T4)
where @@ -335,7 +319,7 @@ manual for more information about how to implement this method.

T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, - T4: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5> Deserialize<'de> for (T0, T1, T2, T3, T4, T5)
where @@ -344,7 +328,7 @@ manual for more information about how to implement this method.

T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, - T5: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6)
where @@ -354,7 +338,7 @@ manual for more information about how to implement this method.

T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, - T6: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5, T6), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7)
where @@ -365,7 +349,7 @@ manual for more information about how to implement this method.

T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, - T7: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5, T6, T7), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)
where @@ -377,7 +361,7 @@ manual for more information about how to implement this method.

T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, - T8: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T0, T1, T2, T3, T4, T5, T6, T7, T8), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)
where @@ -390,7 +374,7 @@ manual for more information about how to implement this method.

T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, - T9: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)
where @@ -404,7 +388,7 @@ manual for more information about how to implement this method.

T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, - T10: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)
where @@ -419,7 +403,7 @@ manual for more information about how to implement this method.

T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, - T11: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)
where @@ -435,7 +419,7 @@ manual for more information about how to implement this method.

T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, - T12: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)
where @@ -452,7 +436,7 @@ manual for more information about how to implement this method.

T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, - T13: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)
where @@ -470,7 +454,7 @@ manual for more information about how to implement this method.

T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, - T14: Deserialize<'de>,

source§

impl<'de, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)
where @@ -489,174 +473,174 @@ manual for more information about how to implement this method.

T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>, - T15: Deserialize<'de>,

source§

impl<'de, T> Deserialize<'de> for Bound<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Bound<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Option<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Option<T>, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 0], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 1]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 1], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 2]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 2], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 3]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 3], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 4]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 4], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 5]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 5], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 6]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 6], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 7]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 7], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 8]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 8], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 9]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 9], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 10]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 10], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 11]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 11], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 12]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 12], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 13]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 13], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 14]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 14], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 15]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 15], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 16]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 16], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 17]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 17], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 18]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 18], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 19]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 19], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 20]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 20], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 21]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 21], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 22]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 22], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 23]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 23], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 24]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 24], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 25]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 25], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 26]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 26], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 27]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 27], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 28]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 28], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 29]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 29], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 30]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 30], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 31]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 31], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 32]
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<[T; 32], <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for (T,)
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<(T,), <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Box<[T]>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<[T]>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Box<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Box<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BinaryHeap<T>
where - T: Deserialize<'de> + Ord,

source§

fn deserialize<D>( deserializer: D ) -> Result<BinaryHeap<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BTreeSet<T>
where - T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>( + T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>( deserializer: D ) -> Result<BTreeSet<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for LinkedList<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<LinkedList<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for VecDeque<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<VecDeque<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Rc<T>
where @@ -665,13 +649,13 @@ manual for more information about how to implement this method.

Deserializing a data structure containing Rc will not attempt to deduplicate Rc references to the same data. Every deserialized Rc will end up with a strong count of 1.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Rc<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Weak<T>
where T: Deserialize<'de>,

This impl requires the "rc" Cargo feature of Serde. The resulting Weak<T> has a reference count of 0 and cannot be upgraded.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Weak<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Arc<T>
where @@ -680,51 +664,51 @@ will end up with a strong count of 1.

Deserializing a data structure containing Arc will not attempt to deduplicate Arc references to the same data. Every deserialized Arc will end up with a strong count of 1.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Arc<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Weak<T>
where T: Deserialize<'de>,

This impl requires the "rc" Cargo feature of Serde. The resulting Weak<T> has a reference count of 0 and cannot be upgraded.

-
source§

fn deserialize<D>( deserializer: D ) -> Result<Weak<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Cell<T>
where - T: Deserialize<'de> + Copy,

source§

fn deserialize<D>( deserializer: D ) -> Result<Cell<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for RefCell<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RefCell<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Reverse<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Reverse<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for PhantomData<T>
where - T: ?Sized,

source§

fn deserialize<D>( deserializer: D ) -> Result<PhantomData<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Wrapping<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Wrapping<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Mutex<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Mutex<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for RwLock<T>
where - T: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<RwLock<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T, E> Deserialize<'de> for Result<T, E>
where T: Deserialize<'de>, - E: Deserialize<'de>,

source§

fn deserialize<D>( deserializer: D ) -> Result<Result<T, E>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

source§

impl<'de, T, S> Deserialize<'de> for HashSet<T, S>
where T: Deserialize<'de> + Eq + Hash, - S: BuildHasher + Default,

source§

fn deserialize<D>( deserializer: D ) -> Result<HashSet<T, S>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Implementors§

§

impl<'de> Deserialize<'de> for &'de Script

Can only deserialize borrowed bytes.

@@ -738,4 +722,4 @@ will end up with a strong count of 1.

Subtype: Copy + From<u8> + Into<u8> + Deserialize<'de>,
source§

impl<'de, T> Deserialize<'de> for Vec<T>
where T: Deserialize<'de>,

§

impl<'de, T> Deserialize<'de> for Hmac<T>
where T: Hash + Deserialize<'de>,

§

impl<'de, T> Deserialize<'de> for bdk_chain::bitcoin::hashes::sha256t::Hash<T>
where - T: Tag,

\ No newline at end of file + T: Tag, \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserializer.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserializer.html index f2604f2fd8..09441b05f2 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserializer.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Deserializer.html @@ -1,4 +1,4 @@ -Deserializer in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Deserializer

source ·
pub trait Deserializer<'de>: Sized {
+Deserializer in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Deserializer

source ·
pub trait Deserializer<'de>: Sized {
     type Error: Error;
 
 
Show 32 methods // Required methods @@ -555,1162 +555,38 @@ support one. Note that modifying this method to change a format from human-readable to compact or vice versa should be regarded as a breaking change, as a value serialized in human-readable mode is not required to deserialize from the same data in compact mode.

-

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - _name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - _name: &'static str, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - _name: &'static str, - _fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for &'de Map<String, Value>

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - _name: &'static str, - _variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&'de Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for &'de RawValue

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for &Number

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <&Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for Value

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - _name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - _name: &'static str, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - _name: &'static str, - _fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for Map<String, Value>

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - _name: &'static str, - _variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Map<String, Value> as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de> Deserializer<'de> for Number

§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_newtype_struct<V>( - self, - name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - name: &'static str, - len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - name: &'static str, - fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_enum<V>( - self, - name: &'static str, - variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, <Number as Deserializer<'de>>::Error>
where - V: Visitor<'de>,

source§

impl<'de, R> Deserializer<'de> for &mut Deserializer<R>
where - R: Read<'de>,

source§

fn deserialize_bytes<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses a JSON string as bytes. Note that this function does not check -whether the bytes represent a valid UTF-8 string.

-

The relevant part of the JSON specification is Section 8.2 of RFC -7159:

-
-

When all the strings represented in a JSON text are composed entirely -of Unicode characters (however escaped), then that JSON text is -interoperable in the sense that all software implementations that -parse it will agree on the contents of names and of string values in -objects and arrays.

-

However, the ABNF in this specification allows member names and string -values to contain bit sequences that cannot encode Unicode characters; -for example, “\uDEAD” (a single unpaired UTF-16 surrogate). Instances -of this have been observed, for example, when a library truncates a -UTF-16 string without checking whether the truncation split a -surrogate pair. The behavior of software that receives JSON texts -containing such values is unpredictable; for example, implementations -might return different values for the length of a string value or even -suffer fatal runtime exceptions.

-
-

The behavior of serde_json is specified to fail on non-UTF-8 strings -when deserializing into Rust UTF-8 string types such as String, and -succeed with the bytes representing the WTF-8 encoding of code points -when deserializing using this method.

-

Escape sequences are processed as usual, and for \uXXXX escapes it is -still checked if the hex number represents a valid Unicode code point.

-
§Examples
-

You can use this to parse JSON strings containing invalid UTF-8 bytes, -or unpaired surrogates.

- -
use serde_bytes::ByteBuf;
-
-fn look_at_bytes() -> Result<(), serde_json::Error> {
-    let json_data = b"\"some bytes: \xe5\x00\xe5\"";
-    let bytes: ByteBuf = serde_json::from_slice(json_data)?;
-
-    assert_eq!(b'\xe5', bytes[12]);
-    assert_eq!(b'\0', bytes[13]);
-    assert_eq!(b'\xe5', bytes[14]);
-
-    Ok(())
-}
-

Backslash escape sequences like \n are still interpreted and required -to be valid. \u escape sequences are required to represent a valid -Unicode code point or lone surrogate.

- -
use serde_bytes::ByteBuf;
-
-fn look_at_bytes() -> Result<(), serde_json::Error> {
-    let json_data = b"\"lone surrogate: \\uD801\"";
-    let bytes: ByteBuf = serde_json::from_slice(json_data)?;
-    let expected = b"lone surrogate: \xED\xA0\x81";
-    assert_eq!(expected, bytes.as_slice());
-    Ok(())
-}
-
source§

fn deserialize_option<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses a null as a None, and any other values as a Some(...).

-
source§

fn deserialize_newtype_struct<V>( - self, - name: &str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses a newtype struct as the underlying value.

-
source§

fn deserialize_enum<V>( - self, - _name: &str, - _variants: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Parses an enum as an object like {"$KEY":$VALUE}, where $VALUE is either a straight -value, a [..], or a {..}.

-
§

type Error = Error

source§

fn deserialize_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_bool<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u8<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u16<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f32<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_f64<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_i128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_u128<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_char<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_str<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_string<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_byte_buf<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_unit_struct<V>( - self, - _name: &'static str, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_seq<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple<V>( - self, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_tuple_struct<V>( - self, - _name: &'static str, - _len: usize, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_map<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_struct<V>( - self, - _name: &'static str, - _fields: &'static [&'static str], - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_identifier<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

source§

fn deserialize_ignored_any<V>( - self, - visitor: V -) -> Result<<V as Visitor<'de>>::Value, Error>
where - V: Visitor<'de>,

Implementors§

source§

impl<'de, 'a, E> Deserializer<'de> for BytesDeserializer<'a, E>
where - E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for CowStrDeserializer<'a, E>
where - E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for StrDeserializer<'a, E>
where - E: Error,

§

type Error = E

source§

impl<'de, A> Deserializer<'de> for EnumAccessDeserializer<A>
where - A: EnumAccess<'de>,

§

type Error = <A as EnumAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for MapAccessDeserializer<A>
where - A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for SeqAccessDeserializer<A>
where - A: SeqAccess<'de>,

§

type Error = <A as SeqAccess<'de>>::Error

source§

impl<'de, E> Deserializer<'de> for BoolDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedBytesDeserializer<'de, E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedStrDeserializer<'de, E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for CharDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F32Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F64Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I8Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I16Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I32Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I64Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I128Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for IsizeDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for StringDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U8Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U16Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U32Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U64Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U128Deserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UnitDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UsizeDeserializer<E>
where - E: Error,

§

type Error = E

source§

impl<'de, I, E> Deserializer<'de> for MapDeserializer<'de, I, E>
where +

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'de, 'a, E> Deserializer<'de> for BytesDeserializer<'a, E>
where + E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for CowStrDeserializer<'a, E>
where + E: Error,

§

type Error = E

source§

impl<'de, 'a, E> Deserializer<'de> for StrDeserializer<'a, E>
where + E: Error,

§

type Error = E

source§

impl<'de, A> Deserializer<'de> for EnumAccessDeserializer<A>
where + A: EnumAccess<'de>,

§

type Error = <A as EnumAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for MapAccessDeserializer<A>
where + A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

source§

impl<'de, A> Deserializer<'de> for SeqAccessDeserializer<A>
where + A: SeqAccess<'de>,

§

type Error = <A as SeqAccess<'de>>::Error

source§

impl<'de, E> Deserializer<'de> for BoolDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedBytesDeserializer<'de, E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for BorrowedStrDeserializer<'de, E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for CharDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F32Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for F64Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I8Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I16Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I32Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I64Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for I128Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for IsizeDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for StringDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U8Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U16Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U32Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U64Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for U128Deserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UnitDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, E> Deserializer<'de> for UsizeDeserializer<E>
where + E: Error,

§

type Error = E

source§

impl<'de, I, E> Deserializer<'de> for MapDeserializer<'de, I, E>
where I: Iterator, <I as Iterator>::Item: Pair, <<I as Iterator>::Item as Pair>::First: IntoDeserializer<'de, E>, <<I as Iterator>::Item as Pair>::Second: IntoDeserializer<'de, E>, - E: Error,

§

type Error = E

source§

impl<'de, I, T, E> Deserializer<'de> for SeqDeserializer<I, E>
where + E: Error,

§

type Error = E

source§

impl<'de, I, T, E> Deserializer<'de> for SeqDeserializer<I, E>
where I: Iterator<Item = T>, T: IntoDeserializer<'de, E>, - E: Error,

§

type Error = E

\ No newline at end of file + E: Error,
§

type Error = E

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serialize.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serialize.html index d59e1eedc0..7de96a8736 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serialize.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serialize.html @@ -1,4 +1,4 @@ -Serialize in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Serialize

source ·
pub trait Serialize {
+Serialize in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Serialize

source ·
pub trait Serialize {
     // Required method
     fn serialize<S>(
         &self,
@@ -57,324 +57,308 @@ information about how to implement this method.

&self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,
source§

impl Serialize for Value

source§

impl Serialize for bool

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for bool

source§

impl Serialize for char

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for char

source§

impl Serialize for f32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for f32

source§

impl Serialize for f64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for f64

source§

impl Serialize for i8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i8

source§

impl Serialize for i16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i16

source§

impl Serialize for i32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i32

source§

impl Serialize for i64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i64

source§

impl Serialize for i128

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for i128

source§

impl Serialize for isize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for isize

source§

impl Serialize for str

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for str

source§

impl Serialize for u8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u8

source§

impl Serialize for u16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u16

source§

impl Serialize for u32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u32

source§

impl Serialize for u64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u64

source§

impl Serialize for u128

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for u128

source§

impl Serialize for ()

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for ()

source§

impl Serialize for usize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for usize

source§

impl Serialize for CString

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for CString

source§

impl Serialize for CStr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for CStr

source§

impl Serialize for Ipv4Addr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Ipv4Addr

source§

impl Serialize for Ipv6Addr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Ipv6Addr

source§

impl Serialize for SocketAddrV4

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for SocketAddrV4

source§

impl Serialize for SocketAddrV6

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for SocketAddrV6

source§

impl Serialize for NonZero<i8>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i8>

source§

impl Serialize for NonZero<i16>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i16>

source§

impl Serialize for NonZero<i32>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i32>

source§

impl Serialize for NonZero<i64>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i64>

source§

impl Serialize for NonZero<i128>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<i128>

source§

impl Serialize for NonZero<isize>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<isize>

source§

impl Serialize for NonZero<u8>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u8>

source§

impl Serialize for NonZero<u16>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u16>

source§

impl Serialize for NonZero<u32>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u32>

source§

impl Serialize for NonZero<u64>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u64>

source§

impl Serialize for NonZero<u128>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<u128>

source§

impl Serialize for NonZero<usize>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for NonZero<usize>

source§

impl Serialize for AtomicBool

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicBool

source§

impl Serialize for AtomicI8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI8

source§

impl Serialize for AtomicI16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI16

source§

impl Serialize for AtomicI32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI32

source§

impl Serialize for AtomicI64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicI64

source§

impl Serialize for AtomicIsize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicIsize

source§

impl Serialize for AtomicU8

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU8

source§

impl Serialize for AtomicU16

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU16

source§

impl Serialize for AtomicU32

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU32

source§

impl Serialize for AtomicU64

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicU64

source§

impl Serialize for AtomicUsize

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for AtomicUsize

source§

impl Serialize for Duration

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Duration

source§

impl Serialize for OsStr

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for OsStr

source§

impl Serialize for OsString

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for OsString

source§

impl Serialize for Path

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Path

source§

impl Serialize for PathBuf

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for PathBuf

source§

impl Serialize for SystemTime

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for SystemTime

§

impl Serialize for DescriptorPublicKey

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Map<String, Value>

source§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for Number

source§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl Serialize for RawValue

source§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl Serialize for DescriptorPublicKey

§

fn serialize<S>( - &self, - serializer: S -) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl Serialize for Hash

§

impl Serialize for Hash

§

fn serialize<S>( &self, s: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl<'a> Serialize for Arguments<'a>

source§

impl<'a> Serialize for Arguments<'a>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<'a, T> Serialize for Cow<'a, T>
where - T: Serialize + ToOwned + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<'a, T> Serialize for &'a T
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<'a, T> Serialize for &'a mut T
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

§

impl<'de, Pk> Serialize for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn serialize<S>( + Pk: MiniscriptKey,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl<'de, Pk> Serialize for Policy<Pk>
where - Pk: MiniscriptKey,

§

impl<'de, Pk> Serialize for Policy<Pk>
where + Pk: MiniscriptKey,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

§

impl<'de, Pk> Serialize for Policy<Pk>
where - Pk: MiniscriptKey,

§

impl<'de, Pk> Serialize for Policy<Pk>
where + Pk: MiniscriptKey,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

§

impl<'de, Pk, Ctx> Serialize for Miniscript<Pk, Ctx>
where Pk: MiniscriptKey, - Ctx: ScriptContext,

§

fn serialize<S>( + Ctx: ScriptContext,

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for Range<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for RangeFrom<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for RangeInclusive<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<Idx> Serialize for RangeTo<Idx>
where - Idx: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<K, V> Serialize for BTreeMap<K, V>
where K: Serialize, - V: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<K, V, H> Serialize for HashMap<K, V, H>
where K: Serialize, - V: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T0, T1> Serialize for (T0, T1)
where T0: Serialize, - T1: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T0, T1, T2> Serialize for (T0, T1, T2)
where T0: Serialize, T1: Serialize, - T2: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -382,7 +366,7 @@ information about how to implement this method.

T0: Serialize, T1: Serialize, T2: Serialize, - T3: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -391,7 +375,7 @@ information about how to implement this method.

T1: Serialize, T2: Serialize, T3: Serialize, - T4: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -401,7 +385,7 @@ information about how to implement this method.

T2: Serialize, T3: Serialize, T4: Serialize, - T5: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -412,7 +396,7 @@ information about how to implement this method.

T3: Serialize, T4: Serialize, T5: Serialize, - T6: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -424,7 +408,7 @@ information about how to implement this method.

T4: Serialize, T5: Serialize, T6: Serialize, - T7: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -437,7 +421,7 @@ information about how to implement this method.

T5: Serialize, T6: Serialize, T7: Serialize, - T8: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -451,7 +435,7 @@ information about how to implement this method.

T6: Serialize, T7: Serialize, T8: Serialize, - T9: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -466,7 +450,7 @@ information about how to implement this method.

T7: Serialize, T8: Serialize, T9: Serialize, - T10: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -482,7 +466,7 @@ information about how to implement this method.

T8: Serialize, T9: Serialize, T10: Serialize, - T11: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -499,7 +483,7 @@ information about how to implement this method.

T9: Serialize, T10: Serialize, T11: Serialize, - T12: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -517,7 +501,7 @@ information about how to implement this method.

T10: Serialize, T11: Serialize, T12: Serialize, - T13: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -536,7 +520,7 @@ information about how to implement this method.

T11: Serialize, T12: Serialize, T13: Serialize, - T14: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -556,216 +540,216 @@ information about how to implement this method.

T12: Serialize, T13: Serialize, T14: Serialize, - T15: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Bound<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Option<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

source§

impl<T> Serialize for [T; 0]

source§

impl<T> Serialize for [T; 0]

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 1]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 2]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 3]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 4]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 5]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 6]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 7]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 8]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 9]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 10]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 11]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 12]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 13]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 14]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 15]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 16]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 17]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 18]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 19]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 20]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 21]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 22]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 23]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 24]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 25]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 26]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 27]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 28]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 29]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 30]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 31]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T; 32]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for [T]
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for (T,)
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Box<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for BinaryHeap<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for BTreeSet<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for LinkedList<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for VecDeque<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -775,13 +759,13 @@ information about how to implement this method.

the contents of the Rc each time the Rc is referenced within the data structure. Serialization will not attempt to deduplicate these repeated data.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Weak<T>
where T: Serialize + ?Sized,

This impl requires the "rc" Cargo feature of Serde.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -791,64 +775,64 @@ repeated data.

the contents of the Arc each time the Arc is referenced within the data structure. Serialization will not attempt to deduplicate these repeated data.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Weak<T>
where T: Serialize + ?Sized,

This impl requires the "rc" Cargo feature of Serde.

-
source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Cell<T>
where - T: Serialize + Copy,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for RefCell<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Reverse<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for PhantomData<T>
where - T: ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Saturating<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Wrapping<T>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for Mutex<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T> Serialize for RwLock<T>
where - T: Serialize + ?Sized,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T, E> Serialize for Result<T, E>
where T: Serialize, - E: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

source§

impl<T, H> Serialize for HashSet<T, H>
where - T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where @@ -863,4 +847,4 @@ repeated data.

Subtype: Copy + From<u8> + Into<u8> + Serialize,

source§

impl<T> Serialize for Vec<T>
where T: Serialize,

§

impl<T> Serialize for Hmac<T>
where T: Hash + Serialize,

§

impl<T> Serialize for bdk_chain::bitcoin::hashes::sha256t::Hash<T>
where - T: Tag,

\ No newline at end of file + T: Tag, \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serializer.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serializer.html index 4b314be385..41e82b4a1f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serializer.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/serde/trait.Serializer.html @@ -1,4 +1,4 @@ -Serializer in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Serializer

source ·
pub trait Serializer: Sized {
+Serializer in bdk_chain::bitcoin::hashes::serde - Rust

Trait bdk_chain::bitcoin::hashes::serde::Serializer

source ·
pub trait Serializer: Sized {
     type Ok;
     type Error: Error;
     type SerializeSeq: SerializeSeq<Ok = Self::Ok, Error = Self::Error>;
@@ -897,55 +897,7 @@ support one. Note that modifying this method to change a format from
 human-readable to compact or vice versa should be regarded as a breaking
 change, as a value serialized in human-readable mode is not required to
 deserialize from the same data in compact mode.

-

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Serializer for Serializer

§

type Ok = Value

§

type Error = Error

§

type SerializeSeq = SerializeVec

§

type SerializeTuple = SerializeVec

§

type SerializeTupleStruct = SerializeVec

§

type SerializeTupleVariant = SerializeTupleVariant

§

type SerializeMap = SerializeMap

§

type SerializeStruct = SerializeMap

§

type SerializeStructVariant = SerializeStructVariant

source§

fn serialize_bool(self, value: bool) -> Result<Value, Error>

source§

fn serialize_i8(self, value: i8) -> Result<Value, Error>

source§

fn serialize_i16(self, value: i16) -> Result<Value, Error>

source§

fn serialize_i32(self, value: i32) -> Result<Value, Error>

source§

fn serialize_i64(self, value: i64) -> Result<Value, Error>

source§

fn serialize_i128(self, value: i128) -> Result<Value, Error>

source§

fn serialize_u8(self, value: u8) -> Result<Value, Error>

source§

fn serialize_u16(self, value: u16) -> Result<Value, Error>

source§

fn serialize_u32(self, value: u32) -> Result<Value, Error>

source§

fn serialize_u64(self, value: u64) -> Result<Value, Error>

source§

fn serialize_u128(self, value: u128) -> Result<Value, Error>

source§

fn serialize_f32(self, float: f32) -> Result<Value, Error>

source§

fn serialize_f64(self, float: f64) -> Result<Value, Error>

source§

fn serialize_char(self, value: char) -> Result<Value, Error>

source§

fn serialize_str(self, value: &str) -> Result<Value, Error>

source§

fn serialize_bytes(self, value: &[u8]) -> Result<Value, Error>

source§

fn serialize_unit(self) -> Result<Value, Error>

source§

fn serialize_unit_struct(self, _name: &'static str) -> Result<Value, Error>

source§

fn serialize_unit_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str -) -> Result<Value, Error>

source§

fn serialize_newtype_struct<T>( - self, - _name: &'static str, - value: &T -) -> Result<Value, Error>
where - T: Serialize + ?Sized,

source§

fn serialize_newtype_variant<T>( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - value: &T -) -> Result<Value, Error>
where - T: Serialize + ?Sized,

source§

fn serialize_none(self) -> Result<Value, Error>

source§

fn serialize_some<T>(self, value: &T) -> Result<Value, Error>
where - T: Serialize + ?Sized,

source§

fn serialize_seq( - self, - len: Option<usize> -) -> Result<<Serializer as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( - self, - len: usize -) -> Result<<Serializer as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( - self, - _name: &'static str, - len: usize -) -> Result<<Serializer as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - len: usize -) -> Result<<Serializer as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( - self, - _len: Option<usize> -) -> Result<<Serializer as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( - self, - name: &'static str, - len: usize -) -> Result<<Serializer as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - _len: usize -) -> Result<<Serializer as Serializer>::SerializeStructVariant, Error>

source§

fn collect_str<T>(self, value: &T) -> Result<Value, Error>
where - T: Display + ?Sized,

source§

impl<'a> Serializer for &mut Formatter<'a>

+

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> Serializer for &mut Formatter<'a>

ⓘ
use serde::ser::Serialize;
 use serde_derive::Serialize;
 use std::fmt::{self, Display};
@@ -962,103 +914,52 @@ deserialize from the same data in compact mode.

self.serialize(f) } }
-
§

type Ok = ()

§

type Error = Error

§

type SerializeSeq = Impossible<(), Error>

§

type SerializeTuple = Impossible<(), Error>

§

type SerializeTupleStruct = Impossible<(), Error>

§

type SerializeTupleVariant = Impossible<(), Error>

§

type SerializeMap = Impossible<(), Error>

§

type SerializeStruct = Impossible<(), Error>

§

type SerializeStructVariant = Impossible<(), Error>

source§

fn serialize_bool(self, v: bool) -> Result<(), Error>

source§

fn serialize_i8(self, v: i8) -> Result<(), Error>

source§

fn serialize_i16(self, v: i16) -> Result<(), Error>

source§

fn serialize_i32(self, v: i32) -> Result<(), Error>

source§

fn serialize_i64(self, v: i64) -> Result<(), Error>

source§

fn serialize_i128(self, v: i128) -> Result<(), Error>

source§

fn serialize_u8(self, v: u8) -> Result<(), Error>

source§

fn serialize_u16(self, v: u16) -> Result<(), Error>

source§

fn serialize_u32(self, v: u32) -> Result<(), Error>

source§

fn serialize_u64(self, v: u64) -> Result<(), Error>

source§

fn serialize_u128(self, v: u128) -> Result<(), Error>

source§

fn serialize_f32(self, v: f32) -> Result<(), Error>

source§

fn serialize_f64(self, v: f64) -> Result<(), Error>

source§

fn serialize_char(self, v: char) -> Result<(), Error>

source§

fn serialize_str(self, v: &str) -> Result<(), Error>

source§

fn serialize_unit_struct(self, v: &'static str) -> Result<(), Error>

source§

fn serialize_unit_variant( self, _name: &'static str, _variant_index: u32, variant: &'static str -) -> Result<(), Error>

source§

fn serialize_newtype_struct<T>( +) -> Result<(), Error>

source§

fn serialize_newtype_struct<T>( self, _name: &'static str, value: &T ) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_bytes(self, _v: &[u8]) -> Result<(), Error>

source§

fn serialize_none(self) -> Result<(), Error>

source§

fn serialize_some<T>(self, _value: &T) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_unit(self) -> Result<(), Error>

source§

fn serialize_newtype_variant<T>( + T: Serialize + ?Sized,

source§

fn serialize_bytes(self, _v: &[u8]) -> Result<(), Error>

source§

fn serialize_none(self) -> Result<(), Error>

source§

fn serialize_some<T>(self, _value: &T) -> Result<(), Error>
where + T: Serialize + ?Sized,

source§

fn serialize_unit(self) -> Result<(), Error>

source§

fn serialize_newtype_variant<T>( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _value: &T ) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_seq( + T: Serialize + ?Sized,

source§

fn serialize_seq( self, _len: Option<usize> -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( self, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( self, _name: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( self, _len: Option<usize> -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( self, _name: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( self, _name: &'static str, _variant_index: u32, _variant: &'static str, _len: usize -) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStructVariant, Error>

source§

fn collect_str<T>(self, value: &T) -> Result<(), Error>
where - T: Display + ?Sized,

source§

impl<'a, W, F> Serializer for &'a mut Serializer<W, F>
where - W: Write, - F: Formatter,

source§

fn serialize_newtype_struct<T>( - self, - _name: &'static str, - value: &T -) -> Result<(), Error>
where - T: Serialize + ?Sized,

Serialize newtypes without an object wrapper.

-
§

type Ok = ()

§

type Error = Error

§

type SerializeSeq = Compound<'a, W, F>

§

type SerializeTuple = Compound<'a, W, F>

§

type SerializeTupleStruct = Compound<'a, W, F>

§

type SerializeTupleVariant = Compound<'a, W, F>

§

type SerializeMap = Compound<'a, W, F>

§

type SerializeStruct = Compound<'a, W, F>

§

type SerializeStructVariant = Compound<'a, W, F>

source§

fn serialize_bool(self, value: bool) -> Result<(), Error>

source§

fn serialize_i8(self, value: i8) -> Result<(), Error>

source§

fn serialize_i16(self, value: i16) -> Result<(), Error>

source§

fn serialize_i32(self, value: i32) -> Result<(), Error>

source§

fn serialize_i64(self, value: i64) -> Result<(), Error>

source§

fn serialize_i128(self, value: i128) -> Result<(), Error>

source§

fn serialize_u8(self, value: u8) -> Result<(), Error>

source§

fn serialize_u16(self, value: u16) -> Result<(), Error>

source§

fn serialize_u32(self, value: u32) -> Result<(), Error>

source§

fn serialize_u64(self, value: u64) -> Result<(), Error>

source§

fn serialize_u128(self, value: u128) -> Result<(), Error>

source§

fn serialize_f32(self, value: f32) -> Result<(), Error>

source§

fn serialize_f64(self, value: f64) -> Result<(), Error>

source§

fn serialize_char(self, value: char) -> Result<(), Error>

source§

fn serialize_str(self, value: &str) -> Result<(), Error>

source§

fn serialize_bytes(self, value: &[u8]) -> Result<(), Error>

source§

fn serialize_unit(self) -> Result<(), Error>

source§

fn serialize_unit_struct(self, _name: &'static str) -> Result<(), Error>

source§

fn serialize_unit_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str -) -> Result<(), Error>

source§

fn serialize_newtype_variant<T>( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - value: &T -) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_none(self) -> Result<(), Error>

source§

fn serialize_some<T>(self, value: &T) -> Result<(), Error>
where - T: Serialize + ?Sized,

source§

fn serialize_seq( - self, - len: Option<usize> -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeSeq, Error>

source§

fn serialize_tuple( - self, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeTuple, Error>

source§

fn serialize_tuple_struct( - self, - _name: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeTupleStruct, Error>

source§

fn serialize_tuple_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeTupleVariant, Error>

source§

fn serialize_map( - self, - len: Option<usize> -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeMap, Error>

source§

fn serialize_struct( - self, - name: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeStruct, Error>

source§

fn serialize_struct_variant( - self, - _name: &'static str, - _variant_index: u32, - variant: &'static str, - len: usize -) -> Result<<&'a mut Serializer<W, F> as Serializer>::SerializeStructVariant, Error>

source§

fn collect_str<T>(self, value: &T) -> Result<(), Error>
where - T: Display + ?Sized,

Implementors§

\ No newline at end of file +) -> Result<<&mut Formatter<'a> as Serializer>::SerializeStructVariant, Error>
source§

fn collect_str<T>(self, value: &T) -> Result<(), Error>
where + T: Display + ?Sized,

Implementors§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256d/struct.Hash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256d/struct.Hash.html index 7268c783b1..a3f269a405 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256d/struct.Hash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256d/struct.Hash.html @@ -7,7 +7,7 @@ an exclusive reference to this Hash type.

R: Read + ?Sized,
Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Hash

§

fn deserialize<D>(d: D) -> Result<Hash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Hash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Hash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl From<Hash> for Hash

§

fn from(inner: Hash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for Hash

§

fn from(hashtype: Hash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for LegacySighash

§

fn from(inner: Hash) -> LegacySighash

Converts to this type from the input type.
§

impl From<Hash> for SegwitV0Sighash

§

fn from(inner: Hash) -> SegwitV0Sighash

Converts to this type from the input type.
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for WitnessCommitment

§

fn from(inner: Hash) -> WitnessCommitment

Converts to this type from the input type.
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<LegacySighash> for Hash

§

fn from(hashtype: LegacySighash) -> Hash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Hash

§

fn from(hashtype: SegwitV0Sighash) -> Hash

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<WitnessCommitment> for Hash

§

fn from(hashtype: WitnessCommitment) -> Hash

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl FromStr for Hash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Hash, <Hash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Hash

§

type Engine = HashEngine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl From<Hash> for Hash

§

fn from(inner: Hash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for Hash

§

fn from(hashtype: Hash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for LegacySighash

§

fn from(inner: Hash) -> LegacySighash

Converts to this type from the input type.
§

impl From<Hash> for SegwitV0Sighash

§

fn from(inner: Hash) -> SegwitV0Sighash

Converts to this type from the input type.
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for WitnessCommitment

§

fn from(inner: Hash) -> WitnessCommitment

Converts to this type from the input type.
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<LegacySighash> for Hash

§

fn from(hashtype: LegacySighash) -> Hash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Hash

§

fn from(hashtype: SegwitV0Sighash) -> Hash

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<WitnessCommitment> for Hash

§

fn from(hashtype: WitnessCommitment) -> Hash

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl FromStr for Hash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Hash, <Hash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Hash

§

type Engine = HashEngine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = [u8; 32]

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256t/struct.Hash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256t/struct.Hash.html index 2372282f96..c03d7bf8e6 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256t/struct.Hash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/hashes/sha256t/struct.Hash.html @@ -15,7 +15,7 @@ an exclusive reference to this Hash type.

T: Tag,
§

fn default() -> Hash<T>

Returns the “default value” for a type. Read more
§

impl<'de, T> Deserialize<'de> for Hash<T>
where T: Tag,

§

fn deserialize<D>(d: D) -> Result<Hash<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<T> Display for Hash<T>
where - T: Tag,

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash<TapBranchTag>> for TapNodeHash

§

fn from(inner: Hash<TapBranchTag>) -> TapNodeHash

Converts to this type from the input type.
§

impl From<Hash<TapLeafTag>> for TapLeafHash

§

fn from(inner: Hash<TapLeafTag>) -> TapLeafHash

Converts to this type from the input type.
§

impl From<Hash<TapSighashTag>> for TapSighash

§

fn from(inner: Hash<TapSighashTag>) -> TapSighash

Converts to this type from the input type.
§

impl From<Hash<TapTweakTag>> for TapTweakHash

§

fn from(inner: Hash<TapTweakTag>) -> TapTweakHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for Hash<TapLeafTag>

§

fn from(hashtype: TapLeafHash) -> Hash<TapLeafTag>

Converts to this type from the input type.
§

impl From<TapNodeHash> for Hash<TapBranchTag>

§

fn from(hashtype: TapNodeHash) -> Hash<TapBranchTag>

Converts to this type from the input type.
§

impl From<TapSighash> for Hash<TapSighashTag>

§

fn from(hashtype: TapSighash) -> Hash<TapSighashTag>

Converts to this type from the input type.
§

impl From<TapTweakHash> for Hash<TapTweakTag>

§

fn from(hashtype: TapTweakHash) -> Hash<TapTweakTag>

Converts to this type from the input type.
§

impl<T> FromStr for Hash<T>
where + T: Tag,

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash<TapBranchTag>> for TapNodeHash

§

fn from(inner: Hash<TapBranchTag>) -> TapNodeHash

Converts to this type from the input type.
§

impl From<Hash<TapLeafTag>> for TapLeafHash

§

fn from(inner: Hash<TapLeafTag>) -> TapLeafHash

Converts to this type from the input type.
§

impl From<Hash<TapSighashTag>> for TapSighash

§

fn from(inner: Hash<TapSighashTag>) -> TapSighash

Converts to this type from the input type.
§

impl From<Hash<TapTweakTag>> for TapTweakHash

§

fn from(inner: Hash<TapTweakTag>) -> TapTweakHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for Hash<TapLeafTag>

§

fn from(hashtype: TapLeafHash) -> Hash<TapLeafTag>

Converts to this type from the input type.
§

impl From<TapNodeHash> for Hash<TapBranchTag>

§

fn from(hashtype: TapNodeHash) -> Hash<TapBranchTag>

Converts to this type from the input type.
§

impl From<TapSighash> for Hash<TapSighashTag>

§

fn from(hashtype: TapSighash) -> Hash<TapSighashTag>

Converts to this type from the input type.
§

impl From<TapTweakHash> for Hash<TapTweakTag>

§

fn from(hashtype: TapTweakHash) -> Hash<TapTweakTag>

Converts to this type from the input type.
§

impl<T> FromStr for Hash<T>
where T: Tag,

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Hash<T>, <Hash<T> as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl<T> Hash for Hash<T>
where T: Tag,

§

type Engine = HashEngine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/io/struct.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/io/struct.Error.html index 982da6641d..6ec7ab341a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/io/struct.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/io/struct.Error.html @@ -3,7 +3,7 @@ E: Into<Box<dyn Error + Sync + Send>>,

Creates a new I/O error.

pub fn kind(&self) -> ErrorKind

Returns the error kind for this error.

pub fn get_ref(&self) -> Option<&(dyn Error + Sync + Send + 'static)>

Returns a reference to this error.

-

Trait Implementations§

§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(error: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(io: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(o: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(o: Error) -> Error

Converts to this type from the input type.
§

impl<E> From<Error> for SigningDataError<E>

§

fn from(value: Error) -> SigningDataError<E>

Converts to this type from the input type.
§

impl From<ErrorKind> for Error

§

fn from(kind: ErrorKind) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(error: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(io: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(o: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(o: Error) -> Error

Converts to this type from the input type.
§

impl<E> From<Error> for SigningDataError<E>

§

fn from(value: Error) -> SigningDataError<E>

Converts to this type from the input type.
§

impl From<ErrorKind> for Error

§

fn from(kind: ErrorKind) -> Error

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromSliceError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromSliceError.html index 54309bb8ae..ada46c0881 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromSliceError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromSliceError.html @@ -6,7 +6,7 @@

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

InvalidKeyPrefix(u8)

Invalid key prefix error.

§

Secp256k1(Error)

A Secp256k1 error.

§

InvalidLength(usize)

Invalid Length of the slice.

-

Trait Implementations§

§

impl Clone for FromSliceError

§

fn clone(&self) -> FromSliceError

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
§

impl Debug for FromSliceError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromSliceError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromSliceError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromSliceError

§

fn from(e: Error) -> FromSliceError

Converts to this type from the input type.
§

impl From<FromSliceError> for ParsePublicKeyError

§

fn from(e: FromSliceError) -> ParsePublicKeyError

Converts to this type from the input type.
§

impl From<Infallible> for FromSliceError

§

fn from(never: Infallible) -> FromSliceError

Converts to this type from the input type.
§

impl PartialEq for FromSliceError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for FromSliceError

§

fn clone(&self) -> FromSliceError

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
§

impl Debug for FromSliceError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromSliceError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromSliceError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromSliceError

§

fn from(e: Error) -> FromSliceError

Converts to this type from the input type.
§

impl From<FromSliceError> for ParsePublicKeyError

§

fn from(e: FromSliceError) -> ParsePublicKeyError

Converts to this type from the input type.
§

impl From<Infallible> for FromSliceError

§

fn from(never: Infallible) -> FromSliceError

Converts to this type from the input type.
§

impl PartialEq for FromSliceError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for FromSliceError

§

impl StructuralPartialEq for FromSliceError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromWifError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromWifError.html index f795e8c27b..1ab9f58aa8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromWifError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.FromWifError.html @@ -8,7 +8,7 @@
§

InvalidBase58PayloadLength(InvalidBase58PayloadLengthError)

Base58 decoded data was an invalid length.

§

InvalidAddressVersion(InvalidAddressVersionError)

Base58 decoded data contained an invalid address version byte.

§

Secp256k1(Error)

A secp256k1 error.

-

Trait Implementations§

§

impl Clone for FromWifError

§

fn clone(&self) -> FromWifError

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
§

impl Debug for FromWifError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromWifError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromWifError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Infallible> for FromWifError

§

fn from(never: Infallible) -> FromWifError

Converts to this type from the input type.
§

impl From<InvalidAddressVersionError> for FromWifError

§

fn from(e: InvalidAddressVersionError) -> FromWifError

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for FromWifError

§

fn from(e: InvalidBase58PayloadLengthError) -> FromWifError

Converts to this type from the input type.
§

impl PartialEq for FromWifError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for FromWifError

§

fn clone(&self) -> FromWifError

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
§

impl Debug for FromWifError

§

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

Formats the value using the given formatter. Read more
§

impl Display for FromWifError

§

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

Formats the value using the given formatter. Read more
§

impl Error for FromWifError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Infallible> for FromWifError

§

fn from(never: Infallible) -> FromWifError

Converts to this type from the input type.
§

impl From<InvalidAddressVersionError> for FromWifError

§

fn from(e: InvalidAddressVersionError) -> FromWifError

Converts to this type from the input type.
§

impl From<InvalidBase58PayloadLengthError> for FromWifError

§

fn from(e: InvalidBase58PayloadLengthError) -> FromWifError

Converts to this type from the input type.
§

impl PartialEq for FromWifError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for FromWifError

§

impl StructuralPartialEq for FromWifError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.ParseCompressedPublicKeyError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.ParseCompressedPublicKeyError.html index 9afac91e2f..eb912ac08d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.ParseCompressedPublicKeyError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/enum.ParseCompressedPublicKeyError.html @@ -4,7 +4,7 @@ }
Expand description

Error returned when parsing a CompressedPublicKey from a string.

Variants§

§

Secp256k1(Error)

Secp256k1 Error.

§

Hex(HexToArrayError)

hex to array conversion error.

-

Trait Implementations§

§

impl Clone for ParseCompressedPublicKeyError

§

fn clone(&self) -> ParseCompressedPublicKeyError

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
§

impl Debug for ParseCompressedPublicKeyError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseCompressedPublicKeyError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseCompressedPublicKeyError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for ParseCompressedPublicKeyError

§

fn from(e: Error) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl From<HexToArrayError> for ParseCompressedPublicKeyError

§

fn from(e: HexToArrayError) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl From<Infallible> for ParseCompressedPublicKeyError

§

fn from(never: Infallible) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl PartialEq for ParseCompressedPublicKeyError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for ParseCompressedPublicKeyError

§

fn clone(&self) -> ParseCompressedPublicKeyError

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
§

impl Debug for ParseCompressedPublicKeyError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseCompressedPublicKeyError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseCompressedPublicKeyError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for ParseCompressedPublicKeyError

§

fn from(e: Error) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl From<HexToArrayError> for ParseCompressedPublicKeyError

§

fn from(e: HexToArrayError) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl From<Infallible> for ParseCompressedPublicKeyError

§

fn from(never: Infallible) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl PartialEq for ParseCompressedPublicKeyError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for ParseCompressedPublicKeyError

§

impl StructuralPartialEq for ParseCompressedPublicKeyError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.CompressedPublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.CompressedPublicKey.html index 5e940fba2f..bb61add334 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.CompressedPublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.CompressedPublicKey.html @@ -28,7 +28,7 @@ That’s why this type doesn’t have the to_sort_key method - it w

Trait Implementations§

§

impl Clone for CompressedPublicKey

§

fn clone(&self) -> CompressedPublicKey

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
§

impl Debug for CompressedPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for CompressedPublicKey

§

fn deserialize<D>( d: D ) -> Result<CompressedPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for CompressedPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for CompressedPublicKey

§

type Err = ParseCompressedPublicKeyError

The associated error which can be returned from parsing.
§

fn from_str( + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for CompressedPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for CompressedPublicKey

§

type Err = ParseCompressedPublicKeyError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<CompressedPublicKey, <CompressedPublicKey as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for CompressedPublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.Keypair.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.Keypair.html index 0d415af67e..b40e169dc5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.Keypair.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.Keypair.html @@ -98,7 +98,7 @@ of this array to other places in memory. Preventing this behavior is very subtle For more discussion on this, please see the documentation of the zeroize crate.

Trait Implementations§

§

impl CPtr for Keypair

§

impl Clone for Keypair

§

fn clone(&self) -> Keypair

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
§

impl Debug for Keypair

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Keypair

§

fn deserialize<D>(d: D) -> Result<Keypair, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Keypair> for PublicKey

§

fn from(pair: &'a Keypair) -> PublicKey

Converts to this type from the input type.
§

impl<'a> From<&'a Keypair> for SecretKey

§

fn from(pair: &'a Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<Keypair> for PublicKey

§

fn from(pair: Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<Keypair> for SecretKey

§

fn from(pair: Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<TweakedKeypair> for Keypair

§

fn from(pair: TweakedKeypair) -> Keypair

Converts to this type from the input type.
§

impl FromStr for Keypair

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Keypair, <Keypair as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Keypair

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Keypair> for PublicKey

§

fn from(pair: &'a Keypair) -> PublicKey

Converts to this type from the input type.
§

impl<'a> From<&'a Keypair> for SecretKey

§

fn from(pair: &'a Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<Keypair> for PublicKey

§

fn from(pair: Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<Keypair> for SecretKey

§

fn from(pair: Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<TweakedKeypair> for Keypair

§

fn from(pair: TweakedKeypair) -> Keypair

Converts to this type from the input type.
§

impl FromStr for Keypair

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Keypair, <Keypair as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Keypair

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Keypair

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PubkeyHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PubkeyHash.html index cd67cb99d2..0fecde4bfc 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PubkeyHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PubkeyHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl PubkeyHash

pub fn from_raw_hash(inner: Hash) -> PubkeyHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for PubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for PubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for PubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for PubkeyHash

§

fn clone(&self) -> PubkeyHash

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
§

impl Debug for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PubkeyHash

§

fn deserialize<D>(d: D) -> Result<PubkeyHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for PubkeyHash

§

fn from(inner: Hash) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PubkeyHash> for Hash

§

fn from(hashtype: PubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<PubkeyHash> for PushBytesBuf

§

fn from(hash: PubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl FromStr for PubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PubkeyHash, <PubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for PubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for PubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for PubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for PubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for PubkeyHash

§

fn clone(&self) -> PubkeyHash

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
§

impl Debug for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PubkeyHash

§

fn deserialize<D>(d: D) -> Result<PubkeyHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for PubkeyHash

§

fn from(inner: Hash) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PubkeyHash> for Hash

§

fn from(hashtype: PubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<PubkeyHash> for PushBytesBuf

§

fn from(hash: PubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl FromStr for PubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PubkeyHash, <PubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for PubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PublicKey.html index b41b762d8a..7d5fddde87 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.PublicKey.html @@ -73,7 +73,7 @@ unsorted.sort_unstable_by_key(|k| PublicKey::to_sort_key(*Result<(), Error>
where C: Verification,

Checks that sig is a valid ECDSA signature for msg using this public key.

Trait Implementations§

§

impl Clone for PublicKey

§

fn clone(&self) -> PublicKey

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
§

impl Debug for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PublicKey

§

fn deserialize<D>(d: D) -> Result<PublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for PublicKey

§

type Err = ParsePublicKeyError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PublicKey, ParsePublicKeyError>

Parses a string s to return a value of this type. Read more
§

impl Hash for PublicKey

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for PublicKey

§

type Err = ParsePublicKeyError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PublicKey, ParsePublicKeyError>

Parses a string s to return a value of this type. Read more
§

impl Hash for PublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl MiniscriptKey for PublicKey

§

fn is_uncompressed(&self) -> bool

Returns the compressed-ness of the underlying secp256k1 key.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.WPubkeyHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.WPubkeyHash.html index f0debe37ac..e099b5d71c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.WPubkeyHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.WPubkeyHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl WPubkeyHash

pub fn from_raw_hash(inner: Hash) -> WPubkeyHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WPubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WPubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WPubkeyHash

§

fn clone(&self) -> WPubkeyHash

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
§

impl Debug for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WPubkeyHash

§

fn deserialize<D>(d: D) -> Result<WPubkeyHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for WPubkeyHash

§

fn from(inner: Hash) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for Hash

§

fn from(hashtype: WPubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for PushBytesBuf

§

fn from(hash: WPubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WPubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WPubkeyHash, <WPubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WPubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WPubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WPubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WPubkeyHash

§

fn clone(&self) -> WPubkeyHash

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
§

impl Debug for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WPubkeyHash

§

fn deserialize<D>(d: D) -> Result<WPubkeyHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for WPubkeyHash

§

fn from(inner: Hash) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for Hash

§

fn from(hashtype: WPubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for PushBytesBuf

§

fn from(hash: WPubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WPubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WPubkeyHash, <WPubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WPubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.XOnlyPublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.XOnlyPublicKey.html index ce5180c688..1378726704 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.XOnlyPublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/key/struct.XOnlyPublicKey.html @@ -86,7 +86,7 @@ significantly faster, so it is wise to design protocols with this in mind.

Trait Implementations§

§

impl CPtr for XOnlyPublicKey

§

impl Clone for XOnlyPublicKey

§

fn clone(&self) -> XOnlyPublicKey

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
§

impl Debug for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XOnlyPublicKey

§

fn deserialize<D>( d: D ) -> Result<XOnlyPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<TweakedPublicKey> for XOnlyPublicKey

§

fn from(pair: TweakedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new schnorr public key from a FFI x-only public key.

+ D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<TweakedPublicKey> for XOnlyPublicKey

§

fn from(pair: TweakedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new schnorr public key from a FFI x-only public key.

§

fn from(pk: XOnlyPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for XOnlyPublicKey

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XOnlyPublicKey, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for XOnlyPublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/network/enum.Network.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/network/enum.Network.html index 8e80cc2a1c..8034ffa481 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/network/enum.Network.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/network/enum.Network.html @@ -56,7 +56,7 @@ Use the chain <chain> (default: main). Allowed values: main, test, signet,

Trait Implementations§

§

impl AsRef<Params> for Network

§

fn as_ref(&self) -> &Params

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Network

§

fn clone(&self) -> Network

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
§

impl Debug for Network

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Network

§

fn deserialize<__D>( __deserializer: __D ) -> Result<Network, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Network

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for KnownHrp

§

fn from(n: Network) -> KnownHrp

Converts to this type from the input type.
§

impl From<Network> for Magic

§

fn from(network: Network) -> Magic

Converts to this type from the input type.
§

impl From<Network> for NetworkKind

§

fn from(n: Network) -> NetworkKind

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.
§

impl FromStr for Network

§

type Err = ParseNetworkError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Network, <Network as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Network

§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Network

§

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

Formats the value using the given formatter. Read more
§

impl From<&Network> for &'static Params

§

fn from(value: &Network) -> &'static Params

Converts to this type from the input type.
§

impl From<&Network> for Params

§

fn from(value: &Network) -> Params

Converts to this type from the input type.
§

impl From<Network> for &'static Params

§

fn from(value: Network) -> &'static Params

Converts to this type from the input type.
§

impl From<Network> for KnownHrp

§

fn from(n: Network) -> KnownHrp

Converts to this type from the input type.
§

impl From<Network> for Magic

§

fn from(network: Network) -> Magic

Converts to this type from the input type.
§

impl From<Network> for NetworkKind

§

fn from(n: Network) -> NetworkKind

Converts to this type from the input type.
§

impl From<Network> for Params

§

fn from(value: Network) -> Params

Converts to this type from the input type.
§

impl FromStr for Network

§

type Err = ParseNetworkError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Network, <Network as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Network

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Network

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/message/struct.CommandString.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/message/struct.CommandString.html index 8df3d441d8..37e0cc734b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/message/struct.CommandString.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/message/struct.CommandString.html @@ -12,11 +12,11 @@ larger than 12 characters in length.

R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl Display for CommandString

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for CommandString

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl FromStr for CommandString

§

type Err = CommandStringError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<CommandString, <CommandString as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl PartialEq for CommandString

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl<'a> TryFrom<&'a str> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( +sufficient, and should not be overridden without very good reason.

§

impl<'a> TryFrom<&'a str> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( value: &'a str -) -> Result<CommandString, <CommandString as TryFrom<&'a str>>::Error>

Performs the conversion.
§

impl TryFrom<Box<str>> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<CommandString, <CommandString as TryFrom<&'a str>>::Error>

Performs the conversion.
§

impl TryFrom<Box<str>> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( value: Box<str> -) -> Result<CommandString, <CommandString as TryFrom<Box<str>>>::Error>

Performs the conversion.
§

impl TryFrom<String> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<CommandString, <CommandString as TryFrom<Box<str>>>::Error>

Performs the conversion.
§

impl TryFrom<String> for CommandString

§

type Error = CommandStringError

The type returned in the event of a conversion error.
§

fn try_from( value: String ) -> Result<CommandString, <CommandString as TryFrom<String>>::Error>

Performs the conversion.
§

impl Eq for CommandString

§

impl StructuralPartialEq for CommandString

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/struct.Magic.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/struct.Magic.html index bbc8675190..1e68ce4496 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/struct.Magic.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/p2p/struct.Magic.html @@ -8,7 +8,7 @@

pub fn from_bytes(bytes: [u8; 4]) -> Magic

Create network magic from bytes.

pub fn to_bytes(self) -> [u8; 4]

Get network magic bytes.

pub fn from_params(params: impl AsRef<Params>) -> Magic

Returns the magic bytes for the network defined by params.

-

Trait Implementations§

§

impl AsMut<[u8]> for Magic

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 4]> for Magic

§

fn as_mut(&mut self) -> &mut [u8; 4]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Magic

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 4]> for Magic

§

fn as_ref(&self) -> &[u8; 4]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Magic

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 4]> for Magic

§

fn borrow(&self) -> &[u8; 4]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for Magic

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 4]> for Magic

§

fn borrow_mut(&mut self) -> &mut [u8; 4]

Mutably borrows from an owned value. Read more
§

impl Clone for Magic

§

fn clone(&self) -> Magic

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
§

impl Debug for Magic

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Magic

§

fn consensus_decode<R>(reader: &mut R) -> Result<Magic, Error>
where +

Trait Implementations§

§

impl AsMut<[u8]> for Magic

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<[u8; 4]> for Magic

§

fn as_mut(&mut self) -> &mut [u8; 4]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Magic

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 4]> for Magic

§

fn as_ref(&self) -> &[u8; 4]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Magic

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Borrow<[u8; 4]> for Magic

§

fn borrow(&self) -> &[u8; 4]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[u8]> for Magic

§

fn borrow_mut(&mut self) -> &mut [u8] ⓘ

Mutably borrows from an owned value. Read more
§

impl BorrowMut<[u8; 4]> for Magic

§

fn borrow_mut(&mut self) -> &mut [u8; 4]

Mutably borrows from an owned value. Read more
§

impl Clone for Magic

§

fn clone(&self) -> Magic

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
§

impl Debug for Magic

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Magic

§

fn consensus_decode<R>(reader: &mut R) -> Result<Magic, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl Display for Magic

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Magic

§

fn consensus_encode<W>(&self, writer: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Network> for Magic

§

fn from(network: Network) -> Magic

Converts to this type from the input type.
§

impl FromStr for Magic

§

type Err = ParseMagicError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Magic, <Magic as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Magic

§

fn hash<__H>(&self, state: &mut __H)
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/parse/struct.ParseIntError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/parse/struct.ParseIntError.html index 7106c2c542..fcd86d8fe5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/parse/struct.ParseIntError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/parse/struct.ParseIntError.html @@ -6,7 +6,7 @@ make it easier to understand the problem and correct mistakes.

in a performance-critical application you may want to box it or throw away the context by converting to core type.

Implementations§

§

impl ParseIntError

pub fn input(&self) -> &str

Returns the input that was attempted to be parsed.

-

Trait Implementations§

§

impl AsRef<ParseIntError> for ParseIntError

§

fn as_ref(&self) -> &ParseIntError

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for ParseIntError

§

fn clone(&self) -> ParseIntError

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
§

impl Debug for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseIntError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<ParseIntError> for FromStrError

§

fn from(e: ParseIntError) -> FromStrError

Converts to this type from the input type.
§

impl From<ParseIntError> for ParseIntError

§

fn from(value: ParseIntError) -> ParseIntError

Converts to this type from the input type.
§

impl From<ParseIntError> for PrefixedHexError

§

fn from(e: ParseIntError) -> PrefixedHexError

Converts to this type from the input type.
§

impl From<ParseIntError> for UnprefixedHexError

§

fn from(e: ParseIntError) -> UnprefixedHexError

Converts to this type from the input type.
§

impl PartialEq for ParseIntError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl AsRef<ParseIntError> for ParseIntError

§

fn as_ref(&self) -> &ParseIntError

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for ParseIntError

§

fn clone(&self) -> ParseIntError

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
§

impl Debug for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Display for ParseIntError

§

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

Formats the value using the given formatter. Read more
§

impl Error for ParseIntError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<ParseIntError> for FromStrError

§

fn from(e: ParseIntError) -> FromStrError

Converts to this type from the input type.
§

impl From<ParseIntError> for ParseIntError

§

fn from(value: ParseIntError) -> ParseIntError

Converts to this type from the input type.
§

impl From<ParseIntError> for PrefixedHexError

§

fn from(e: ParseIntError) -> PrefixedHexError

Converts to this type from the input type.
§

impl From<ParseIntError> for UnprefixedHexError

§

fn from(e: ParseIntError) -> UnprefixedHexError

Converts to this type from the input type.
§

impl PartialEq for ParseIntError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for ParseIntError

§

impl StructuralPartialEq for ParseIntError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.Error.html index dec6d5a9b1..2fcea2c5b2 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.Error.html @@ -79,7 +79,7 @@ global extended public key has inconsistent key sources

§

Version(&'static str)

Error related to PSBT version

§

PartialDataConsumption

PSBT data is not consumed entirely

§

Io(Error)

I/O error.

-

Trait Implementations§

§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<FromSliceError> for Error

§

fn from(e: FromSliceError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<FromSliceError> for Error

§

fn from(e: FromSliceError) -> Error

Converts to this type from the input type.
§

impl From<Infallible> for Error

§

fn from(never: Infallible) -> Error

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.SignError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.SignError.html index 7e5612083f..8966b2ba69 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.SignError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/psbt/enum.SignError.html @@ -32,7 +32,7 @@
§

KeyNotFound

Unable to find key.

§

WrongSigningAlgorithm

Attempt to sign an input with the wrong signing algorithm.

§

Unsupported

Signing request currently unsupported.

-

Trait Implementations§

§

impl Clone for SignError

§

fn clone(&self) -> SignError

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
§

impl Debug for SignError

§

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

Formats the value using the given formatter. Read more
§

impl Display for SignError

§

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

Formats the value using the given formatter. Read more
§

impl Error for SignError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<IndexOutOfBoundsError> for SignError

§

fn from(e: IndexOutOfBoundsError) -> SignError

Converts to this type from the input type.
§

impl From<Infallible> for SignError

§

fn from(never: Infallible) -> SignError

Converts to this type from the input type.
§

impl From<P2wpkhError> for SignError

§

fn from(e: P2wpkhError) -> SignError

Converts to this type from the input type.
§

impl From<TaprootError> for SignError

§

fn from(e: TaprootError) -> SignError

Converts to this type from the input type.
§

impl PartialEq for SignError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for SignError

§

fn clone(&self) -> SignError

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
§

impl Debug for SignError

§

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

Formats the value using the given formatter. Read more
§

impl Display for SignError

§

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

Formats the value using the given formatter. Read more
§

impl Error for SignError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<IndexOutOfBoundsError> for SignError

§

fn from(e: IndexOutOfBoundsError) -> SignError

Converts to this type from the input type.
§

impl From<Infallible> for SignError

§

fn from(never: Infallible) -> SignError

Converts to this type from the input type.
§

impl From<P2wpkhError> for SignError

§

fn from(e: P2wpkhError) -> SignError

Converts to this type from the input type.
§

impl From<TaprootError> for SignError

§

fn from(e: TaprootError) -> SignError

Converts to this type from the input type.
§

impl PartialEq for SignError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for SignError

§

impl StructuralPartialEq for SignError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/serialized_signature/struct.SerializedSignature.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/serialized_signature/struct.SerializedSignature.html index 5bde55fd2f..2789ca71f8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/serialized_signature/struct.SerializedSignature.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/serialized_signature/struct.SerializedSignature.html @@ -1102,10 +1102,10 @@ given separator between each.

§Examples
assert_eq!(["hello", "world"].connect(" "), "hello world");
 assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
-

Trait Implementations§

§

impl AsRef<[u8]> for SerializedSignature

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SerializedSignature

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SerializedSignature

§

fn clone(&self) -> SerializedSignature

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
§

impl Debug for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl Deref for SerializedSignature

§

type Target = [u8]

The resulting type after dereferencing.
§

fn deref(&self) -> &[u8] ⓘ

Dereferences the value.
§

impl Display for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for SerializedSignature

§

fn hash<H>(&self, state: &mut H)
where +

Trait Implementations§

§

impl AsRef<[u8]> for SerializedSignature

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SerializedSignature

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SerializedSignature

§

fn clone(&self) -> SerializedSignature

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
§

impl Debug for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl Deref for SerializedSignature

§

type Target = [u8]

The resulting type after dereferencing.
§

fn deref(&self) -> &[u8] ⓘ

Dereferences the value.
§

impl Display for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for SerializedSignature

§

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

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a SerializedSignature

§

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?
§

type Item = &'a u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for SerializedSignature

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for SerializedSignature

§

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

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

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

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a SerializedSignature

§

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?
§

type Item = &'a u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for SerializedSignature

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for SerializedSignature

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq<[u8]> for SerializedSignature

§

fn eq(&self, other: &[u8]) -> bool

This method tests for self and other values to be equal, and is used @@ -1114,15 +1114,15 @@ sufficient, and should not be overridden without very good reason.
==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialEq for SerializedSignature

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<[u8]> for SerializedSignature

§

fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<[u8]> for SerializedSignature

§

fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd<SerializedSignature> for [u8]

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<SerializedSignature> for [u8]

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
§

impl PartialOrd for SerializedSignature

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd for SerializedSignature

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( +operator. Read more

§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( value: &'a SerializedSignature -) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( value: SerializedSignature ) -> Result<Signature, <Signature as TryFrom<SerializedSignature>>::Error>

Performs the conversion.
§

impl Copy for SerializedSignature

§

impl Eq for SerializedSignature

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.SerializedSignature.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.SerializedSignature.html index 92620fb4c6..33fdab805a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.SerializedSignature.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.SerializedSignature.html @@ -1102,10 +1102,10 @@ given separator between each.

§Examples
assert_eq!(["hello", "world"].connect(" "), "hello world");
 assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
-

Trait Implementations§

§

impl AsRef<[u8]> for SerializedSignature

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SerializedSignature

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SerializedSignature

§

fn clone(&self) -> SerializedSignature

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
§

impl Debug for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl Deref for SerializedSignature

§

type Target = [u8]

The resulting type after dereferencing.
§

fn deref(&self) -> &[u8] ⓘ

Dereferences the value.
§

impl Display for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for SerializedSignature

§

fn hash<H>(&self, state: &mut H)
where +

Trait Implementations§

§

impl AsRef<[u8]> for SerializedSignature

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SerializedSignature

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SerializedSignature

§

fn clone(&self) -> SerializedSignature

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
§

impl Debug for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl Deref for SerializedSignature

§

type Target = [u8]

The resulting type after dereferencing.
§

fn deref(&self) -> &[u8] ⓘ

Dereferences the value.
§

impl Display for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for SerializedSignature

§

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

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a SerializedSignature

§

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?
§

type Item = &'a u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for SerializedSignature

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for SerializedSignature

§

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

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

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

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a SerializedSignature

§

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?
§

type Item = &'a u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for SerializedSignature

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for SerializedSignature

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq<[u8]> for SerializedSignature

§

fn eq(&self, other: &[u8]) -> bool

This method tests for self and other values to be equal, and is used @@ -1114,15 +1114,15 @@ sufficient, and should not be overridden without very good reason.
==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialEq for SerializedSignature

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<[u8]> for SerializedSignature

§

fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<[u8]> for SerializedSignature

§

fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd<SerializedSignature> for [u8]

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<SerializedSignature> for [u8]

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
§

impl PartialOrd for SerializedSignature

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd for SerializedSignature

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( +operator. Read more

§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( value: &'a SerializedSignature -) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( value: SerializedSignature ) -> Result<Signature, <Signature as TryFrom<SerializedSignature>>::Error>

Performs the conversion.
§

impl Copy for SerializedSignature

§

impl Eq for SerializedSignature

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.Signature.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.Signature.html index 451795d461..20df2aed0f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.Signature.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/ecdsa/struct.Signature.html @@ -34,8 +34,8 @@ which ensures that the s value lies in the lower half of its range.

pub fn serialize_der(&self) -> SerializedSignature

Serializes the signature in DER format

pub fn serialize_compact(&self) -> [u8; 64]

Serializes the signature in compact format

Trait Implementations§

§

impl CPtr for Signature

§

impl Clone for Signature

§

fn clone(&self) -> Signature

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
§

impl Debug for Signature

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Signature

§

fn deserialize<D>(d: D) -> Result<Signature, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Signature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for Signature

Creates a new signature from a FFI signature

-
§

fn from(sig: Signature) -> Signature

Converts to this type from the input type.
§

impl FromStr for Signature

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Signature, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for Signature

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Signature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for Signature

Creates a new signature from a FFI signature

+
§

fn from(sig: Signature) -> Signature

Converts to this type from the input type.
§

impl FromStr for Signature

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Signature, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for Signature

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Signature

§

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

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

fn max(self, other: Self) -> Self
where @@ -49,9 +49,9 @@ operator. Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( + S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( value: &'a SerializedSignature -) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( +) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( value: SerializedSignature ) -> Result<Signature, <Signature as TryFrom<SerializedSignature>>::Error>

Performs the conversion.
§

impl Copy for Signature

§

impl Eq for Signature

§

impl StructuralPartialEq for Signature

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/enum.Error.html index 3a71554678..1eca1e393d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/enum.Error.html @@ -24,7 +24,7 @@
§

InvalidPublicKeySum

Bad set of public keys.

§

InvalidParityValue(InvalidParityValue)

The only valid parity values are 0 or 1.

§

InvalidEllSwift

Bad EllSwift value

-

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for FromSliceError

§

fn from(e: Error) -> FromSliceError

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for MessageSignatureError

§

fn from(e: Error) -> MessageSignatureError

Converts to this type from the input type.
§

impl From<Error> for ParseCompressedPublicKeyError

§

fn from(e: Error) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl From<Error> for SigFromSliceError

§

fn from(e: Error) -> SigFromSliceError

Converts to this type from the input type.
§

impl From<InvalidParityValue> for Error

§

fn from(error: InvalidParityValue) -> Error

Converts to this type from the input type.
§

impl Hash for Error

§

fn hash<__H>(&self, state: &mut __H)
where +

Trait Implementations§

§

impl Clone for Error

§

fn clone(&self) -> Error

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
§

impl Debug for Error

§

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

Formats the value using the given formatter. Read more
§

impl Display for Error

§

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

Formats the value using the given formatter. Read more
§

impl Error for Error

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for Error

§

fn from(e: Error) -> Error

Converts to this type from the input type.
§

impl From<Error> for FromSliceError

§

fn from(e: Error) -> FromSliceError

Converts to this type from the input type.
§

impl From<Error> for FromWifError

§

fn from(e: Error) -> FromWifError

Converts to this type from the input type.
§

impl From<Error> for MessageSignatureError

§

fn from(e: Error) -> MessageSignatureError

Converts to this type from the input type.
§

impl From<Error> for ParseCompressedPublicKeyError

§

fn from(e: Error) -> ParseCompressedPublicKeyError

Converts to this type from the input type.
§

impl From<Error> for SigFromSliceError

§

fn from(e: Error) -> SigFromSliceError

Converts to this type from the input type.
§

impl From<InvalidParityValue> for Error

§

fn from(error: InvalidParityValue) -> Error

Converts to this type from the input type.
§

impl Hash for Error

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Error

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Keypair.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Keypair.html index 3198918222..015b34f920 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Keypair.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Keypair.html @@ -98,7 +98,7 @@ of this array to other places in memory. Preventing this behavior is very subtle For more discussion on this, please see the documentation of the zeroize crate.

Trait Implementations§

§

impl CPtr for Keypair

§

impl Clone for Keypair

§

fn clone(&self) -> Keypair

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
§

impl Debug for Keypair

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Keypair

§

fn deserialize<D>(d: D) -> Result<Keypair, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Keypair> for PublicKey

§

fn from(pair: &'a Keypair) -> PublicKey

Converts to this type from the input type.
§

impl<'a> From<&'a Keypair> for SecretKey

§

fn from(pair: &'a Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<Keypair> for PublicKey

§

fn from(pair: Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<Keypair> for SecretKey

§

fn from(pair: Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<TweakedKeypair> for Keypair

§

fn from(pair: TweakedKeypair) -> Keypair

Converts to this type from the input type.
§

impl FromStr for Keypair

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Keypair, <Keypair as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Keypair

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Keypair> for PublicKey

§

fn from(pair: &'a Keypair) -> PublicKey

Converts to this type from the input type.
§

impl<'a> From<&'a Keypair> for SecretKey

§

fn from(pair: &'a Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<Keypair> for PublicKey

§

fn from(pair: Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<Keypair> for SecretKey

§

fn from(pair: Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<TweakedKeypair> for Keypair

§

fn from(pair: TweakedKeypair) -> Keypair

Converts to this type from the input type.
§

impl FromStr for Keypair

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Keypair, <Keypair as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Keypair

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Keypair

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Message.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Message.html index 3ea82805ca..657adee740 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Message.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.Message.html @@ -14,9 +14,9 @@ signature.

§Errors

If digest is not exactly 32 bytes long.

Trait Implementations§

§

impl AsRef<[u8; 32]> for Message

§

fn as_ref(&self) -> &[u8; 32]

Gets a reference to the underlying array

-
§

impl CPtr for Message

§

impl Clone for Message

§

fn clone(&self) -> Message

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
§

impl Debug for Message

§

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

Formats the value using the given formatter. Read more
§

impl Display for Message

§

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

Formats the value using the given formatter. Read more
§

impl From<LegacySighash> for Message

§

fn from(hash: LegacySighash) -> Message

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Message

§

fn from(hash: SegwitV0Sighash) -> Message

Converts to this type from the input type.
§

impl<T> From<T> for Message
where +

§

impl CPtr for Message

§

impl Clone for Message

§

fn clone(&self) -> Message

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
§

impl Debug for Message

§

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

Formats the value using the given formatter. Read more
§

impl Display for Message

§

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

Formats the value using the given formatter. Read more
§

impl From<LegacySighash> for Message

§

fn from(hash: LegacySighash) -> Message

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Message

§

fn from(hash: SegwitV0Sighash) -> Message

Converts to this type from the input type.
§

impl<T> From<T> for Message

§

fn from(t: T) -> Message

Converts a 32-byte hash directly to a message without error paths.

-
§

impl From<TapSighash> for Message

§

fn from(hash: TapSighash) -> Message

Converts to this type from the input type.
§

impl Hash for Message

§

fn hash<__H>(&self, state: &mut __H)
where +

§

impl From<TapSighash> for Message

§

fn from(hash: TapSighash) -> Message

Converts to this type from the input type.
§

impl Hash for Message

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<I> Index<I> for Message
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.PublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.PublicKey.html index 0465f3a8b9..98e18d745b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.PublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.PublicKey.html @@ -101,9 +101,9 @@ normal users should never need to directly interact with FFI types.

§

fn as_c_ptr(&self) -> *const <PublicKey as CPtr>::Target

Obtains a const pointer suitable for use with FFI functions.

§

fn as_mut_c_ptr(&mut self) -> *mut <PublicKey as CPtr>::Target

Obtains a mutable pointer suitable for use with FFI functions.

§

type Target = PublicKey

§

impl Clone for PublicKey

§

fn clone(&self) -> PublicKey

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
§

impl Debug for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PublicKey

§

fn deserialize<D>(d: D) -> Result<PublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Keypair> for PublicKey

§

fn from(pair: &'a Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<Keypair> for PublicKey

§

fn from(pair: Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

Creates a new public key from a FFI public key.

+ D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Keypair> for PublicKey

§

fn from(pair: &'a Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<Keypair> for PublicKey

§

fn from(pair: Keypair) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

Creates a new public key from a FFI public key.

Note, normal users should never need to interact directly with FFI types.

-
§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for PublicKey

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PublicKey, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for PublicKey

§

fn hash<__H>(&self, state: &mut __H)
where +
§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.

§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for PublicKey

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PublicKey, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for PublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl LowerHex for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl MiniscriptKey for PublicKey

§

type Sha256 = Hash

The associated bitcoin::hashes::sha256::Hash for this [MiniscriptKey], used in the diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.SecretKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.SecretKey.html index 748ecc18b7..9b43fd711b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.SecretKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.SecretKey.html @@ -85,8 +85,8 @@ because the implementations are not constant time. Doing so will make your code to side channel attacks. SecretKey::eq is implemented using a constant time algorithm, please consider using it to do comparisons of secret keys.

§

impl CPtr for SecretKey

§

impl Clone for SecretKey

§

fn clone(&self) -> SecretKey

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
§

impl Debug for SecretKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for SecretKey

§

fn deserialize<D>(d: D) -> Result<SecretKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Keypair> for SecretKey

§

fn from(pair: &'a Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<Keypair> for SecretKey

§

fn from(pair: Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<SecretKey> for Scalar

§

fn from(value: SecretKey) -> Scalar

Converts to this type from the input type.
§

impl<T> From<T> for SecretKey
where - T: ThirtyTwoByteHash,

§

fn from(t: T) -> SecretKey

Converts a 32-byte hash directly to a secret key without error paths.

+ D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Keypair> for SecretKey

§

fn from(pair: &'a Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<Keypair> for SecretKey

§

fn from(pair: Keypair) -> SecretKey

Converts to this type from the input type.
§

impl From<SecretKey> for Scalar

§

fn from(value: SecretKey) -> Scalar

Converts to this type from the input type.
§

impl<T> From<T> for SecretKey
where + T: ThirtyTwoByteHash,

§

fn from(t: T) -> SecretKey

Converts a 32-byte hash directly to a secret key without error paths.

§

impl FromStr for SecretKey

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<SecretKey, Error>

Parses a string s to return a value of this type. Read more
§

impl<I> Index<I> for SecretKey
where [u8]: Index<I>,

§

type Output = <[u8] as Index<I>>::Output

The returned type after indexing.
§

fn index(&self, index: I) -> &<SecretKey as Index<I>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl PartialEq for SecretKey

§

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

This implementation is designed to be constant time to help prevent side channel attacks.

1.0.0 · source§

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

This method tests for !=. The default implementation is almost always diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.XOnlyPublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.XOnlyPublicKey.html index 02bd67e4a5..d5fdcaa5fe 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.XOnlyPublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/secp256k1/struct.XOnlyPublicKey.html @@ -86,7 +86,7 @@ significantly faster, so it is wise to design protocols with this in mind.

Trait Implementations§

§

impl CPtr for XOnlyPublicKey

§

impl Clone for XOnlyPublicKey

§

fn clone(&self) -> XOnlyPublicKey

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
§

impl Debug for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XOnlyPublicKey

§

fn deserialize<D>( d: D ) -> Result<XOnlyPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<TweakedPublicKey> for XOnlyPublicKey

§

fn from(pair: TweakedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new schnorr public key from a FFI x-only public key.

+ D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<TweakedPublicKey> for XOnlyPublicKey

§

fn from(pair: TweakedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new schnorr public key from a FFI x-only public key.

§

fn from(pk: XOnlyPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for XOnlyPublicKey

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XOnlyPublicKey, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for XOnlyPublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.P2wpkhError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.P2wpkhError.html index a24f95a80a..c66adf8898 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.P2wpkhError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.P2wpkhError.html @@ -4,7 +4,7 @@ }
Expand description

Error computing a P2WPKH sighash.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Sighash(InputsIndexError)

Error computing the sighash.

§

NotP2wpkhScript

Script is not a witness program for a p2wpkh output.

-

Trait Implementations§

§

impl Clone for P2wpkhError

§

fn clone(&self) -> P2wpkhError

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
§

impl Debug for P2wpkhError

§

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

Formats the value using the given formatter. Read more
§

impl Display for P2wpkhError

§

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

Formats the value using the given formatter. Read more
§

impl Error for P2wpkhError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Infallible> for P2wpkhError

§

fn from(never: Infallible) -> P2wpkhError

Converts to this type from the input type.
§

impl From<InputsIndexError> for P2wpkhError

§

fn from(value: InputsIndexError) -> P2wpkhError

Converts to this type from the input type.
§

impl From<P2wpkhError> for SighashError

§

fn from(e: P2wpkhError) -> SighashError

Converts to this type from the input type.
§

impl From<P2wpkhError> for SignError

§

fn from(e: P2wpkhError) -> SignError

Converts to this type from the input type.
§

impl PartialEq for P2wpkhError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for P2wpkhError

§

fn clone(&self) -> P2wpkhError

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
§

impl Debug for P2wpkhError

§

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

Formats the value using the given formatter. Read more
§

impl Display for P2wpkhError

§

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

Formats the value using the given formatter. Read more
§

impl Error for P2wpkhError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Infallible> for P2wpkhError

§

fn from(never: Infallible) -> P2wpkhError

Converts to this type from the input type.
§

impl From<InputsIndexError> for P2wpkhError

§

fn from(value: InputsIndexError) -> P2wpkhError

Converts to this type from the input type.
§

impl From<P2wpkhError> for SighashError

§

fn from(e: P2wpkhError) -> SighashError

Converts to this type from the input type.
§

impl From<P2wpkhError> for SignError

§

fn from(e: P2wpkhError) -> SignError

Converts to this type from the input type.
§

impl PartialEq for P2wpkhError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for P2wpkhError

§

impl StructuralPartialEq for P2wpkhError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.SigningDataError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.SigningDataError.html index c161149b56..5433088c28 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.SigningDataError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.SigningDataError.html @@ -8,7 +8,7 @@ like those used in *_signature_hash methods do not error.

Trait Implementations§

§

impl<E> Debug for SigningDataError<E>
where E: Debug,

§

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

Formats the value using the given formatter. Read more
§

impl<E> Display for SigningDataError<E>
where E: Display,

§

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

Formats the value using the given formatter. Read more
§

impl<E> Error for SigningDataError<E>
where - E: Error + 'static,

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl<E> From<Error> for SigningDataError<E>

§

fn from(value: Error) -> SigningDataError<E>

Converts to this type from the input type.
§

impl<E> From<Infallible> for SigningDataError<E>

§

fn from(never: Infallible) -> SigningDataError<E>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<E> Freeze for SigningDataError<E>
where + E: Error + 'static,

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl<E> From<Error> for SigningDataError<E>

§

fn from(value: Error) -> SigningDataError<E>

Converts to this type from the input type.
§

impl<E> From<Infallible> for SigningDataError<E>

§

fn from(never: Infallible) -> SigningDataError<E>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<E> Freeze for SigningDataError<E>
where E: Freeze,

§

impl<E> !RefUnwindSafe for SigningDataError<E>

§

impl<E> Send for SigningDataError<E>
where E: Send,

§

impl<E> Sync for SigningDataError<E>
where E: Sync,

§

impl<E> Unpin for SigningDataError<E>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TapSighashType.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TapSighashType.html index 815e2e49b4..7fb8ac00f0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TapSighashType.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TapSighashType.html @@ -24,7 +24,7 @@ to follow it.)

Trait Implementations§

§

impl Clone for TapSighashType

§

fn clone(&self) -> TapSighashType

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
§

impl Debug for TapSighashType

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapSighashType

§

fn deserialize<D>( deserializer: D ) -> Result<TapSighashType, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighashType

§

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

Formats the value using the given formatter. Read more
§

impl From<EcdsaSighashType> for TapSighashType

§

fn from(s: EcdsaSighashType) -> TapSighashType

Converts to this type from the input type.
§

impl From<TapSighashType> for PsbtSighashType

§

fn from(taproot_hash_ty: TapSighashType) -> PsbtSighashType

Converts to this type from the input type.
§

impl FromStr for TapSighashType

§

type Err = SighashTypeParseError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighashType, <TapSighashType as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighashType

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighashType

§

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

Formats the value using the given formatter. Read more
§

impl From<EcdsaSighashType> for TapSighashType

§

fn from(s: EcdsaSighashType) -> TapSighashType

Converts to this type from the input type.
§

impl From<TapSighashType> for PsbtSighashType

§

fn from(taproot_hash_ty: TapSighashType) -> PsbtSighashType

Converts to this type from the input type.
§

impl FromStr for TapSighashType

§

type Err = SighashTypeParseError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighashType, <TapSighashType as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighashType

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for TapSighashType

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TaprootError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TaprootError.html index a84f052c0f..9a28e6723b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TaprootError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/enum.TaprootError.html @@ -12,7 +12,7 @@
§

PrevoutsIndex(PrevoutsIndexError)

Prevouts index error.

§

PrevoutsKind(PrevoutsKindError)

Prevouts kind error.

§

InvalidSighashType(u32)

Invalid Sighash type.

-

Trait Implementations§

§

impl Clone for TaprootError

§

fn clone(&self) -> TaprootError

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
§

impl Debug for TaprootError

§

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

Formats the value using the given formatter. Read more
§

impl Display for TaprootError

§

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

Formats the value using the given formatter. Read more
§

impl Error for TaprootError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Infallible> for TaprootError

§

fn from(never: Infallible) -> TaprootError

Converts to this type from the input type.
§

impl From<InputsIndexError> for TaprootError

§

fn from(e: InputsIndexError) -> TaprootError

Converts to this type from the input type.
§

impl From<PrevoutsIndexError> for TaprootError

§

fn from(e: PrevoutsIndexError) -> TaprootError

Converts to this type from the input type.
§

impl From<PrevoutsKindError> for TaprootError

§

fn from(e: PrevoutsKindError) -> TaprootError

Converts to this type from the input type.
§

impl From<PrevoutsSizeError> for TaprootError

§

fn from(e: PrevoutsSizeError) -> TaprootError

Converts to this type from the input type.
§

impl From<TaprootError> for SighashError

§

fn from(e: TaprootError) -> SighashError

Converts to this type from the input type.
§

impl From<TaprootError> for SignError

§

fn from(e: TaprootError) -> SignError

Converts to this type from the input type.
§

impl PartialEq for TaprootError

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for TaprootError

§

fn clone(&self) -> TaprootError

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
§

impl Debug for TaprootError

§

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

Formats the value using the given formatter. Read more
§

impl Display for TaprootError

§

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

Formats the value using the given formatter. Read more
§

impl Error for TaprootError

§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
§

impl From<Infallible> for TaprootError

§

fn from(never: Infallible) -> TaprootError

Converts to this type from the input type.
§

impl From<InputsIndexError> for TaprootError

§

fn from(e: InputsIndexError) -> TaprootError

Converts to this type from the input type.
§

impl From<PrevoutsIndexError> for TaprootError

§

fn from(e: PrevoutsIndexError) -> TaprootError

Converts to this type from the input type.
§

impl From<PrevoutsKindError> for TaprootError

§

fn from(e: PrevoutsKindError) -> TaprootError

Converts to this type from the input type.
§

impl From<PrevoutsSizeError> for TaprootError

§

fn from(e: PrevoutsSizeError) -> TaprootError

Converts to this type from the input type.
§

impl From<TaprootError> for SighashError

§

fn from(e: TaprootError) -> SighashError

Converts to this type from the input type.
§

impl From<TaprootError> for SignError

§

fn from(e: TaprootError) -> SignError

Converts to this type from the input type.
§

impl PartialEq for TaprootError

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for TaprootError

§

impl StructuralPartialEq for TaprootError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.LegacySighash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.LegacySighash.html index ef91f7a9a6..2c450456c9 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.LegacySighash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.LegacySighash.html @@ -5,7 +5,7 @@

Trait Implementations§

§

impl AsRef<[u8]> for LegacySighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for LegacySighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for LegacySighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for LegacySighash

§

fn clone(&self) -> LegacySighash

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
§

impl Debug for LegacySighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for LegacySighash

§

fn deserialize<D>( d: D ) -> Result<LegacySighash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LegacySighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for LegacySighash

§

fn from(inner: Hash) -> LegacySighash

Converts to this type from the input type.
§

impl From<LegacySighash> for Hash

§

fn from(hashtype: LegacySighash) -> Hash

Converts to this type from the input type.
§

impl From<LegacySighash> for Message

§

fn from(hash: LegacySighash) -> Message

Converts to this type from the input type.
§

impl FromStr for LegacySighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<LegacySighash, <LegacySighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for LegacySighash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LegacySighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for LegacySighash

§

fn from(inner: Hash) -> LegacySighash

Converts to this type from the input type.
§

impl From<LegacySighash> for Hash

§

fn from(hashtype: LegacySighash) -> Hash

Converts to this type from the input type.
§

impl From<LegacySighash> for Message

§

fn from(hash: LegacySighash) -> Message

Converts to this type from the input type.
§

impl FromStr for LegacySighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<LegacySighash, <LegacySighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for LegacySighash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.SegwitV0Sighash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.SegwitV0Sighash.html index 46bfc40447..ca56bbece1 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.SegwitV0Sighash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.SegwitV0Sighash.html @@ -2,10 +2,10 @@

Implementations§

§

impl SegwitV0Sighash

pub fn from_raw_hash(inner: Hash) -> SegwitV0Sighash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SegwitV0Sighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SegwitV0Sighash

§

fn clone(&self) -> SegwitV0Sighash

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
§

impl Debug for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for SegwitV0Sighash

Trait Implementations§

§

impl AsRef<[u8]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SegwitV0Sighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SegwitV0Sighash

§

fn clone(&self) -> SegwitV0Sighash

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
§

impl Debug for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for SegwitV0Sighash

§

fn deserialize<D>( d: D ) -> Result<SegwitV0Sighash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for SegwitV0Sighash

§

fn from(inner: Hash) -> SegwitV0Sighash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Hash

§

fn from(hashtype: SegwitV0Sighash) -> Hash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Message

§

fn from(hash: SegwitV0Sighash) -> Message

Converts to this type from the input type.
§

impl FromStr for SegwitV0Sighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for SegwitV0Sighash

§

fn from(inner: Hash) -> SegwitV0Sighash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Hash

§

fn from(hashtype: SegwitV0Sighash) -> Hash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Message

§

fn from(hash: SegwitV0Sighash) -> Message

Converts to this type from the input type.
§

impl FromStr for SegwitV0Sighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<SegwitV0Sighash, <SegwitV0Sighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for SegwitV0Sighash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.TapSighash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.TapSighash.html index c7467b735e..af5e6a1b40 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.TapSighash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/sighash/struct.TapSighash.html @@ -3,8 +3,8 @@

Implementations§

§

impl TapSighash

pub fn from_raw_hash(inner: Hash<TapSighashTag>) -> TapSighash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash<TapSighashTag>

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash<TapSighashTag>

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for TapSighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapSighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapSighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapSighash

§

fn clone(&self) -> TapSighash

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
§

impl Debug for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapSighash

§

fn deserialize<D>(d: D) -> Result<TapSighash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash<TapSighashTag>> for TapSighash

§

fn from(inner: Hash<TapSighashTag>) -> TapSighash

Converts to this type from the input type.
§

impl From<TapSighash> for Hash<TapSighashTag>

§

fn from(hashtype: TapSighash) -> Hash<TapSighashTag>

Converts to this type from the input type.
§

impl From<TapSighash> for Message

§

fn from(hash: TapSighash) -> Message

Converts to this type from the input type.
§

impl FromStr for TapSighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighash, <TapSighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighash

§

type Engine = <Hash<TapSighashTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for TapSighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapSighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapSighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapSighash

§

fn clone(&self) -> TapSighash

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
§

impl Debug for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapSighash

§

fn deserialize<D>(d: D) -> Result<TapSighash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash<TapSighashTag>> for TapSighash

§

fn from(inner: Hash<TapSighashTag>) -> TapSighash

Converts to this type from the input type.
§

impl From<TapSighash> for Hash<TapSighashTag>

§

fn from(hashtype: TapSighash) -> Hash<TapSighashTag>

Converts to this type from the input type.
§

impl From<TapSighash> for Message

§

fn from(hash: TapSighash) -> Message

Converts to this type from the input type.
§

impl FromStr for TapSighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighash, <TapSighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighash

§

type Engine = <Hash<TapSighashTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapSighashTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Block.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Block.html index 218e242673..e631ab56aa 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Block.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Block.html @@ -36,7 +36,7 @@ including base data and witness data.

__deserializer: __D ) -> Result<Block, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Encodable for Block

§

fn consensus_encode<R>(&self, r: &mut R) -> Result<usize, Error>
where - R: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl PartialEq for Block

§

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

This method tests for self and other values to be equal, and is used + R: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl PartialEq for Block

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Serialize for Block

§

fn serialize<__S>( &self, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.BlockHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.BlockHash.html index c354bf4c0b..6dd8b05e02 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.BlockHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.BlockHash.html @@ -2,11 +2,11 @@

Implementations§

§

impl BlockHash

pub fn from_raw_hash(inner: Hash) -> BlockHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for BlockHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for BlockHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for BlockHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for BlockHash

§

fn clone(&self) -> BlockHash

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
§

impl Debug for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for BlockHash

Trait Implementations§

§

impl AsRef<[u8]> for BlockHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for BlockHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for BlockHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for BlockHash

§

fn clone(&self) -> BlockHash

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
§

impl Debug for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for BlockHash

§

fn consensus_decode<R>(r: &mut R) -> Result<BlockHash, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for BlockHash

§

fn deserialize<D>(d: D) -> Result<BlockHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for BlockHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for BlockHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<&Header> for BlockHash

§

fn from(header: &Header) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Header> for BlockHash

§

fn from(header: Header) -> BlockHash

Converts to this type from the input type.
§

impl FromStr for BlockHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<BlockHash, <BlockHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for BlockHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Block> for BlockHash

§

fn from(block: &Block) -> BlockHash

Converts to this type from the input type.
§

impl From<&Header> for BlockHash

§

fn from(header: &Header) -> BlockHash

Converts to this type from the input type.
§

impl From<Block> for BlockHash

§

fn from(block: Block) -> BlockHash

Converts to this type from the input type.
§

impl From<BlockHash> for Hash

§

fn from(hashtype: BlockHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for BlockHash

§

fn from(inner: Hash) -> BlockHash

Converts to this type from the input type.
§

impl From<Header> for BlockHash

§

fn from(header: Header) -> BlockHash

Converts to this type from the input type.
§

impl FromStr for BlockHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<BlockHash, <BlockHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for BlockHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.CompressedPublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.CompressedPublicKey.html index 628c961095..b3a02e12da 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.CompressedPublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.CompressedPublicKey.html @@ -28,7 +28,7 @@ That’s why this type doesn’t have the to_sort_key method - it w

Trait Implementations§

§

impl Clone for CompressedPublicKey

§

fn clone(&self) -> CompressedPublicKey

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
§

impl Debug for CompressedPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for CompressedPublicKey

§

fn deserialize<D>( d: D ) -> Result<CompressedPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for CompressedPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for CompressedPublicKey

§

type Err = ParseCompressedPublicKeyError

The associated error which can be returned from parsing.
§

fn from_str( + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for CompressedPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for CompressedPublicKey

§

type Err = ParseCompressedPublicKeyError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<CompressedPublicKey, <CompressedPublicKey as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for CompressedPublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHash.html index 931626ac64..9dc6861746 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHash.html @@ -10,7 +10,7 @@ R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for FilterHash

§

fn deserialize<D>(d: D) -> Result<FilterHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for FilterHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for FilterHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl FromStr for FilterHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHash, <FilterHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<FilterHash> for Hash

§

fn from(hashtype: FilterHash) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHash

§

fn from(inner: Hash) -> FilterHash

Converts to this type from the input type.
§

impl FromStr for FilterHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHash, <FilterHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHeader.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHeader.html index 73d6ec4aa2..b79f3917ca 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHeader.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.FilterHeader.html @@ -2,11 +2,11 @@

Implementations§

§

impl FilterHeader

pub fn from_raw_hash(inner: Hash) -> FilterHeader

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for FilterHeader

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for FilterHeader

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for FilterHeader

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for FilterHeader

§

fn clone(&self) -> FilterHeader

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
§

impl Debug for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for FilterHeader

Trait Implementations§

§

impl AsRef<[u8]> for FilterHeader

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for FilterHeader

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for FilterHeader

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for FilterHeader

§

fn clone(&self) -> FilterHeader

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
§

impl Debug for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for FilterHeader

§

fn consensus_decode<R>(r: &mut R) -> Result<FilterHeader, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for FilterHeader

§

fn deserialize<D>(d: D) -> Result<FilterHeader, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for FilterHeader

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for FilterHeader

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl FromStr for FilterHeader

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHeader, <FilterHeader as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHeader

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<FilterHeader> for Hash

§

fn from(hashtype: FilterHeader) -> Hash

Converts to this type from the input type.
§

impl From<Hash> for FilterHeader

§

fn from(inner: Hash) -> FilterHeader

Converts to this type from the input type.
§

impl FromStr for FilterHeader

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<FilterHeader, <FilterHeader as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for FilterHeader

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.LegacySighash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.LegacySighash.html index 94ba370d30..a972275128 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.LegacySighash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.LegacySighash.html @@ -5,7 +5,7 @@

Trait Implementations§

§

impl AsRef<[u8]> for LegacySighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for LegacySighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for LegacySighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for LegacySighash

§

fn clone(&self) -> LegacySighash

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
§

impl Debug for LegacySighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for LegacySighash

§

fn deserialize<D>( d: D ) -> Result<LegacySighash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LegacySighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for LegacySighash

§

fn from(inner: Hash) -> LegacySighash

Converts to this type from the input type.
§

impl From<LegacySighash> for Hash

§

fn from(hashtype: LegacySighash) -> Hash

Converts to this type from the input type.
§

impl From<LegacySighash> for Message

§

fn from(hash: LegacySighash) -> Message

Converts to this type from the input type.
§

impl FromStr for LegacySighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<LegacySighash, <LegacySighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for LegacySighash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for LegacySighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for LegacySighash

§

fn from(inner: Hash) -> LegacySighash

Converts to this type from the input type.
§

impl From<LegacySighash> for Hash

§

fn from(hashtype: LegacySighash) -> Hash

Converts to this type from the input type.
§

impl From<LegacySighash> for Message

§

fn from(hash: LegacySighash) -> Message

Converts to this type from the input type.
§

impl FromStr for LegacySighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<LegacySighash, <LegacySighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for LegacySighash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Opcode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Opcode.html index 10a5c80e3c..a48933f49f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Opcode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Opcode.html @@ -9,7 +9,7 @@ types of opcodes.

in contexts where only pushes are supposed to be allowed.

Implementations§

§

impl Opcode

pub fn classify(self, ctx: ClassifyContext) -> Class

Classifies an Opcode into a broad class.

pub const fn to_u8(self) -> u8

Encodes Opcode as a byte.

-

Trait Implementations§

§

impl Clone for Opcode

§

fn clone(&self) -> Opcode

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
§

impl Debug for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl Display for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl From<WitnessVersion> for Opcode

§

fn from(version: WitnessVersion) -> Opcode

Converts to this type from the input type.
§

impl From<u8> for Opcode

§

fn from(b: u8) -> Opcode

Converts to this type from the input type.
§

impl PartialEq for Opcode

§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

§

impl Clone for Opcode

§

fn clone(&self) -> Opcode

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
§

impl Debug for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl Display for Opcode

§

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

Formats the value using the given formatter. Read more
§

impl From<WitnessVersion> for Opcode

§

fn from(version: WitnessVersion) -> Opcode

Converts to this type from the input type.
§

impl From<u8> for Opcode

§

fn from(b: u8) -> Opcode

Converts to this type from the input type.
§

impl PartialEq for Opcode

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Serialize for Opcode

§

fn serialize<S>( &self, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PubkeyHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PubkeyHash.html index 7c05532b9e..f31cd2cba2 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PubkeyHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PubkeyHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl PubkeyHash

pub fn from_raw_hash(inner: Hash) -> PubkeyHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for PubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for PubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for PubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for PubkeyHash

§

fn clone(&self) -> PubkeyHash

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
§

impl Debug for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PubkeyHash

§

fn deserialize<D>(d: D) -> Result<PubkeyHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for PubkeyHash

§

fn from(inner: Hash) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PubkeyHash> for Hash

§

fn from(hashtype: PubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<PubkeyHash> for PushBytesBuf

§

fn from(hash: PubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl FromStr for PubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PubkeyHash, <PubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for PubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for PubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for PubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for PubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for PubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for PubkeyHash

§

fn clone(&self) -> PubkeyHash

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
§

impl Debug for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PubkeyHash

§

fn deserialize<D>(d: D) -> Result<PubkeyHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for PubkeyHash

§

fn from(key: &CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PubkeyHash

§

fn from(key: CompressedPublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for PubkeyHash

§

fn from(inner: Hash) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PubkeyHash> for Hash

§

fn from(hashtype: PubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<PubkeyHash> for PushBytesBuf

§

fn from(hash: PubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl FromStr for PubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PubkeyHash, <PubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for PubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PublicKey.html index 2cd09764f4..24fe4be4ee 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.PublicKey.html @@ -73,7 +73,7 @@ unsorted.sort_unstable_by_key(|k| PublicKey::to_sort_key(*Result<(), Error>
where C: Verification,

Checks that sig is a valid ECDSA signature for msg using this public key.

Trait Implementations§

§

impl Clone for PublicKey

§

fn clone(&self) -> PublicKey

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
§

impl Debug for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for PublicKey

§

fn deserialize<D>(d: D) -> Result<PublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for PublicKey

§

type Err = ParsePublicKeyError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PublicKey, ParsePublicKeyError>

Parses a string s to return a value of this type. Read more
§

impl Hash for PublicKey

§

fn hash<__H>(&self, state: &mut __H)
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for PublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<&PublicKey> for PubkeyHash

§

fn from(key: &PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for PublicKey

§

fn from(value: CompressedPublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for PubkeyHash

§

fn from(key: PublicKey) -> PubkeyHash

Converts to this type from the input type.
§

impl From<PublicKey> for PublicKey

§

fn from(pk: PublicKey) -> PublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for PublicKey

§

type Err = ParsePublicKeyError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<PublicKey, ParsePublicKeyError>

Parses a string s to return a value of this type. Read more
§

impl Hash for PublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl MiniscriptKey for PublicKey

§

fn is_uncompressed(&self) -> bool

Returns the compressed-ness of the underlying secp256k1 key.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Script.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Script.html index 9c0ca8fd6f..5a57b8ebd2 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Script.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Script.html @@ -148,45 +148,45 @@ For better performance you should generally prefer displaying the script but if required (this is common in tests) this method can be used.

pub fn first_opcode(&self) -> Option<Opcode>

Returns the first opcode of the script (if there is any).

pub fn into_script_buf(self: Box<Script>) -> ScriptBuf

Converts a Box<Script> into a ScriptBuf without copying or allocating.

-

Trait Implementations§

§

impl AsMut<[u8]> for Script

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for Script

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Script

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for Script

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Debug for Script

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for &'de Script

Can only deserialize borrowed bytes.

+

Trait Implementations§

§

impl AsMut<[u8]> for Script

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for Script

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for Script

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for Script

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Debug for Script

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for &'de Script

Can only deserialize borrowed bytes.

§

fn deserialize<D>( deserializer: D ) -> Result<&'de Script, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Script

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Script

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl<'a> From<&'a Script> for Arc<Script>

Note: This will fail to compile on old Rust for targets that don’t support atomics

-
§

fn from(value: &'a Script) -> Arc<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Box<Script>

§

fn from(value: &'a Script) -> Box<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Cow<'a, Script>

§

fn from(value: &'a Script) -> Cow<'a, Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Rc<Script>

§

fn from(value: &'a Script) -> Rc<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for Box<Script>

§

fn from(value: Cow<'a, Script>) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl Hash for Script

§

fn hash<__H>(&self, state: &mut __H)
where +
§

fn from(value: &'a Script) -> Arc<Script>

Converts to this type from the input type.

§

impl<'a> From<&'a Script> for Box<Script>

§

fn from(value: &'a Script) -> Box<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Cow<'a, Script>

§

fn from(value: &'a Script) -> Cow<'a, Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for Rc<Script>

§

fn from(value: &'a Script) -> Rc<Script>

Converts to this type from the input type.
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for Box<Script>

§

fn from(value: Cow<'a, Script>) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl Hash for Script

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
§

impl Index<(Bound<usize>, Bound<usize>)> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: (Bound<usize>, Bound<usize>) ) -> &<Script as Index<(Bound<usize>, Bound<usize>)>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<Range<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: Range<usize>) -> &<Script as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFrom<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: Range<usize>) -> &<Script as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFrom<usize>> for Script

Script subslicing operation - read slicing safety!

+
§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeFrom<usize> ) -> &<Script as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeFull> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: RangeFull) -> &<Script as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeInclusive<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index(&self, index: RangeFull) -> &<Script as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeInclusive<usize>> for Script

Script subslicing operation - read slicing safety!

+
§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeInclusive<usize> ) -> &<Script as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeTo<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeTo<usize> ) -> &<Script as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl Index<RangeToInclusive<usize>> for Script

Script subslicing operation - read slicing safety!

-
§

type Output = Script

The returned type after indexing.
§

fn index( +

§

type Output = Script

The returned type after indexing.
§

fn index( &self, index: RangeToInclusive<usize> -) -> &<Script as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
§

impl LowerHex for Script

§

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

Formats the value using the given formatter. Read more
§

impl Ord for Script

§

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

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

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +) -> &<Script as Index<RangeToInclusive<usize>>>::Output
Performs the indexing (container[index]) operation. Read more
§

impl LowerHex for Script

§

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

Formats the value using the given formatter. Read more
§

impl Ord for Script

§

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

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

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialEq<ScriptBuf> for Script

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialEq for Script

§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialEq for Script

§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl PartialOrd for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Serialize for Script

§

fn serialize<S>( diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptBuf.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptBuf.html index b91208d053..b5d9b9b0b3 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptBuf.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptBuf.html @@ -186,32 +186,32 @@ returned if a push is not minimal.

For better performance you should generally prefer displaying the script but if String is required (this is common in tests) this method can be used.

pub fn first_opcode(&self) -> Option<Opcode>

Returns the first opcode of the script (if there is any).

-

Trait Implementations§

§

impl AsMut<[u8]> for ScriptBuf

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ScriptBuf

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Clone for ScriptBuf

§

fn clone(&self) -> ScriptBuf

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
§

impl Debug for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for ScriptBuf

Trait Implementations§

§

impl AsMut<[u8]> for ScriptBuf

§

fn as_mut(&mut self) -> &mut [u8] ⓘ

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsMut<Script> for ScriptBuf

§

fn as_mut(&mut self) -> &mut Script

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for ScriptBuf

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<Script> for ScriptBuf

§

fn as_ref(&self) -> &Script

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<Script> for ScriptBuf

§

fn borrow(&self) -> &Script

Immutably borrows from an owned value. Read more
§

impl BorrowMut<Script> for ScriptBuf

§

fn borrow_mut(&mut self) -> &mut Script

Mutably borrows from an owned value. Read more
§

impl Clone for ScriptBuf

§

fn clone(&self) -> ScriptBuf

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
§

impl Debug for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for ScriptBuf

§

fn consensus_decode_from_finite_reader<R>(r: &mut R) -> Result<ScriptBuf, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

fn consensus_decode<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

impl Default for ScriptBuf

§

fn default() -> ScriptBuf

Returns the “default value” for a type. Read more
§

impl Deref for ScriptBuf

§

type Target = Script

The resulting type after dereferencing.
§

fn deref(&self) -> &<ScriptBuf as Deref>::Target

Dereferences the value.
§

impl DerefMut for ScriptBuf

§

fn deref_mut(&mut self) -> &mut <ScriptBuf as Deref>::Target

Mutably dereferences the value.
§

impl<'de> Deserialize<'de> for ScriptBuf

§

fn deserialize<D>( deserializer: D ) -> Result<ScriptBuf, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for ScriptBuf

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl<'a> Extend<Instruction<'a>> for ScriptBuf

§

fn extend<T>(&mut self, iter: T)
where - T: IntoIterator<Item = Instruction<'a>>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Address> for ScriptBuf

§

fn from(a: Address) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for ScriptBuf

§

fn from(value: Cow<'a, Script>) -> ScriptBuf

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Cow<'_, Script>

§

fn from(value: ScriptBuf) -> Cow<'_, Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for Vec<u8>

§

fn from(v: ScriptBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Vec<u8>> for ScriptBuf

§

fn from(v: Vec<u8>) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> FromIterator<Instruction<'a>> for ScriptBuf

§

fn from_iter<T>(iter: T) -> ScriptBuf
where + T: IntoIterator<Item = Instruction<'a>>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
§

impl<'a> From<&'a Script> for ScriptBuf

§

fn from(value: &'a Script) -> ScriptBuf

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Address> for ScriptBuf

§

fn from(a: Address) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, Script>> for ScriptBuf

§

fn from(value: Cow<'a, Script>) -> ScriptBuf

Converts to this type from the input type.
§

impl From<ScriptBuf> for Box<Script>

§

fn from(v: ScriptBuf) -> Box<Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for Cow<'_, Script>

§

fn from(value: ScriptBuf) -> Cow<'_, Script>

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for Vec<u8>

§

fn from(v: ScriptBuf) -> Vec<u8> ⓘ

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Vec<u8>> for ScriptBuf

§

fn from(v: Vec<u8>) -> ScriptBuf

Converts to this type from the input type.
§

impl<'a> FromIterator<Instruction<'a>> for ScriptBuf

§

fn from_iter<T>(iter: T) -> ScriptBuf
where T: IntoIterator<Item = Instruction<'a>>,

Creates a value from an iterator. Read more
§

impl Hash for ScriptBuf

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl LowerHex for ScriptBuf

§

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

Formats the value using the given formatter. Read more
§

impl Ord for ScriptBuf

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 - Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used + Self: Sized + PartialOrd,
Restrict a value to a certain interval. Read more
§

impl PartialEq<Script> for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
§

impl PartialEq<ScriptBuf> for Script

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialEq<ScriptBuf> for Script

§

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

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
§

impl PartialEq for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialEq for ScriptBuf

§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<Script> for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
§

impl PartialOrd<ScriptBuf> for Script

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd for ScriptBuf

§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Serialize for ScriptBuf

§

fn serialize<S>( &self, serializer: S diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptHash.html index 751ddae055..8588ed59ce 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.ScriptHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl ScriptHash

pub fn from_raw_hash(inner: Hash) -> ScriptHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for ScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for ScriptHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for ScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for ScriptHash

§

fn clone(&self) -> ScriptHash

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
§

impl Debug for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ScriptHash

§

fn deserialize<D>(d: D) -> Result<ScriptHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<Hash> for ScriptHash

§

fn from(inner: Hash) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptHash> for Hash

§

fn from(hashtype: ScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<ScriptHash> for PushBytesBuf

§

fn from(hash: ScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for ScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<ScriptHash, <ScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for ScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for ScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for ScriptHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for ScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for ScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for ScriptHash

§

fn clone(&self) -> ScriptHash

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
§

impl Debug for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for ScriptHash

§

fn deserialize<D>(d: D) -> Result<ScriptHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for ScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for ScriptHash

§

fn from(script: &Script) -> ScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for ScriptHash

§

fn from(script: &ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<Hash> for ScriptHash

§

fn from(inner: Hash) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for ScriptHash

§

fn from(script: ScriptBuf) -> ScriptHash

Converts to this type from the input type.
§

impl From<ScriptHash> for Hash

§

fn from(hashtype: ScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<ScriptHash> for PushBytesBuf

§

fn from(hash: ScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for ScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<ScriptHash, <ScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for ScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.SegwitV0Sighash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.SegwitV0Sighash.html index 4831622ffa..d90f16f5f0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.SegwitV0Sighash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.SegwitV0Sighash.html @@ -2,10 +2,10 @@

Implementations§

§

impl SegwitV0Sighash

pub fn from_raw_hash(inner: Hash) -> SegwitV0Sighash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SegwitV0Sighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SegwitV0Sighash

§

fn clone(&self) -> SegwitV0Sighash

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
§

impl Debug for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for SegwitV0Sighash

Trait Implementations§

§

impl AsRef<[u8]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for SegwitV0Sighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SegwitV0Sighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SegwitV0Sighash

§

fn clone(&self) -> SegwitV0Sighash

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
§

impl Debug for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for SegwitV0Sighash

§

fn deserialize<D>( d: D ) -> Result<SegwitV0Sighash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for SegwitV0Sighash

§

fn from(inner: Hash) -> SegwitV0Sighash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Hash

§

fn from(hashtype: SegwitV0Sighash) -> Hash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Message

§

fn from(hash: SegwitV0Sighash) -> Message

Converts to this type from the input type.
§

impl FromStr for SegwitV0Sighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for SegwitV0Sighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash> for SegwitV0Sighash

§

fn from(inner: Hash) -> SegwitV0Sighash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Hash

§

fn from(hashtype: SegwitV0Sighash) -> Hash

Converts to this type from the input type.
§

impl From<SegwitV0Sighash> for Message

§

fn from(hash: SegwitV0Sighash) -> Message

Converts to this type from the input type.
§

impl FromStr for SegwitV0Sighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<SegwitV0Sighash, <SegwitV0Sighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for SegwitV0Sighash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Sequence.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Sequence.html index 313edfa740..e29dfda3da 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Sequence.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Sequence.html @@ -94,7 +94,7 @@ for dissatisfying pkh.
Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<&str> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: &str) -> Result<Sequence, <Sequence as TryFrom<&str>>::Error>

Performs the conversion.
§

impl TryFrom<Box<str>> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from( s: Box<str> -) -> Result<Sequence, <Sequence as TryFrom<Box<str>>>::Error>

Performs the conversion.
§

impl TryFrom<Sequence> for LockTime

§

type Error = DisabledLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<LockTime, DisabledLockTimeError>

Performs the conversion.
§

impl TryFrom<Sequence> for RelLockTime

§

type Error = RelLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<RelLockTime, RelLockTimeError>

Performs the conversion.
§

impl TryFrom<String> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Sequence, <Sequence as TryFrom<String>>::Error>

Performs the conversion.
§

impl UpperHex for Sequence

§

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

Formats the value using the given formatter. Read more
§

impl Copy for Sequence

§

impl Eq for Sequence

§

impl StructuralPartialEq for Sequence

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +) -> Result<Sequence, <Sequence as TryFrom<Box<str>>>::Error>

Performs the conversion.
§

impl TryFrom<Sequence> for LockTime

§

type Error = DisabledLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<LockTime, DisabledLockTimeError>

Performs the conversion.
§

impl TryFrom<Sequence> for RelLockTime

§

type Error = RelLockTimeError

The type returned in the event of a conversion error.
§

fn try_from(seq: Sequence) -> Result<RelLockTime, RelLockTimeError>

Performs the conversion.
§

impl TryFrom<String> for Sequence

§

type Error = ParseIntError

The type returned in the event of a conversion error.
§

fn try_from(s: String) -> Result<Sequence, <Sequence as TryFrom<String>>::Error>

Performs the conversion.
§

impl UpperHex for Sequence

§

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

Formats the value using the given formatter. Read more
§

impl Copy for Sequence

§

impl Eq for Sequence

§

impl StructuralPartialEq for Sequence

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
§

impl<T, Pk> AssetProvider<Pk> for T
where T: Satisfier<Pk>, Pk: MiniscriptKey + ToPublicKey,

§

fn provider_lookup_ecdsa_sig(&self, pk: &Pk) -> bool

Given a public key, look up an ECDSA signature with that key, return whether we found it
§

fn provider_lookup_tap_key_spend_sig(&self, _: &Pk) -> Option<usize>

Lookup the tap key spend sig and return its size
§

fn provider_lookup_tap_leaf_script_sig( diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapLeafHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapLeafHash.html index d056f616f3..1e6a556e46 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapLeafHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapLeafHash.html @@ -4,11 +4,11 @@

pub fn to_raw_hash(self) -> Hash<TapLeafTag>

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash<TapLeafTag>

Returns a reference to the inner hash (sha256, sh256d etc.).

§

impl TapLeafHash

pub fn from_script(script: &Script, ver: LeafVersion) -> TapLeafHash

Computes the leaf hash from components.

-

Trait Implementations§

§

impl AsRef<[u8]> for TapLeafHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapLeafHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapLeafHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapLeafHash

§

fn clone(&self) -> TapLeafHash

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
§

impl Debug for TapLeafHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for TapLeafHash

Trait Implementations§

§

impl AsRef<[u8]> for TapLeafHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapLeafHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapLeafHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapLeafHash

§

fn clone(&self) -> TapLeafHash

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
§

impl Debug for TapLeafHash

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for TapLeafHash

§

fn consensus_decode<R>(r: &mut R) -> Result<TapLeafHash, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for TapLeafHash

§

fn deserialize<D>(d: D) -> Result<TapLeafHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapLeafHash

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for TapLeafHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash<TapLeafTag>> for TapLeafHash

§

fn from(inner: Hash<TapLeafTag>) -> TapLeafHash

Converts to this type from the input type.
§

impl<'s> From<ScriptPath<'s>> for TapLeafHash

§

fn from(script_path: ScriptPath<'s>) -> TapLeafHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for Hash<TapLeafTag>

§

fn from(hashtype: TapLeafHash) -> Hash<TapLeafTag>

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl FromStr for TapLeafHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapLeafHash, <TapLeafHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapLeafHash

§

type Engine = <Hash<TapLeafTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<Hash<TapLeafTag>> for TapLeafHash

§

fn from(inner: Hash<TapLeafTag>) -> TapLeafHash

Converts to this type from the input type.
§

impl<'s> From<ScriptPath<'s>> for TapLeafHash

§

fn from(script_path: ScriptPath<'s>) -> TapLeafHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for Hash<TapLeafTag>

§

fn from(hashtype: TapLeafHash) -> Hash<TapLeafTag>

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl FromStr for TapLeafHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapLeafHash, <TapLeafHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapLeafHash

§

type Engine = <Hash<TapLeafTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapLeafTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapNodeHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapNodeHash.html index ac6f5a0190..e5a86b0f7c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapNodeHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapNodeHash.html @@ -9,8 +9,8 @@ hash is constructed from a hidden node. This also has better ergonomics because it does not require the caller to import the Hash trait.

pub fn from_script(script: &Script, ver: LeafVersion) -> TapNodeHash

Computes the TapNodeHash from a script and a leaf version.

-

Trait Implementations§

§

impl AsRef<[u8]> for TapNodeHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapNodeHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapNodeHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapNodeHash

§

fn clone(&self) -> TapNodeHash

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
§

impl Debug for TapNodeHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapNodeHash

§

fn deserialize<D>(d: D) -> Result<TapNodeHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapNodeHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&LeafNode> for TapNodeHash

§

fn from(leaf: &LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<Hash<TapBranchTag>> for TapNodeHash

§

fn from(inner: Hash<TapBranchTag>) -> TapNodeHash

Converts to this type from the input type.
§

impl From<LeafNode> for TapNodeHash

§

fn from(leaf: LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapNodeHash> for Hash<TapBranchTag>

§

fn from(hashtype: TapNodeHash) -> Hash<TapBranchTag>

Converts to this type from the input type.
§

impl FromStr for TapNodeHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapNodeHash, <TapNodeHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapNodeHash

§

type Engine = <Hash<TapBranchTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for TapNodeHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapNodeHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapNodeHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapNodeHash

§

fn clone(&self) -> TapNodeHash

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
§

impl Debug for TapNodeHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapNodeHash

§

fn deserialize<D>(d: D) -> Result<TapNodeHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapNodeHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&LeafNode> for TapNodeHash

§

fn from(leaf: &LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<Hash<TapBranchTag>> for TapNodeHash

§

fn from(inner: Hash<TapBranchTag>) -> TapNodeHash

Converts to this type from the input type.
§

impl From<LeafNode> for TapNodeHash

§

fn from(leaf: LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapNodeHash> for Hash<TapBranchTag>

§

fn from(hashtype: TapNodeHash) -> Hash<TapBranchTag>

Converts to this type from the input type.
§

impl FromStr for TapNodeHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapNodeHash, <TapNodeHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapNodeHash

§

type Engine = <Hash<TapBranchTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapBranchTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapSighash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapSighash.html index 1579d52ec8..6783a3ba61 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapSighash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapSighash.html @@ -3,8 +3,8 @@

Implementations§

§

impl TapSighash

pub fn from_raw_hash(inner: Hash<TapSighashTag>) -> TapSighash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash<TapSighashTag>

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash<TapSighashTag>

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for TapSighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapSighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapSighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapSighash

§

fn clone(&self) -> TapSighash

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
§

impl Debug for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapSighash

§

fn deserialize<D>(d: D) -> Result<TapSighash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash<TapSighashTag>> for TapSighash

§

fn from(inner: Hash<TapSighashTag>) -> TapSighash

Converts to this type from the input type.
§

impl From<TapSighash> for Hash<TapSighashTag>

§

fn from(hashtype: TapSighash) -> Hash<TapSighashTag>

Converts to this type from the input type.
§

impl From<TapSighash> for Message

§

fn from(hash: TapSighash) -> Message

Converts to this type from the input type.
§

impl FromStr for TapSighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighash, <TapSighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighash

§

type Engine = <Hash<TapSighashTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for TapSighash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapSighash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapSighash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapSighash

§

fn clone(&self) -> TapSighash

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
§

impl Debug for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapSighash

§

fn deserialize<D>(d: D) -> Result<TapSighash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapSighash

§

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

Formats the value using the given formatter. Read more
§

impl From<Hash<TapSighashTag>> for TapSighash

§

fn from(inner: Hash<TapSighashTag>) -> TapSighash

Converts to this type from the input type.
§

impl From<TapSighash> for Hash<TapSighashTag>

§

fn from(hashtype: TapSighash) -> Hash<TapSighashTag>

Converts to this type from the input type.
§

impl From<TapSighash> for Message

§

fn from(hash: TapSighash) -> Message

Converts to this type from the input type.
§

impl FromStr for TapSighash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapSighash, <TapSighash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapSighash

§

type Engine = <Hash<TapSighashTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapSighashTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapTweakHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapTweakHash.html index 317eb9a911..9b755f1e48 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapTweakHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TapTweakHash.html @@ -10,7 +10,7 @@ P is the internal key and R is the merkle root.

pub fn to_scalar(self) -> Scalar

Converts a TapTweakHash into a Scalar ready for use with key tweaking API.

Trait Implementations§

§

impl AsRef<[u8]> for TapTweakHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapTweakHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapTweakHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapTweakHash

§

fn clone(&self) -> TapTweakHash

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
§

impl Debug for TapTweakHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapTweakHash

§

fn deserialize<D>(d: D) -> Result<TapTweakHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapTweakHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: &TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl From<Hash<TapTweakTag>> for TapTweakHash

§

fn from(inner: Hash<TapTweakTag>) -> TapTweakHash

Converts to this type from the input type.
§

impl From<TapTweakHash> for Hash<TapTweakTag>

§

fn from(hashtype: TapTweakHash) -> Hash<TapTweakTag>

Converts to this type from the input type.
§

impl From<TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl FromStr for TapTweakHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapTweakHash, <TapTweakHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapTweakHash

§

type Engine = <Hash<TapTweakTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapTweakHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: &TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl From<Hash<TapTweakTag>> for TapTweakHash

§

fn from(inner: Hash<TapTweakTag>) -> TapTweakHash

Converts to this type from the input type.
§

impl From<TapTweakHash> for Hash<TapTweakTag>

§

fn from(hashtype: TapTweakHash) -> Hash<TapTweakTag>

Converts to this type from the input type.
§

impl From<TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl FromStr for TapTweakHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapTweakHash, <TapTweakHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapTweakHash

§

type Engine = <Hash<TapTweakTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapTweakTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Transaction.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Transaction.html index cfd51ec358..d7e7af7d1b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Transaction.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Transaction.html @@ -148,7 +148,7 @@ as well as any segwit sigops will not be counted for that input.

__deserializer: __D ) -> Result<Transaction, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Encodable for Transaction

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl Hash for Transaction

§

fn hash<__H>(&self, state: &mut __H)
where + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl Hash for Transaction

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Transaction

§

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

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

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TxMerkleNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TxMerkleNode.html index dc4354169f..de1ffdbe92 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TxMerkleNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.TxMerkleNode.html @@ -6,7 +6,7 @@ R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for TxMerkleNode

§

fn deserialize<D>(d: D) -> Result<TxMerkleNode, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TxMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for TxMerkleNode

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for TxMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TxMerkleNode, <TxMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TxMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<Hash> for TxMerkleNode

§

fn from(inner: Hash) -> TxMerkleNode

Converts to this type from the input type.
§

impl From<TxMerkleNode> for Hash

§

fn from(hashtype: TxMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for TxMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TxMerkleNode, <TxMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TxMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Txid.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Txid.html index e1549511cc..2f1fa7723c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Txid.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Txid.html @@ -6,11 +6,11 @@ trait operations. See Implementations§
§

impl Txid

pub fn from_raw_hash(inner: Hash) -> Txid

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for Txid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Txid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Txid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Txid

§

fn clone(&self) -> Txid

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
§

impl Debug for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Txid

Trait Implementations§

§

impl AsRef<[u8]> for Txid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Txid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Txid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Txid

§

fn clone(&self) -> Txid

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
§

impl Debug for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Txid

§

fn consensus_decode<R>(r: &mut R) -> Result<Txid, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Txid

§

fn deserialize<D>(d: D) -> Result<Txid, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Txid

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Txid

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for Txid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Txid, <Txid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Txid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Txid

§

fn from(tx: &Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Hash> for Txid

§

fn from(inner: Hash) -> Txid

Converts to this type from the input type.
§

impl From<Transaction> for Txid

§

fn from(tx: Transaction) -> Txid

Converts to this type from the input type.
§

impl From<Txid> for Hash

§

fn from(hashtype: Txid) -> Hash

Converts to this type from the input type.
§

impl From<Txid> for TxMerkleNode

§

fn from(txid: Txid) -> TxMerkleNode

Converts to this type from the input type.
§

impl FromStr for Txid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Txid, <Txid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Txid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.VarInt.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.VarInt.html index ce94292e95..4b05c2f7a0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.VarInt.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.VarInt.html @@ -6,10 +6,10 @@ R: Read + ?Sized,
Decode Self from a size-limited reader. Read more
§

impl Encodable for VarInt

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<u16> for VarInt

Creates a VarInt from a usize by casting the to a u64.

§

fn from(x: u16) -> VarInt

Converts to this type from the input type.
§

impl From<u32> for VarInt

Creates a VarInt from a usize by casting the to a u64.

-
§

fn from(x: u32) -> VarInt

Converts to this type from the input type.
§

impl From<u64> for VarInt

Creates a VarInt from a usize by casting the to a u64.

+
§

fn from(x: u32) -> VarInt

Converts to this type from the input type.
§

impl From<u64> for VarInt

Creates a VarInt from a usize by casting the to a u64.

§

fn from(x: u64) -> VarInt

Converts to this type from the input type.
§

impl From<u8> for VarInt

Creates a VarInt from a usize by casting the to a u64.

-
§

fn from(x: u8) -> VarInt

Converts to this type from the input type.
§

impl From<usize> for VarInt

Creates a VarInt from a usize by casting the to a u64.

-
§

fn from(x: usize) -> VarInt

Converts to this type from the input type.
§

impl Ord for VarInt

§

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

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

fn max(self, other: Self) -> Self
where +
§

fn from(x: u8) -> VarInt

Converts to this type from the input type.

§

impl From<usize> for VarInt

Creates a VarInt from a usize by casting the to a u64.

+
§

fn from(x: usize) -> VarInt

Converts to this type from the input type.
§

impl Ord for VarInt

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq for VarInt

§

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

This method tests for self and other values to be equal, and is used diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WPubkeyHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WPubkeyHash.html index 1203ff4d6e..9f3d350974 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WPubkeyHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WPubkeyHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl WPubkeyHash

pub fn from_raw_hash(inner: Hash) -> WPubkeyHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WPubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WPubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WPubkeyHash

§

fn clone(&self) -> WPubkeyHash

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
§

impl Debug for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WPubkeyHash

§

fn deserialize<D>(d: D) -> Result<WPubkeyHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for WPubkeyHash

§

fn from(inner: Hash) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for Hash

§

fn from(hashtype: WPubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for PushBytesBuf

§

fn from(hash: WPubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WPubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WPubkeyHash, <WPubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WPubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for WPubkeyHash

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WPubkeyHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WPubkeyHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WPubkeyHash

§

fn clone(&self) -> WPubkeyHash

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
§

impl Debug for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WPubkeyHash

§

fn deserialize<D>(d: D) -> Result<WPubkeyHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WPubkeyHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&CompressedPublicKey> for WPubkeyHash

§

fn from(key: &CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<CompressedPublicKey> for WPubkeyHash

§

fn from(key: CompressedPublicKey) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<Hash> for WPubkeyHash

§

fn from(inner: Hash) -> WPubkeyHash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for Hash

§

fn from(hashtype: WPubkeyHash) -> Hash

Converts to this type from the input type.
§

impl From<WPubkeyHash> for PushBytesBuf

§

fn from(hash: WPubkeyHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WPubkeyHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WPubkeyHash, <WPubkeyHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WPubkeyHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WScriptHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WScriptHash.html index 101e983b35..69f2936fd6 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WScriptHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WScriptHash.html @@ -2,8 +2,8 @@

Implementations§

§

impl WScriptHash

pub fn from_raw_hash(inner: Hash) -> WScriptHash

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WScriptHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WScriptHash

§

fn clone(&self) -> WScriptHash

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
§

impl Debug for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WScriptHash

§

fn deserialize<D>(d: D) -> Result<WScriptHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Hash> for WScriptHash

§

fn from(inner: Hash) -> WScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<WScriptHash> for Hash

§

fn from(hashtype: WScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<WScriptHash> for PushBytesBuf

§

fn from(hash: WScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WScriptHash, <WScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for WScriptHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WScriptHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<PushBytes> for WScriptHash

§

fn as_ref(&self) -> &PushBytes

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WScriptHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WScriptHash

§

fn clone(&self) -> WScriptHash

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
§

impl Debug for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for WScriptHash

§

fn deserialize<D>(d: D) -> Result<WScriptHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WScriptHash

§

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

Formats the value using the given formatter. Read more
§

impl From<&Script> for WScriptHash

§

fn from(script: &Script) -> WScriptHash

Converts to this type from the input type.
§

impl From<&ScriptBuf> for WScriptHash

§

fn from(script: &ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<Hash> for WScriptHash

§

fn from(inner: Hash) -> WScriptHash

Converts to this type from the input type.
§

impl From<ScriptBuf> for WScriptHash

§

fn from(script: ScriptBuf) -> WScriptHash

Converts to this type from the input type.
§

impl From<WScriptHash> for Hash

§

fn from(hashtype: WScriptHash) -> Hash

Converts to this type from the input type.
§

impl From<WScriptHash> for PushBytesBuf

§

fn from(hash: WScriptHash) -> PushBytesBuf

Converts to this type from the input type.
§

impl FromStr for WScriptHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<WScriptHash, <WScriptHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WScriptHash

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WitnessMerkleNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WitnessMerkleNode.html index cb5b48d78c..918bbf8195 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WitnessMerkleNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.WitnessMerkleNode.html @@ -2,13 +2,13 @@

Implementations§

§

impl WitnessMerkleNode

pub fn from_raw_hash(inner: Hash) -> WitnessMerkleNode

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WitnessMerkleNode

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WitnessMerkleNode

§

fn clone(&self) -> WitnessMerkleNode

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
§

impl Debug for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for WitnessMerkleNode

Trait Implementations§

§

impl AsRef<[u8]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for WitnessMerkleNode

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for WitnessMerkleNode

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for WitnessMerkleNode

§

fn clone(&self) -> WitnessMerkleNode

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
§

impl Debug for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for WitnessMerkleNode

§

fn consensus_decode<R>(r: &mut R) -> Result<WitnessMerkleNode, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for WitnessMerkleNode

§

fn deserialize<D>( d: D ) -> Result<WitnessMerkleNode, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for WitnessMerkleNode

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for WitnessMerkleNode

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for WitnessMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( + W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash> for WitnessMerkleNode

§

fn from(inner: Hash) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl From<WitnessMerkleNode> for Hash

§

fn from(hashtype: WitnessMerkleNode) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for WitnessMerkleNode

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<WitnessMerkleNode, <WitnessMerkleNode as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for WitnessMerkleNode

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Wtxid.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Wtxid.html index 5882321d0e..1ab3a5af9a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Wtxid.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.Wtxid.html @@ -2,11 +2,11 @@

Implementations§

§

impl Wtxid

pub fn from_raw_hash(inner: Hash) -> Wtxid

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for Wtxid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Wtxid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Wtxid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Wtxid

§

fn clone(&self) -> Wtxid

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
§

impl Debug for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Wtxid

Trait Implementations§

§

impl AsRef<[u8]> for Wtxid

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for Wtxid

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for Wtxid

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for Wtxid

§

fn clone(&self) -> Wtxid

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
§

impl Debug for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Decodable for Wtxid

§

fn consensus_decode<R>(r: &mut R) -> Result<Wtxid, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for Wtxid

§

fn deserialize<D>(d: D) -> Result<Wtxid, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Wtxid

§

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

Formats the value using the given formatter. Read more
§

impl Encodable for Wtxid

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for Wtxid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Wtxid, <Wtxid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Wtxid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<&Transaction> for Wtxid

§

fn from(tx: &Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Hash> for Wtxid

§

fn from(inner: Hash) -> Wtxid

Converts to this type from the input type.
§

impl From<Transaction> for Wtxid

§

fn from(tx: Transaction) -> Wtxid

Converts to this type from the input type.
§

impl From<Wtxid> for Hash

§

fn from(hashtype: Wtxid) -> Hash

Converts to this type from the input type.
§

impl From<Wtxid> for WitnessMerkleNode

§

fn from(wtxid: Wtxid) -> WitnessMerkleNode

Converts to this type from the input type.
§

impl FromStr for Wtxid

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Wtxid, <Wtxid as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for Wtxid

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = true

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XKeyIdentifier.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XKeyIdentifier.html index 1cb1c83008..facfaf1f1c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XKeyIdentifier.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XKeyIdentifier.html @@ -2,10 +2,10 @@

Implementations§

§

impl XKeyIdentifier

pub fn from_raw_hash(inner: Hash) -> XKeyIdentifier

Creates this wrapper type from the inner hash type.

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

§

impl AsRef<[u8]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for XKeyIdentifier

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for XKeyIdentifier

§

fn clone(&self) -> XKeyIdentifier

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
§

impl Debug for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XKeyIdentifier

Trait Implementations§

§

impl AsRef<[u8]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 20]> for XKeyIdentifier

§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for XKeyIdentifier

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for XKeyIdentifier

§

fn clone(&self) -> XKeyIdentifier

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
§

impl Debug for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XKeyIdentifier

§

fn deserialize<D>( d: D ) -> Result<XKeyIdentifier, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl From<&Xpub> for XKeyIdentifier

§

fn from(key: &Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<Hash> for XKeyIdentifier

§

fn from(inner: Hash) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<XKeyIdentifier> for Hash

§

fn from(hashtype: XKeyIdentifier) -> Hash

Converts to this type from the input type.
§

impl From<Xpub> for XKeyIdentifier

§

fn from(key: Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl FromStr for XKeyIdentifier

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XKeyIdentifier, <XKeyIdentifier as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for XKeyIdentifier

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XKeyIdentifier

§

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

Formats the value using the given formatter. Read more
§

impl From<&Xpub> for XKeyIdentifier

§

fn from(key: &Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<Hash> for XKeyIdentifier

§

fn from(inner: Hash) -> XKeyIdentifier

Converts to this type from the input type.
§

impl From<XKeyIdentifier> for Hash

§

fn from(hashtype: XKeyIdentifier) -> Hash

Converts to this type from the input type.
§

impl From<Xpub> for XKeyIdentifier

§

fn from(key: Xpub) -> XKeyIdentifier

Converts to this type from the input type.
§

impl FromStr for XKeyIdentifier

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XKeyIdentifier, <XKeyIdentifier as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for XKeyIdentifier

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 20usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XOnlyPublicKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XOnlyPublicKey.html index f6e3150a9a..2960debe7c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XOnlyPublicKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/struct.XOnlyPublicKey.html @@ -86,7 +86,7 @@ significantly faster, so it is wise to design protocols with this in mind.

Trait Implementations§

§

impl CPtr for XOnlyPublicKey

§

impl Clone for XOnlyPublicKey

§

fn clone(&self) -> XOnlyPublicKey

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
§

impl Debug for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for XOnlyPublicKey

§

fn deserialize<D>( d: D ) -> Result<XOnlyPublicKey, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<TweakedPublicKey> for XOnlyPublicKey

§

fn from(pair: TweakedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new schnorr public key from a FFI x-only public key.

+ D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for XOnlyPublicKey

§

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

Formats the value using the given formatter. Read more
§

impl From<CompressedPublicKey> for XOnlyPublicKey

§

fn from(pk: CompressedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(pk: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<PublicKey> for XOnlyPublicKey

§

fn from(src: PublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<TweakedPublicKey> for XOnlyPublicKey

§

fn from(pair: TweakedPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new schnorr public key from a FFI x-only public key.

§

fn from(pk: XOnlyPublicKey) -> XOnlyPublicKey

Converts to this type from the input type.
§

impl FromStr for XOnlyPublicKey

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<XOnlyPublicKey, Error>

Parses a string s to return a value of this type. Read more
§

impl Hash for XOnlyPublicKey

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/merkle_branch/struct.TaprootMerkleBranch.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/merkle_branch/struct.TaprootMerkleBranch.html index ba089bd304..454ebf11e9 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/merkle_branch/struct.TaprootMerkleBranch.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/merkle_branch/struct.TaprootMerkleBranch.html @@ -2407,10 +2407,10 @@ given separator between each.

Trait Implementations§

§

impl AsMut<[TapNodeHash]> for TaprootMerkleBranch

§

fn as_mut(&mut self) -> &mut [TapNodeHash]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[TapNodeHash]> for TaprootMerkleBranch

§

fn as_ref(&self) -> &[TapNodeHash]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[TapNodeHash]> for TaprootMerkleBranch

§

fn borrow(&self) -> &[TapNodeHash]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[TapNodeHash]> for TaprootMerkleBranch

§

fn borrow_mut(&mut self) -> &mut [TapNodeHash]

Mutably borrows from an owned value. Read more
§

impl Clone for TaprootMerkleBranch

§

fn clone(&self) -> TaprootMerkleBranch

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
§

impl Debug for TaprootMerkleBranch

§

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

Formats the value using the given formatter. Read more
§

impl Default for TaprootMerkleBranch

§

fn default() -> TaprootMerkleBranch

Returns the “default value” for a type. Read more
§

impl Deref for TaprootMerkleBranch

§

type Target = [TapNodeHash]

The resulting type after dereferencing.
§

fn deref(&self) -> &<TaprootMerkleBranch as Deref>::Target

Dereferences the value.
§

impl DerefMut for TaprootMerkleBranch

§

fn deref_mut(&mut self) -> &mut <TaprootMerkleBranch as Deref>::Target

Mutably dereferences the value.
§

impl<'de> Deserialize<'de> for TaprootMerkleBranch

§

fn deserialize<__D>( __deserializer: __D ) -> Result<TaprootMerkleBranch, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl From<[TapNodeHash; 0]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 0]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 1]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 1]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 10]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 10]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 100]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 100]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 101]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 101]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 102]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 102]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 103]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 103]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 104]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 104]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 105]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 105]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 106]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 106]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 107]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 107]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 108]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 108]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 109]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 109]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 11]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 11]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 110]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 110]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 111]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 111]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 112]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 112]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 113]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 113]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 114]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 114]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 115]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 115]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 116]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 116]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 117]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 117]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 118]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 118]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 119]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 119]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 12]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 12]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 120]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 120]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 121]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 121]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 122]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 122]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 123]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 123]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 124]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 124]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 125]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 125]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 126]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 126]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 127]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 127]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 128]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 128]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 13]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 13]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 14]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 14]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 15]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 15]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 16]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 16]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 17]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 17]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 18]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 18]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 19]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 19]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 2]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 2]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 20]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 20]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 21]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 21]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 22]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 22]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 23]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 23]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 24]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 24]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 25]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 25]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 26]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 26]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 27]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 27]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 28]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 28]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 29]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 29]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 3]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 3]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 30]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 30]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 31]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 31]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 32]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 32]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 33]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 33]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 34]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 34]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 35]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 35]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 36]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 36]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 37]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 37]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 38]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 38]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 39]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 39]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 4]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 4]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 40]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 40]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 41]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 41]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 42]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 42]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 43]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 43]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 44]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 44]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 45]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 45]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 46]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 46]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 47]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 47]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 48]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 48]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 49]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 49]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 5]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 5]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 50]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 50]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 51]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 51]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 52]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 52]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 53]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 53]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 54]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 54]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 55]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 55]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 56]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 56]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 57]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 57]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 58]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 58]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 59]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 59]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 6]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 6]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 60]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 60]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 61]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 61]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 62]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 62]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 63]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 63]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 64]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 64]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 65]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 65]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 66]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 66]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 67]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 67]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 68]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 68]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 69]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 69]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 7]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 7]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 70]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 70]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 71]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 71]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 72]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 72]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 73]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 73]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 74]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 74]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 75]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 75]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 76]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 76]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 77]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 77]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 78]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 78]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 79]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 79]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 8]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 8]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 80]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 80]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 81]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 81]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 82]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 82]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 83]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 83]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 84]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 84]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 85]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 85]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 86]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 86]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 87]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 87]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 88]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 88]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 89]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 89]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 9]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 9]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 90]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 90]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 91]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 91]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 92]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 92]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 93]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 93]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 94]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 94]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 95]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 95]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 96]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 96]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 97]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 97]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 98]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 98]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 99]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 99]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<TaprootMerkleBranch> for Vec<TapNodeHash>

§

fn from(branch: TaprootMerkleBranch) -> Vec<TapNodeHash>

Converts to this type from the input type.
§

impl Hash for TaprootMerkleBranch

§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl From<[TapNodeHash; 0]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 0]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 1]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 1]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 10]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 10]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 100]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 100]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 101]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 101]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 102]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 102]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 103]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 103]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 104]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 104]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 105]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 105]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 106]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 106]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 107]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 107]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 108]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 108]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 109]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 109]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 11]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 11]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 110]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 110]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 111]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 111]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 112]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 112]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 113]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 113]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 114]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 114]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 115]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 115]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 116]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 116]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 117]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 117]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 118]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 118]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 119]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 119]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 12]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 12]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 120]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 120]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 121]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 121]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 122]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 122]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 123]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 123]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 124]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 124]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 125]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 125]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 126]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 126]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 127]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 127]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 128]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 128]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 13]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 13]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 14]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 14]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 15]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 15]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 16]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 16]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 17]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 17]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 18]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 18]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 19]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 19]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 2]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 2]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 20]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 20]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 21]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 21]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 22]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 22]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 23]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 23]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 24]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 24]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 25]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 25]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 26]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 26]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 27]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 27]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 28]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 28]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 29]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 29]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 3]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 3]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 30]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 30]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 31]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 31]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 32]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 32]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 33]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 33]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 34]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 34]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 35]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 35]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 36]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 36]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 37]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 37]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 38]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 38]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 39]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 39]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 4]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 4]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 40]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 40]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 41]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 41]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 42]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 42]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 43]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 43]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 44]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 44]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 45]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 45]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 46]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 46]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 47]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 47]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 48]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 48]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 49]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 49]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 5]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 5]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 50]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 50]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 51]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 51]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 52]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 52]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 53]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 53]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 54]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 54]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 55]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 55]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 56]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 56]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 57]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 57]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 58]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 58]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 59]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 59]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 6]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 6]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 60]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 60]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 61]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 61]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 62]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 62]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 63]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 63]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 64]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 64]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 65]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 65]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 66]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 66]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 67]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 67]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 68]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 68]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 69]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 69]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 7]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 7]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 70]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 70]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 71]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 71]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 72]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 72]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 73]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 73]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 74]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 74]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 75]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 75]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 76]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 76]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 77]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 77]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 78]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 78]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 79]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 79]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 8]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 8]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 80]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 80]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 81]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 81]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 82]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 82]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 83]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 83]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 84]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 84]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 85]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 85]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 86]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 86]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 87]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 87]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 88]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 88]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 89]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 89]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 9]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 9]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 90]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 90]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 91]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 91]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 92]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 92]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 93]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 93]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 94]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 94]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 95]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 95]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 96]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 96]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 97]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 97]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 98]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 98]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 99]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 99]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<TaprootMerkleBranch> for Vec<TapNodeHash>

§

fn from(branch: TaprootMerkleBranch) -> Vec<TapNodeHash>

Converts to this type from the input type.
§

impl Hash for TaprootMerkleBranch

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a TaprootMerkleBranch

§

type IntoIter = Iter<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl<'a> IntoIterator for &'a mut TaprootMerkleBranch

§

type IntoIter = IterMut<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a mut TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a mut TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for TaprootMerkleBranch

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for TaprootMerkleBranch

§

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

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

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

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a TaprootMerkleBranch

§

type IntoIter = Iter<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl<'a> IntoIterator for &'a mut TaprootMerkleBranch

§

type IntoIter = IterMut<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a mut TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a mut TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for TaprootMerkleBranch

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for TaprootMerkleBranch

§

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

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

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

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

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq for TaprootMerkleBranch

§

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

This method tests for self and other values to be equal, and is used @@ -2421,22 +2421,22 @@ operator. Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where - __S: Serializer,
Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<&[TapNodeHash]> for TaprootMerkleBranch

Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<&[TapNodeHash]> for TaprootMerkleBranch

§

fn try_from( v: &[TapNodeHash] ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<&[TapNodeHash]>>::Error>

Creates a merkle proof from list of hashes.

-
§Errors
+
§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Box<[TapNodeHash]>> for TaprootMerkleBranch

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Box<[TapNodeHash]>> for TaprootMerkleBranch

§

fn try_from( v: Box<[TapNodeHash]> ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<Box<[TapNodeHash]>>>::Error>

Creates a merkle proof from list of hashes.

-
§Errors
+
§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<TapNodeHash>> for TaprootMerkleBranch

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<TapNodeHash>> for TaprootMerkleBranch

§

fn try_from( v: Vec<TapNodeHash> ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<Vec<TapNodeHash>>>::Error>

Creates a merkle proof from list of hashes.

-
§Errors
+
§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl Eq for TaprootMerkleBranch

§

impl StructuralPartialEq for TaprootMerkleBranch

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl Eq for TaprootMerkleBranch

§

impl StructuralPartialEq for TaprootMerkleBranch

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
§

impl<Q, K> Equivalent<K> for Q
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/serialized_signature/struct.SerializedSignature.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/serialized_signature/struct.SerializedSignature.html index d1e35f3517..9a0c85813c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/serialized_signature/struct.SerializedSignature.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/serialized_signature/struct.SerializedSignature.html @@ -1102,7 +1102,7 @@ given separator between each.

§Examples
assert_eq!(["hello", "world"].connect(" "), "hello world");
 assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
-

Trait Implementations§

§

impl AsRef<[u8]> for SerializedSignature

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SerializedSignature

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SerializedSignature

§

fn clone(&self) -> SerializedSignature

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
§

impl Debug for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl Deref for SerializedSignature

§

type Target = [u8]

The resulting type after dereferencing.
§

fn deref(&self) -> &[u8] ⓘ

Dereferences the value.
§

impl Display for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for SerializedSignature

§

fn hash<H>(&self, state: &mut H)
where +

Trait Implementations§

§

impl AsRef<[u8]> for SerializedSignature

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for SerializedSignature

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for SerializedSignature

§

fn clone(&self) -> SerializedSignature

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
§

impl Debug for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl Deref for SerializedSignature

§

type Target = [u8]

The resulting type after dereferencing.
§

fn deref(&self) -> &[u8] ⓘ

Dereferences the value.
§

impl Display for SerializedSignature

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for SerializedSignature

§

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

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a SerializedSignature

§

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?
§

type Item = &'a u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for SerializedSignature

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = u8

The type of the elements being iterated over.
§

fn into_iter(self) -> <SerializedSignature as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for SerializedSignature

§

fn cmp(&self, other: &SerializedSignature) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where @@ -1114,12 +1114,12 @@ sufficient, and should not be overridden without very good reason.
==.

1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialEq for SerializedSignature

§

fn eq(&self, other: &SerializedSignature) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<[u8]> for SerializedSignature

§

fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<[u8]> for SerializedSignature

§

fn partial_cmp(&self, other: &[u8]) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= +operator. Read more
§

impl PartialOrd<SerializedSignature> for [u8]

§

fn partial_cmp(&self, other: &SerializedSignature) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd<SerializedSignature> for [u8]

§

fn partial_cmp(&self, other: &SerializedSignature) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= +operator. Read more
§

impl PartialOrd for SerializedSignature

§

fn partial_cmp(&self, other: &SerializedSignature) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
§

impl PartialOrd for SerializedSignature

§

fn partial_cmp(&self, other: &SerializedSignature) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= -operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl<'a> TryFrom<&'a SerializedSignature> for Signature

§

type Error = SigFromSliceError

The type returned in the event of a conversion error.
§

fn try_from( value: &'a SerializedSignature ) -> Result<Signature, <Signature as TryFrom<&'a SerializedSignature>>::Error>

Performs the conversion.
§

impl TryFrom<SerializedSignature> for Signature

§

type Error = SigFromSliceError

The type returned in the event of a conversion error.
§

fn try_from( diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.LeafNode.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.LeafNode.html index 4b1f52cefd..f4af9f7141 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.LeafNode.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.LeafNode.html @@ -15,7 +15,7 @@ See also,

pub fn merkle_branch(&self) -> &TaprootMerkleBranch

Returns reference to the merkle proof (hashing partners) to get this node in form of TaprootMerkleBranch.

pub fn leaf(&self) -> &TapLeaf

Returns a reference to the leaf of this ScriptLeaf.

-

Trait Implementations§

§

impl Clone for LeafNode

§

fn clone(&self) -> LeafNode

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
§

impl Debug for LeafNode

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<&LeafNode> for TapNodeHash

§

fn from(leaf: &LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<LeafNode> for TapNodeHash

§

fn from(leaf: LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl Hash for LeafNode

§

fn hash<__H>(&self, state: &mut __H)
where +

Trait Implementations§

§

impl Clone for LeafNode

§

fn clone(&self) -> LeafNode

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
§

impl Debug for LeafNode

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<&LeafNode> for TapNodeHash

§

fn from(leaf: &LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<LeafNode> for TapNodeHash

§

fn from(leaf: LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl Hash for LeafNode

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for LeafNode

§

fn cmp(&self, other: &LeafNode) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.NodeInfo.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.NodeInfo.html index 4ff584c67b..09ea60066e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.NodeInfo.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.NodeInfo.html @@ -30,13 +30,13 @@ operator. Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<NodeInfo> for TapTree

Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<NodeInfo> for TapTree

§

fn try_from( node_info: NodeInfo ) -> Result<TapTree, <TapTree as TryFrom<NodeInfo>>::Error>

Constructs TapTree from a NodeInfo if it is complete binary tree.

§Returns

A TapTree iff the NodeInfo has no hidden nodes, otherwise return HiddenNodesError error with the content of incomplete NodeInfo instance.

-
§

type Error = HiddenNodesError

The type returned in the event of a conversion error.
§

impl TryFrom<TaprootBuilder> for NodeInfo

§

type Error = IncompleteBuilderError

The type returned in the event of a conversion error.
§

fn try_from( +

§

type Error = HiddenNodesError

The type returned in the event of a conversion error.
§

impl TryFrom<TaprootBuilder> for NodeInfo

§

type Error = IncompleteBuilderError

The type returned in the event of a conversion error.
§

fn try_from( builder: TaprootBuilder ) -> Result<NodeInfo, <NodeInfo as TryFrom<TaprootBuilder>>::Error>

Performs the conversion.
§

impl Eq for NodeInfo

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.Signature.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.Signature.html index 3d1d1d985b..15ec1022ac 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.Signature.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.Signature.html @@ -15,7 +15,7 @@ You can get a slice from it using deref coercions or turn it into an iterator.

Trait Implementations§

§

impl Clone for Signature

§

fn clone(&self) -> Signature

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
§

impl Debug for Signature

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Signature

§

fn deserialize<__D>( __deserializer: __D ) -> Result<Signature, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for Signature

§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<'a> From<&'a Signature> for SerializedSignature

§

fn from(value: &'a Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl From<Signature> for SerializedSignature

§

fn from(value: Signature) -> SerializedSignature

Converts to this type from the input type.
§

impl Hash for Signature

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Signature

§

fn cmp(&self, other: &Signature) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapLeafHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapLeafHash.html index 0809983ebb..f7ff2b836a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapLeafHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapLeafHash.html @@ -4,11 +4,11 @@

pub fn to_raw_hash(self) -> Hash<TapLeafTag>

Returns the inner hash (sha256, sh256d etc.).

pub fn as_raw_hash(&self) -> &Hash<TapLeafTag>

Returns a reference to the inner hash (sha256, sh256d etc.).

§

impl TapLeafHash

pub fn from_script(script: &Script, ver: LeafVersion) -> TapLeafHash

Computes the leaf hash from components.

-

Trait Implementations§

§

impl AsRef<[u8]> for TapLeafHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapLeafHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapLeafHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapLeafHash

§

fn clone(&self) -> TapLeafHash

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
§

impl Debug for TapLeafHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Decodable for TapLeafHash

Trait Implementations§

§

impl AsRef<[u8]> for TapLeafHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapLeafHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapLeafHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapLeafHash

§

fn clone(&self) -> TapLeafHash

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
§

impl Debug for TapLeafHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Decodable for TapLeafHash

§

fn consensus_decode<R>(r: &mut R) -> Result<TapLeafHash, Error>
where R: Read + ?Sized,

Decode an object with a well-defined format. Read more
§

fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + ?Sized,

Decode Self from a size-limited reader. Read more
§

impl<'de> Deserialize<'de> for TapLeafHash

§

fn deserialize<D>(d: D) -> Result<TapLeafHash, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapLeafHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Encodable for TapLeafHash

§

fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
where - W: Write + ?Sized,

Encodes an object with a well-defined format. Read more
§

impl From<Hash<TapLeafTag>> for TapLeafHash

§

fn from(inner: Hash<TapLeafTag>) -> TapLeafHash

Converts to this type from the input type.
§

impl<'s> From<ScriptPath<'s>> for TapLeafHash

§

fn from(script_path: ScriptPath<'s>) -> TapLeafHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for Hash<TapLeafTag>

§

fn from(hashtype: TapLeafHash) -> Hash<TapLeafTag>

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl FromStr for TapLeafHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapLeafHash, <TapLeafHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapLeafHash

§

type Engine = <Hash<TapLeafTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + W: Write + ?Sized,
Encodes an object with a well-defined format. Read more
§

impl From<Hash<TapLeafTag>> for TapLeafHash

§

fn from(inner: Hash<TapLeafTag>) -> TapLeafHash

Converts to this type from the input type.
§

impl<'s> From<ScriptPath<'s>> for TapLeafHash

§

fn from(script_path: ScriptPath<'s>) -> TapLeafHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for Hash<TapLeafTag>

§

fn from(hashtype: TapLeafHash) -> Hash<TapLeafTag>

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl FromStr for TapLeafHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapLeafHash, <TapLeafHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapLeafHash

§

type Engine = <Hash<TapLeafTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapLeafTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapNodeHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapNodeHash.html index 8207de60fe..8bfc380113 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapNodeHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapNodeHash.html @@ -9,8 +9,8 @@ hash is constructed from a hidden node. This also has better ergonomics because it does not require the caller to import the Hash trait.

pub fn from_script(script: &Script, ver: LeafVersion) -> TapNodeHash

Computes the TapNodeHash from a script and a leaf version.

-

Trait Implementations§

§

impl AsRef<[u8]> for TapNodeHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapNodeHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapNodeHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapNodeHash

§

fn clone(&self) -> TapNodeHash

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
§

impl Debug for TapNodeHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapNodeHash

§

fn deserialize<D>(d: D) -> Result<TapNodeHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapNodeHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<&LeafNode> for TapNodeHash

§

fn from(leaf: &LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<Hash<TapBranchTag>> for TapNodeHash

§

fn from(inner: Hash<TapBranchTag>) -> TapNodeHash

Converts to this type from the input type.
§

impl From<LeafNode> for TapNodeHash

§

fn from(leaf: LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapNodeHash> for Hash<TapBranchTag>

§

fn from(hashtype: TapNodeHash) -> Hash<TapBranchTag>

Converts to this type from the input type.
§

impl FromStr for TapNodeHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapNodeHash, <TapNodeHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapNodeHash

§

type Engine = <Hash<TapBranchTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

§

impl AsRef<[u8]> for TapNodeHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapNodeHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapNodeHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapNodeHash

§

fn clone(&self) -> TapNodeHash

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
§

impl Debug for TapNodeHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapNodeHash

§

fn deserialize<D>(d: D) -> Result<TapNodeHash, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapNodeHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<&LeafNode> for TapNodeHash

§

fn from(leaf: &LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<Hash<TapBranchTag>> for TapNodeHash

§

fn from(inner: Hash<TapBranchTag>) -> TapNodeHash

Converts to this type from the input type.
§

impl From<LeafNode> for TapNodeHash

§

fn from(leaf: LeafNode) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapLeafHash> for TapNodeHash

§

fn from(leaf: TapLeafHash) -> TapNodeHash

Converts to this type from the input type.
§

impl From<TapNodeHash> for Hash<TapBranchTag>

§

fn from(hashtype: TapNodeHash) -> Hash<TapBranchTag>

Converts to this type from the input type.
§

impl FromStr for TapNodeHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapNodeHash, <TapNodeHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapNodeHash

§

type Engine = <Hash<TapBranchTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapBranchTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapTweakHash.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapTweakHash.html index 41cf0bfb9d..dc2e528051 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapTweakHash.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TapTweakHash.html @@ -10,7 +10,7 @@ P is the internal key and R is the merkle root.

pub fn to_scalar(self) -> Scalar

Converts a TapTweakHash into a Scalar ready for use with key tweaking API.

Trait Implementations§

§

impl AsRef<[u8]> for TapTweakHash

§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8; 32]> for TapTweakHash

§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[u8]> for TapTweakHash

§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
§

impl Clone for TapTweakHash

§

fn clone(&self) -> TapTweakHash

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
§

impl Debug for TapTweakHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for TapTweakHash

§

fn deserialize<D>(d: D) -> Result<TapTweakHash, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapTweakHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<&TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: &TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl From<Hash<TapTweakTag>> for TapTweakHash

§

fn from(inner: Hash<TapTweakTag>) -> TapTweakHash

Converts to this type from the input type.
§

impl From<TapTweakHash> for Hash<TapTweakTag>

§

fn from(hashtype: TapTweakHash) -> Hash<TapTweakTag>

Converts to this type from the input type.
§

impl From<TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl FromStr for TapTweakHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapTweakHash, <TapTweakHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapTweakHash

§

type Engine = <Hash<TapTweakTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§

impl Display for TapTweakHash

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<&TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: &TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl From<Hash<TapTweakTag>> for TapTweakHash

§

fn from(inner: Hash<TapTweakTag>) -> TapTweakHash

Converts to this type from the input type.
§

impl From<TapTweakHash> for Hash<TapTweakTag>

§

fn from(hashtype: TapTweakHash) -> Hash<TapTweakTag>

Converts to this type from the input type.
§

impl From<TaprootSpendInfo> for TapTweakHash

§

fn from(spend_info: TaprootSpendInfo) -> TapTweakHash

Converts to this type from the input type.
§

impl FromStr for TapTweakHash

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<TapTweakHash, <TapTweakHash as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for TapTweakHash

§

type Engine = <Hash<TapTweakTag> as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash<TapTweakTag> as Hash>::Bytes

The byte array that represents the hash internally.
§

const LEN: usize = 32usize

Length of the hash, in bytes.
§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TaprootMerkleBranch.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TaprootMerkleBranch.html index bab28c2ba6..bb3b1d4769 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TaprootMerkleBranch.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/bitcoin/taproot/struct.TaprootMerkleBranch.html @@ -2407,10 +2407,10 @@ given separator between each.

Trait Implementations§

§

impl AsMut<[TapNodeHash]> for TaprootMerkleBranch

§

fn as_mut(&mut self) -> &mut [TapNodeHash]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl AsRef<[TapNodeHash]> for TaprootMerkleBranch

§

fn as_ref(&self) -> &[TapNodeHash]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<[TapNodeHash]> for TaprootMerkleBranch

§

fn borrow(&self) -> &[TapNodeHash]

Immutably borrows from an owned value. Read more
§

impl BorrowMut<[TapNodeHash]> for TaprootMerkleBranch

§

fn borrow_mut(&mut self) -> &mut [TapNodeHash]

Mutably borrows from an owned value. Read more
§

impl Clone for TaprootMerkleBranch

§

fn clone(&self) -> TaprootMerkleBranch

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
§

impl Debug for TaprootMerkleBranch

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for TaprootMerkleBranch

§

fn default() -> TaprootMerkleBranch

Returns the “default value” for a type. Read more
§

impl Deref for TaprootMerkleBranch

§

type Target = [TapNodeHash]

The resulting type after dereferencing.
§

fn deref(&self) -> &<TaprootMerkleBranch as Deref>::Target

Dereferences the value.
§

impl DerefMut for TaprootMerkleBranch

§

fn deref_mut(&mut self) -> &mut <TaprootMerkleBranch as Deref>::Target

Mutably dereferences the value.
§

impl<'de> Deserialize<'de> for TaprootMerkleBranch

§

fn deserialize<__D>( __deserializer: __D ) -> Result<TaprootMerkleBranch, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl From<[TapNodeHash; 0]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 0]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 1]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 1]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 10]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 10]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 100]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 100]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 101]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 101]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 102]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 102]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 103]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 103]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 104]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 104]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 105]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 105]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 106]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 106]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 107]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 107]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 108]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 108]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 109]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 109]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 11]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 11]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 110]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 110]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 111]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 111]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 112]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 112]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 113]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 113]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 114]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 114]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 115]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 115]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 116]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 116]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 117]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 117]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 118]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 118]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 119]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 119]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 12]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 12]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 120]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 120]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 121]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 121]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 122]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 122]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 123]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 123]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 124]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 124]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 125]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 125]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 126]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 126]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 127]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 127]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 128]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 128]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 13]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 13]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 14]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 14]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 15]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 15]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 16]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 16]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 17]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 17]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 18]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 18]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 19]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 19]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 2]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 2]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 20]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 20]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 21]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 21]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 22]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 22]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 23]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 23]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 24]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 24]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 25]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 25]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 26]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 26]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 27]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 27]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 28]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 28]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 29]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 29]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 3]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 3]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 30]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 30]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 31]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 31]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 32]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 32]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 33]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 33]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 34]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 34]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 35]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 35]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 36]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 36]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 37]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 37]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 38]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 38]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 39]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 39]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 4]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 4]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 40]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 40]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 41]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 41]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 42]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 42]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 43]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 43]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 44]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 44]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 45]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 45]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 46]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 46]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 47]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 47]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 48]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 48]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 49]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 49]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 5]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 5]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 50]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 50]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 51]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 51]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 52]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 52]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 53]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 53]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 54]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 54]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 55]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 55]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 56]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 56]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 57]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 57]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 58]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 58]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 59]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 59]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 6]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 6]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 60]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 60]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 61]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 61]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 62]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 62]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 63]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 63]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 64]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 64]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 65]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 65]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 66]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 66]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 67]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 67]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 68]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 68]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 69]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 69]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 7]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 7]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 70]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 70]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 71]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 71]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 72]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 72]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 73]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 73]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 74]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 74]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 75]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 75]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 76]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 76]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 77]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 77]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 78]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 78]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 79]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 79]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 8]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 8]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 80]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 80]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 81]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 81]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 82]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 82]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 83]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 83]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 84]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 84]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 85]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 85]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 86]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 86]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 87]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 87]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 88]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 88]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 89]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 89]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 9]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 9]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 90]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 90]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 91]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 91]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 92]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 92]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 93]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 93]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 94]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 94]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 95]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 95]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 96]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 96]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 97]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 97]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 98]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 98]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 99]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 99]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<TaprootMerkleBranch> for Vec<TapNodeHash>

§

fn from(branch: TaprootMerkleBranch) -> Vec<TapNodeHash>

Converts to this type from the input type.
§

impl Hash for TaprootMerkleBranch

§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl From<[TapNodeHash; 0]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 0]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 1]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 1]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 10]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 10]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 100]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 100]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 101]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 101]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 102]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 102]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 103]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 103]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 104]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 104]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 105]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 105]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 106]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 106]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 107]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 107]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 108]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 108]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 109]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 109]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 11]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 11]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 110]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 110]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 111]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 111]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 112]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 112]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 113]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 113]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 114]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 114]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 115]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 115]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 116]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 116]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 117]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 117]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 118]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 118]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 119]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 119]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 12]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 12]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 120]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 120]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 121]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 121]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 122]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 122]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 123]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 123]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 124]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 124]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 125]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 125]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 126]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 126]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 127]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 127]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 128]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 128]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 13]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 13]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 14]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 14]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 15]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 15]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 16]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 16]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 17]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 17]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 18]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 18]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 19]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 19]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 2]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 2]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 20]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 20]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 21]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 21]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 22]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 22]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 23]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 23]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 24]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 24]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 25]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 25]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 26]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 26]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 27]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 27]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 28]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 28]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 29]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 29]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 3]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 3]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 30]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 30]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 31]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 31]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 32]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 32]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 33]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 33]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 34]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 34]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 35]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 35]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 36]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 36]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 37]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 37]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 38]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 38]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 39]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 39]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 4]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 4]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 40]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 40]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 41]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 41]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 42]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 42]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 43]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 43]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 44]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 44]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 45]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 45]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 46]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 46]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 47]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 47]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 48]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 48]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 49]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 49]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 5]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 5]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 50]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 50]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 51]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 51]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 52]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 52]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 53]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 53]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 54]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 54]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 55]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 55]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 56]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 56]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 57]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 57]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 58]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 58]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 59]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 59]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 6]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 6]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 60]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 60]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 61]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 61]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 62]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 62]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 63]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 63]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 64]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 64]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 65]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 65]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 66]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 66]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 67]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 67]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 68]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 68]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 69]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 69]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 7]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 7]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 70]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 70]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 71]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 71]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 72]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 72]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 73]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 73]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 74]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 74]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 75]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 75]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 76]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 76]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 77]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 77]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 78]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 78]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 79]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 79]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 8]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 8]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 80]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 80]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 81]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 81]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 82]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 82]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 83]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 83]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 84]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 84]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 85]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 85]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 86]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 86]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 87]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 87]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 88]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 88]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 89]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 89]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 9]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 9]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 90]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 90]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 91]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 91]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 92]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 92]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 93]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 93]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 94]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 94]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 95]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 95]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 96]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 96]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 97]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 97]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 98]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 98]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<[TapNodeHash; 99]> for TaprootMerkleBranch

§

fn from(a: [TapNodeHash; 99]) -> TaprootMerkleBranch

Converts to this type from the input type.
§

impl From<TaprootMerkleBranch> for Vec<TapNodeHash>

§

fn from(branch: TaprootMerkleBranch) -> Vec<TapNodeHash>

Converts to this type from the input type.
§

impl Hash for TaprootMerkleBranch

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a TaprootMerkleBranch

§

type IntoIter = Iter<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl<'a> IntoIterator for &'a mut TaprootMerkleBranch

§

type IntoIter = IterMut<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a mut TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a mut TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for TaprootMerkleBranch

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for TaprootMerkleBranch

§

fn cmp(&self, other: &TaprootMerkleBranch) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where + Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a> IntoIterator for &'a TaprootMerkleBranch

§

type IntoIter = Iter<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl<'a> IntoIterator for &'a mut TaprootMerkleBranch

§

type IntoIter = IterMut<'a, TapNodeHash>

Which kind of iterator are we turning this into?
§

type Item = &'a mut TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <&'a mut TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl IntoIterator for TaprootMerkleBranch

§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
§

type Item = TapNodeHash

The type of the elements being iterated over.
§

fn into_iter(self) -> <TaprootMerkleBranch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Ord for TaprootMerkleBranch

§

fn cmp(&self, other: &TaprootMerkleBranch) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
§

impl PartialEq for TaprootMerkleBranch

§

fn eq(&self, other: &TaprootMerkleBranch) -> bool

This method tests for self and other values to be equal, and is used @@ -2421,22 +2421,22 @@ operator. Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where - __S: Serializer,
Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<&[TapNodeHash]> for TaprootMerkleBranch

Serialize this value into the given Serde serializer. Read more
§

impl TryFrom<&[TapNodeHash]> for TaprootMerkleBranch

§

fn try_from( v: &[TapNodeHash] ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<&[TapNodeHash]>>::Error>

Creates a merkle proof from list of hashes.

-
§Errors
+
§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Box<[TapNodeHash]>> for TaprootMerkleBranch

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Box<[TapNodeHash]>> for TaprootMerkleBranch

§

fn try_from( v: Box<[TapNodeHash]> ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<Box<[TapNodeHash]>>>::Error>

Creates a merkle proof from list of hashes.

-
§Errors
+
§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<TapNodeHash>> for TaprootMerkleBranch

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl TryFrom<Vec<TapNodeHash>> for TaprootMerkleBranch

§

fn try_from( v: Vec<TapNodeHash> ) -> Result<TaprootMerkleBranch, <TaprootMerkleBranch as TryFrom<Vec<TapNodeHash>>>::Error>

Creates a merkle proof from list of hashes.

-
§Errors
+
§Errors

If inner proof length is more than TAPROOT_CONTROL_MAX_NODE_COUNT (128).

-
§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl Eq for TaprootMerkleBranch

§

impl StructuralPartialEq for TaprootMerkleBranch

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

§

type Error = TaprootError

The type returned in the event of a conversion error.
§

impl Eq for TaprootMerkleBranch

§

impl StructuralPartialEq for TaprootMerkleBranch

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
§

impl<Q, K> Equivalent<K> for Q
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/index.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/index.html index acb33ecc1a..0bbbc6b832 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/index.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/index.html @@ -1,4 +1,4 @@ -bdk_chain - Rust

Crate bdk_chain

source ·
Expand description

This crate is a collection of core structures for Bitcoin Dev Kit.

+bdk_chain - Rust

Crate bdk_chain

source ·
Expand description

This crate is a collection of core structures for Bitcoin Dev Kit.

The goal of this crate is to give wallets the mechanisms needed to:

  1. Figure out what data they need to fetch.
  2. @@ -15,5 +15,5 @@ consistently. cache or how you retrieve it from persistent storage.

Re-exports§

Modules§

Structs§

  • A wrapper that we use to impl remote traits for types in our crate or dependency crates that impl Anchor.
  • Balance, differentiated into various categories.
  • A reference to a block in the canonical chain.
  • A checkpoint is a node of a reference-counted linked list of BlockIds.
  • Iterates over checkpoints backwards.
  • Represents the confirmation block and time of a transaction.
  • Represents the unique ID of a descriptor.
  • A TxOut with as much data as we can retrieve about it
  • A wrapper that we use to impl remote traits for types in our crate or dependency crates.
  • An iterator for derived script pubkeys.
  • Set of parameters sufficient to construct an Anchor.
  • Data object used to communicate updates about relevant transactions from some chain data source +IndexedTxGraph documentation for more.
  • Indexer provides utilities for indexing transaction data.
  • The LocalChain is a local implementation of ChainOracle.
  • Support for persisting bdk_chain structures to SQLite using [rusqlite].
  • Helper types for spk-based blockchain clients.
  • Module for structures that store and traverse transactions.

Structs§

  • Balance, differentiated into various categories.
  • A reference to a block in the canonical chain.
  • A checkpoint is a node of a reference-counted linked list of BlockIds.
  • Iterates over checkpoints backwards.
  • Represents the confirmation block and time of a transaction.
  • Represents the unique ID of a descriptor.
  • A TxOut with as much data as we can retrieve about it
  • A wrapper that we use to impl remote traits for types in our crate or dependency crates.
  • An iterator for derived script pubkeys.
  • Set of parameters sufficient to construct an Anchor.
  • Data object used to communicate updates about relevant transactions from some chain data source to the core model (usually a bdk_chain::TxGraph).

Enums§

  • Represents the observed position of some chain data.

Constants§

Traits§

  • Trait that “anchors” blockchain data to a specific block of height and hash.
  • Represents a service that tracks the blockchain.
  • A trait to extend the functionality of a miniscript descriptor.
  • Trait that makes an object mergeable.

Type Aliases§

  • A tuple of keychain index and T representing the indexed value.
  • A tuple of keychain K, derivation index (u32) and a T associated with them.
\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexed_tx_graph/struct.ChangeSet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexed_tx_graph/struct.ChangeSet.html index dad876e955..15415dfe5e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexed_tx_graph/struct.ChangeSet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexed_tx_graph/struct.ChangeSet.html @@ -7,7 +7,7 @@

Trait Implementations§

source§

impl<A: Clone, IA: Clone> Clone for ChangeSet<A, IA>

source§

fn clone(&self) -> ChangeSet<A, IA>

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
source§

impl<A: Debug, IA: Debug> Debug for ChangeSet<A, IA>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<A, IA: Default> Default for ChangeSet<A, IA>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, A, IA> Deserialize<'de> for ChangeSet<A, IA>
where A: Ord + Deserialize<'de>, IA: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<A, IA: Default> From<ChangeSet<A>> for ChangeSet<A, IA>

source§

fn from(graph: ChangeSet<A>) -> Self

Converts to this type from the input type.
source§

impl<A> From<ChangeSet> for ChangeSet<A, ChangeSet>

source§

fn from(indexer: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl<A: Anchor, IA: Merge> Merge for ChangeSet<A, IA>

source§

fn merge(&mut self, other: Self)

Merge another object of the same type onto self.
source§

fn is_empty(&self) -> bool

Returns whether the structure is considered empty.
source§

fn take(&mut self) -> Option<Self>

Take the value, replacing it with the default value.
source§

impl<A: PartialEq, IA: PartialEq> PartialEq for ChangeSet<A, IA>

source§

fn eq(&self, other: &ChangeSet<A, IA>) -> bool

This method tests for self and other values to be equal, and is used + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<A, IA: Default> From<ChangeSet<A>> for ChangeSet<A, IA>

source§

fn from(graph: ChangeSet<A>) -> Self

Converts to this type from the input type.
source§

impl<A> From<ChangeSet> for ChangeSet<A, ChangeSet>

source§

fn from(indexer: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl<A: Anchor, IA: Merge> Merge for ChangeSet<A, IA>

source§

fn merge(&mut self, other: Self)

Merge another object of the same type onto self.
source§

fn is_empty(&self) -> bool

Returns whether the structure is considered empty.
source§

fn take(&mut self) -> Option<Self>

Take the value, replacing it with the default value.
source§

impl<A: PartialEq, IA: PartialEq> PartialEq for ChangeSet<A, IA>

source§

fn eq(&self, other: &ChangeSet<A, IA>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<A, IA> Serialize for ChangeSet<A, IA>
where A: Ord + Serialize, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/enum.InsertDescriptorError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/enum.InsertDescriptorError.html index d6065f43a1..8033d61fb2 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/enum.InsertDescriptorError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/enum.InsertDescriptorError.html @@ -14,7 +14,7 @@
§

KeychainAlreadyAssigned

The keychain is already assigned to a descriptor so you can’t reassign it

Fields

§keychain: K

The keychain that you have attempted to reassign

§existing_assignment: Descriptor<DescriptorPublicKey>

The descriptor that the keychain is already assigned to

-

Trait Implementations§

source§

impl<K: Clone> Clone for InsertDescriptorError<K>

source§

fn clone(&self) -> InsertDescriptorError<K>

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
source§

impl<K: Debug> Debug for InsertDescriptorError<K>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K: Debug> Display for InsertDescriptorError<K>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K: Debug> Error for InsertDescriptorError<K>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<K: PartialEq> PartialEq for InsertDescriptorError<K>

source§

fn eq(&self, other: &InsertDescriptorError<K>) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<K: Clone> Clone for InsertDescriptorError<K>

source§

fn clone(&self) -> InsertDescriptorError<K>

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
source§

impl<K: Debug> Debug for InsertDescriptorError<K>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K: Debug> Display for InsertDescriptorError<K>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K: Debug> Error for InsertDescriptorError<K>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<K: PartialEq> PartialEq for InsertDescriptorError<K>

source§

fn eq(&self, other: &InsertDescriptorError<K>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K> StructuralPartialEq for InsertDescriptorError<K>

Auto Trait Implementations§

§

impl<K> !Freeze for InsertDescriptorError<K>

§

impl<K> RefUnwindSafe for InsertDescriptorError<K>
where K: RefUnwindSafe,

§

impl<K> Send for InsertDescriptorError<K>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/struct.ChangeSet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/struct.ChangeSet.html index 2dc0fb462c..e233a5902d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/struct.ChangeSet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/indexer/keychain_txout/struct.ChangeSet.html @@ -1,4 +1,4 @@ -ChangeSet in bdk_chain::indexer::keychain_txout - Rust

Struct bdk_chain::indexer::keychain_txout::ChangeSet

source ·
pub struct ChangeSet {
+ChangeSet in bdk_chain::indexer::keychain_txout - Rust

Struct bdk_chain::indexer::keychain_txout::ChangeSet

source ·
pub struct ChangeSet {
     pub last_revealed: BTreeMap<DescriptorId, u32>,
 }
Expand description

Represents updates to the derivation index of a KeychainTxOutIndex. It maps each keychain K to a descriptor and its last revealed index.

@@ -7,14 +7,15 @@ It maps each keychain K to a descriptor and its last revealed index keychains_added is not monotone, once it is set any attempt to change it is subject to the same one-to-one keychain <-> descriptor mapping invariant as KeychainTxOutIndex itself.

Fields§

§last_revealed: BTreeMap<DescriptorId, u32>

Contains for each descriptor_id the last revealed index of derivation

-

Implementations§

source§

impl ChangeSet

source

pub const SCHEMA_NAME: &'static str = "bdk_keychaintxout"

Schema name for the changeset.

-
source

pub const LAST_REVEALED_TABLE_NAME: &'static str = "bdk_descriptor_last_revealed"

Name for table that stores last revealed indices per descriptor id.

-
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables for persisting +

Implementations§

source§

impl ChangeSet

source

pub const SCHEMA_NAME: &'static str = "bdk_keychaintxout"

Schema name for the changeset.

+
source

pub const LAST_REVEALED_TABLE_NAME: &'static str = "bdk_descriptor_last_revealed"

Name for table that stores last revealed indices per descriptor id.

+
source

pub fn schema_v0() -> String

Get v0 of sqlite keychain_txout::ChangeSet schema

+
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables for persisting KeychainTxOutIndex.

-
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Construct KeychainTxOutIndex from sqlite database +

source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Construct KeychainTxOutIndex from sqlite database and given parameters.

Remember to call Self::init_sqlite_tables beforehand.

-
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist changeset to the sqlite database.

+
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist changeset to the sqlite database.

Remember to call Self::init_sqlite_tables beforehand.

Trait Implementations§

source§

impl Clone for ChangeSet

source§

fn clone(&self) -> ChangeSet

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
source§

impl Debug for ChangeSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ChangeSet

source§

fn default() -> ChangeSet

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for ChangeSet

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<A> From<ChangeSet> for ChangeSet<A, ChangeSet>

source§

fn from(indexer: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl Merge for ChangeSet

source§

fn merge(&mut self, other: Self)

Merge another ChangeSet into self.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.AlterCheckPointError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.AlterCheckPointError.html index 57be708bbc..2b01363d26 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.AlterCheckPointError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.AlterCheckPointError.html @@ -6,7 +6,7 @@

Fields§

§height: u32

The checkpoint’s height.

§original_hash: BlockHash

The original checkpoint’s block hash which cannot be replaced/removed.

§update_hash: Option<BlockHash>

The attempted update to the original_block hash.

-

Trait Implementations§

source§

impl Clone for AlterCheckPointError

source§

fn clone(&self) -> AlterCheckPointError

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
source§

impl Debug for AlterCheckPointError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AlterCheckPointError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AlterCheckPointError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq for AlterCheckPointError

source§

fn eq(&self, other: &AlterCheckPointError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for AlterCheckPointError

source§

fn clone(&self) -> AlterCheckPointError

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
source§

impl Debug for AlterCheckPointError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AlterCheckPointError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AlterCheckPointError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq for AlterCheckPointError

source§

fn eq(&self, other: &AlterCheckPointError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for AlterCheckPointError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.CannotConnectError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.CannotConnectError.html index 40081c7ae9..741f3491e9 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.CannotConnectError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.CannotConnectError.html @@ -2,7 +2,7 @@ pub try_include_height: u32, }

Expand description

Occurs when an update does not have a common checkpoint with the original chain.

Fields§

§try_include_height: u32

The suggested checkpoint to include to connect the two chains.

-

Trait Implementations§

source§

impl Clone for CannotConnectError

source§

fn clone(&self) -> CannotConnectError

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
source§

impl Debug for CannotConnectError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for CannotConnectError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for CannotConnectError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq for CannotConnectError

source§

fn eq(&self, other: &CannotConnectError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for CannotConnectError

source§

fn clone(&self) -> CannotConnectError

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
source§

impl Debug for CannotConnectError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for CannotConnectError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for CannotConnectError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq for CannotConnectError

source§

fn eq(&self, other: &CannotConnectError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for CannotConnectError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.ChangeSet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.ChangeSet.html index b9002047ae..936aa65cf5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.ChangeSet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/local_chain/struct.ChangeSet.html @@ -1,15 +1,16 @@ -ChangeSet in bdk_chain::local_chain - Rust

Struct bdk_chain::local_chain::ChangeSet

source ·
pub struct ChangeSet {
+ChangeSet in bdk_chain::local_chain - Rust

Struct bdk_chain::local_chain::ChangeSet

source ·
pub struct ChangeSet {
     pub blocks: BTreeMap<u32, Option<BlockHash>>,
 }
Expand description

The ChangeSet represents changes to LocalChain.

Fields§

§blocks: BTreeMap<u32, Option<BlockHash>>

Changes to the LocalChain blocks.

The key represents the block height, and the value either represents added a new CheckPoint (if Some), or removing a CheckPoint (if None).

-

Implementations§

source§

impl ChangeSet

source

pub const SCHEMA_NAME: &'static str = "bdk_localchain"

Schema name for the changeset.

-
source

pub const BLOCKS_TABLE_NAME: &'static str = "bdk_blocks"

Name of sqlite table that stores blocks of LocalChain.

-
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables for persisting local_chain::LocalChain.

-
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Construct a LocalChain from sqlite database.

+

Implementations§

source§

impl ChangeSet

source

pub const SCHEMA_NAME: &'static str = "bdk_localchain"

Schema name for the changeset.

+
source

pub const BLOCKS_TABLE_NAME: &'static str = "bdk_blocks"

Name of sqlite table that stores blocks of LocalChain.

+
source

pub fn schema_v0() -> String

Get v0 of sqlite local_chain::ChangeSet schema

+
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables for persisting local_chain::LocalChain.

+
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Construct a LocalChain from sqlite database.

Remember to call Self::init_sqlite_tables beforehand.

-
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist changeset to the sqlite database.

+
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist changeset to the sqlite database.

Remember to call Self::init_sqlite_tables beforehand.

Trait Implementations§

source§

impl Clone for ChangeSet

source§

fn clone(&self) -> ChangeSet

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
source§

impl Debug for ChangeSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ChangeSet

source§

fn default() -> ChangeSet

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for ChangeSet

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<B: IntoIterator<Item = (u32, Option<BlockHash>)>> From<B> for ChangeSet

source§

fn from(blocks: B) -> Self

Converts to this type from the input type.
source§

impl FromIterator<(u32, BlockHash)> for ChangeSet

source§

fn from_iter<T: IntoIterator<Item = (u32, BlockHash)>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<(u32, Option<BlockHash>)> for ChangeSet

source§

fn from_iter<T: IntoIterator<Item = (u32, Option<BlockHash>)>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl Merge for ChangeSet

source§

fn merge(&mut self, other: Self)

Merge another object of the same type onto self.
source§

fn is_empty(&self) -> bool

Returns whether the structure is considered empty.
source§

fn take(&mut self) -> Option<Self>

Take the value, replacing it with the default value.
source§

impl PartialEq for ChangeSet

source§

fn eq(&self, other: &ChangeSet) -> bool

This method tests for self and other values to be equal, and is used diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html index f424294a79..e41c1df1a4 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html @@ -1,2 +1,2 @@ -SCHEMAS_TABLE_NAME in bdk_chain::rusqlite_impl - Rust

Constant bdk_chain::rusqlite_impl::SCHEMAS_TABLE_NAME

source ·
pub const SCHEMAS_TABLE_NAME: &str = "bdk_schemas";
Expand description

Table name for schemas.

+SCHEMAS_TABLE_NAME in bdk_chain::rusqlite_impl - Rust

Constant bdk_chain::rusqlite_impl::SCHEMAS_TABLE_NAME

source ·
pub const SCHEMAS_TABLE_NAME: &str = "bdk_schemas";
Expand description

Table name for schemas.

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/fn.migrate_schema.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/fn.migrate_schema.html index f9a3619e40..8a59d01029 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/fn.migrate_schema.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/fn.migrate_schema.html @@ -1,6 +1,6 @@ -migrate_schema in bdk_chain::rusqlite_impl - Rust

Function bdk_chain::rusqlite_impl::migrate_schema

source ·
pub fn migrate_schema(
+migrate_schema in bdk_chain::rusqlite_impl - Rust

Function bdk_chain::rusqlite_impl::migrate_schema

source ·
pub fn migrate_schema(
     db_tx: &Transaction<'_>,
     schema_name: &str,
-    versioned_scripts: &[&[&str]]
+    versioned_scripts: &[&str]
 ) -> Result<()>
Expand description

Runs logic that initializes/migrates the table schemas.

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/index.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/index.html index 18637026e3..662c96f64d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/index.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/rusqlite_impl/index.html @@ -1,2 +1,2 @@ -bdk_chain::rusqlite_impl - Rust

Module bdk_chain::rusqlite_impl

source ·
Expand description

Support for persisting bdk_chain structures to SQLite using [rusqlite].

+bdk_chain::rusqlite_impl - Rust

Module bdk_chain::rusqlite_impl

source ·
Expand description

Support for persisting bdk_chain structures to SQLite using [rusqlite].

Constants§

Functions§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/sidebar-items.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/sidebar-items.js index 4a61612d91..f8a4c0dc1f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/sidebar-items.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/sidebar-items.js @@ -1 +1 @@ -window.SIDEBAR_ITEMS = {"constant":["BIP32_MAX_INDEX"],"enum":["ChainPosition"],"externcrate":["bdk_core","rusqlite","serde"],"mod":["bitcoin","indexed_tx_graph","indexer","local_chain","rusqlite_impl","spk_client","tx_graph"],"struct":["AnchorImpl","Balance","BlockId","CheckPoint","CheckPointIter","ConfirmationBlockTime","DescriptorId","FullTxOut","Impl","SpkIterator","TxPosInBlock","TxUpdate"],"trait":["Anchor","ChainOracle","DescriptorExt","Merge"],"type":["Indexed","KeychainIndexed"]}; \ No newline at end of file +window.SIDEBAR_ITEMS = {"constant":["BIP32_MAX_INDEX"],"enum":["ChainPosition"],"externcrate":["bdk_core","rusqlite","serde"],"mod":["bitcoin","indexed_tx_graph","indexer","local_chain","rusqlite_impl","spk_client","tx_graph"],"struct":["Balance","BlockId","CheckPoint","CheckPointIter","ConfirmationBlockTime","DescriptorId","FullTxOut","Impl","SpkIterator","TxPosInBlock","TxUpdate"],"trait":["Anchor","ChainOracle","DescriptorExt","Merge"],"type":["Indexed","KeychainIndexed"]}; \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.AnchorImpl.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.AnchorImpl.html deleted file mode 100644 index 47073b7a33..0000000000 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.AnchorImpl.html +++ /dev/null @@ -1,20 +0,0 @@ -AnchorImpl in bdk_chain - Rust

Struct bdk_chain::AnchorImpl

source ·
pub struct AnchorImpl<T>(pub T);
Expand description

A wrapper that we use to impl remote traits for types in our crate or dependency crates that impl Anchor.

-

Tuple Fields§

§0: T

Implementations§

source§

impl<T> AnchorImpl<T>

source

pub fn into_inner(self) -> T

Returns the inner T.

-

Trait Implementations§

source§

impl<T> Deref for AnchorImpl<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> From<T> for AnchorImpl<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.
source§

impl<A: Anchor + DeserializeOwned> FromSql for AnchorImpl<A>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl<A: Anchor + Serialize> ToSql for AnchorImpl<A>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value

Auto Trait Implementations§

§

impl<T> Freeze for AnchorImpl<T>
where - T: Freeze,

§

impl<T> RefUnwindSafe for AnchorImpl<T>
where - T: RefUnwindSafe,

§

impl<T> Send for AnchorImpl<T>
where - T: Send,

§

impl<T> Sync for AnchorImpl<T>
where - T: Sync,

§

impl<T> Unpin for AnchorImpl<T>
where - T: Unpin,

§

impl<T> UnwindSafe for AnchorImpl<T>
where - T: UnwindSafe,

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<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
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>,

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where - V: MultiLane<T>,

§

fn vzip(self) -> V

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.BlockId.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.BlockId.html index bdcaa96fdf..218767c732 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.BlockId.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.BlockId.html @@ -7,7 +7,7 @@

Trait Implementations§

source§

impl Anchor for BlockId

source§

fn anchor_block(&self) -> Self

Returns the BlockId that the associated blockchain data is “anchored” in.
source§

fn confirmation_height_upper_bound(&self) -> u32

Get the upper bound of the chain data’s confirmation height. Read more
source§

impl Clone for BlockId

source§

fn clone(&self) -> BlockId

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
source§

impl Debug for BlockId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for BlockId

source§

fn default() -> BlockId

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for BlockId

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<BlockId, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<(&u32, &BlockHash)> for BlockId

source§

fn from(_: (&u32, &BlockHash)) -> BlockId

Converts to this type from the input type.
source§

impl From<(u32, BlockHash)> for BlockId

source§

fn from(_: (u32, BlockHash)) -> BlockId

Converts to this type from the input type.
source§

impl From<BlockId> for (u32, BlockHash)

source§

fn from(block_id: BlockId) -> (u32, BlockHash)

Converts to this type from the input type.
source§

impl<'b> From<TxPosInBlock<'b>> for BlockId

source§

fn from(pos: TxPosInBlock<'_>) -> Self

Converts to this type from the input type.
source§

impl Hash for BlockId

source§

fn hash<__H>(&self, state: &mut __H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<(&u32, &BlockHash)> for BlockId

source§

fn from(_: (&u32, &BlockHash)) -> BlockId

Converts to this type from the input type.
source§

impl From<(u32, BlockHash)> for BlockId

source§

fn from(_: (u32, BlockHash)) -> BlockId

Converts to this type from the input type.
source§

impl From<BlockId> for (u32, BlockHash)

source§

fn from(block_id: BlockId) -> (u32, BlockHash)

Converts to this type from the input type.
source§

impl<'b> From<TxPosInBlock<'b>> for BlockId

source§

fn from(pos: TxPosInBlock<'_>) -> Self

Converts to this type from the input type.
source§

impl Hash for BlockId

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for BlockId

source§

fn cmp(&self, other: &BlockId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.DescriptorId.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.DescriptorId.html index 1aec3e0d3b..d108f52b5a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.DescriptorId.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.DescriptorId.html @@ -5,27 +5,27 @@ descriptor without having to re-write the whole descriptor each time.

Tuple Fields§

§0: Hash

Implementations§

source§

impl DescriptorId

source

pub fn from_raw_hash(inner: Hash) -> DescriptorId

Creates this wrapper type from the inner hash type.

source

pub fn to_raw_hash(self) -> Hash

Returns the inner hash (sha256, sh256d etc.).

source

pub fn as_raw_hash(&self) -> &Hash

Returns a reference to the inner hash (sha256, sh256d etc.).

-

Trait Implementations§

source§

impl AsRef<[u8]> for DescriptorId

source§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<[u8; 32]> for DescriptorId

source§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Borrow<[u8]> for DescriptorId

source§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
source§

impl Clone for DescriptorId

source§

fn clone(&self) -> DescriptorId

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
source§

impl Debug for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for DescriptorId

source§

fn deserialize<D: Deserializer<'de>>(d: D) -> Result<DescriptorId, D::Error>

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<DescriptorId> for Hash

source§

fn from(hashtype: DescriptorId) -> Hash

Converts to this type from the input type.
source§

impl From<Hash> for DescriptorId

source§

fn from(inner: Hash) -> DescriptorId

Converts to this type from the input type.
source§

impl FromStr for DescriptorId

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<DescriptorId, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for DescriptorId

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected +

Trait Implementations§

source§

impl AsRef<[u8]> for DescriptorId

source§

fn as_ref(&self) -> &[u8] ⓘ

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<[u8; 32]> for DescriptorId

source§

fn as_ref(&self) -> &[u8; 32]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Borrow<[u8]> for DescriptorId

source§

fn borrow(&self) -> &[u8] ⓘ

Immutably borrows from an owned value. Read more
source§

impl Clone for DescriptorId

source§

fn clone(&self) -> DescriptorId

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
source§

impl Debug for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for DescriptorId

source§

fn deserialize<D: Deserializer<'de>>(d: D) -> Result<DescriptorId, D::Error>

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<DescriptorId> for Hash

source§

fn from(hashtype: DescriptorId) -> Hash

Converts to this type from the input type.
source§

impl From<Hash> for DescriptorId

source§

fn from(inner: Hash) -> DescriptorId

Converts to this type from the input type.
source§

impl FromStr for DescriptorId

§

type Err = HexToArrayError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<DescriptorId, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for DescriptorId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where + H: Hasher, + Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Hash for DescriptorId

§

type Engine = <Hash as Hash>::Engine

A hashing engine which bytes can be serialized into. It is expected to implement the io::Write trait, and to never return errors under any conditions.
§

type Bytes = <Hash as Hash>::Bytes

The byte array that represents the hash internally.
source§

const LEN: usize = 32usize

Length of the hash, in bytes.
source§

const DISPLAY_BACKWARD: bool = false

Flag indicating whether user-visible serializations of this hash should be backward. For some reason Satoshi decided this should be -true for Sha256dHash, so here we are.
source§

fn engine() -> Self::Engine

Constructs a new engine.
source§

fn from_engine(e: Self::Engine) -> Self

Produces a hash from the current state of a given engine.
source§

fn from_slice(sl: &[u8]) -> Result<DescriptorId, FromSliceError>

Copies a byte slice into a hash object.
source§

fn from_byte_array(bytes: Self::Bytes) -> Self

Constructs a hash from the underlying byte array.
source§

fn to_byte_array(self) -> Self::Bytes

Returns the underlying byte array.
source§

fn as_byte_array(&self) -> &Self::Bytes

Returns a reference to the underlying byte array.
source§

fn all_zeros() -> Self

Returns an all zero hash. Read more
§

fn hash(data: &[u8]) -> Self

Hashes some bytes.
§

fn hash_byte_chunks<B, I>(byte_slices: I) -> Self
where +true for Sha256dHash, so here we are.

source§

fn engine() -> Self::Engine

Constructs a new engine.
source§

fn from_engine(e: Self::Engine) -> Self

Produces a hash from the current state of a given engine.
source§

fn from_slice(sl: &[u8]) -> Result<DescriptorId, FromSliceError>

Copies a byte slice into a hash object.
source§

fn from_byte_array(bytes: Self::Bytes) -> Self

Constructs a hash from the underlying byte array.
source§

fn to_byte_array(self) -> Self::Bytes

Returns the underlying byte array.
source§

fn as_byte_array(&self) -> &Self::Bytes

Returns a reference to the underlying byte array.
source§

fn all_zeros() -> Self

Returns an all zero hash. Read more
§

fn hash(data: &[u8]) -> Self

Hashes some bytes.
§

fn hash_byte_chunks<B, I>(byte_slices: I) -> Self
where B: AsRef<[u8]>, - I: IntoIterator<Item = B>,

Hashes all the byte slices retrieved from the iterator together.
source§

impl Hash for DescriptorId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where - H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<I: SliceIndex<[u8]>> Index<I> for DescriptorId

§

type Output = <I as SliceIndex<[u8]>>::Output

The returned type after indexing.
source§

fn index(&self, index: I) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl LowerHex for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Ord for DescriptorId

source§

fn cmp(&self, other: &DescriptorId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where + I: IntoIterator<Item = B>,

Hashes all the byte slices retrieved from the iterator together.
source§

impl<I: SliceIndex<[u8]>> Index<I> for DescriptorId

§

type Output = <I as SliceIndex<[u8]>>::Output

The returned type after indexing.
source§

fn index(&self, index: I) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl LowerHex for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Ord for DescriptorId

source§

fn cmp(&self, other: &DescriptorId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where 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 Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for DescriptorId

source§

fn eq(&self, other: &DescriptorId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for DescriptorId

source§

fn partial_cmp(&self, other: &DescriptorId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
source§

impl SerdeHash for DescriptorId

source§

const N: usize = 32usize

Size, in bits, of the hash.
source§

fn from_slice_delegated(sl: &[u8]) -> Result<Self, FromSliceError>

Helper function to turn a deserialized slice into the correct hash type.
§

fn serialize<S>( +operator. Read more

source§

impl SerdeHash for DescriptorId

source§

const N: usize = 32usize

Size, in bits, of the hash.
source§

fn from_slice_delegated(sl: &[u8]) -> Result<Self, FromSliceError>

Helper function to turn a deserialized slice into the correct hash type.
§

fn serialize<S>( &self, s: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where - S: Serializer,

Do serde serialization.
§

fn deserialize<'de, D>(d: D) -> Result<Self, <D as Deserializer<'de>>::Error>
where - D: Deserializer<'de>,

Do serde deserialization.
source§

impl Serialize for DescriptorId

source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
source§

impl UpperHex for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for DescriptorId

source§

impl Eq for DescriptorId

source§

impl StructuralPartialEq for DescriptorId

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where + S: Serializer,

Do serde serialization.
§

fn deserialize<'de, D>(d: D) -> Result<Self, <D as Deserializer<'de>>::Error>
where + D: Deserializer<'de>,

Do serde deserialization.
source§

impl Serialize for DescriptorId

source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
source§

impl UpperHex for DescriptorId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for DescriptorId

source§

impl Eq for DescriptorId

source§

impl StructuralPartialEq for DescriptorId

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
§

impl<Q, K> Equivalent<K> for Q
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.Impl.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.Impl.html index bafcfb5814..d2d6e61bfb 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.Impl.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.Impl.html @@ -1,6 +1,6 @@ Impl in bdk_chain - Rust

Struct bdk_chain::Impl

source ·
pub struct Impl<T>(pub T);
Expand description

A wrapper that we use to impl remote traits for types in our crate or dependency crates.

Tuple Fields§

§0: T

Implementations§

source§

impl<T> Impl<T>

source

pub fn into_inner(self) -> T

Returns the inner T.

-

Trait Implementations§

source§

impl<T> Deref for Impl<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> From<T> for Impl<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.
source§

impl FromSql for Impl<Amount>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<BlockHash>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Descriptor<DescriptorPublicKey>>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<DescriptorId>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Network>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<ScriptBuf>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Transaction>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Txid>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl ToSql for Impl<Amount>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<BlockHash>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Descriptor<DescriptorPublicKey>>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<DescriptorId>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Network>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<ScriptBuf>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Transaction>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Txid>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value

Auto Trait Implementations§

§

impl<T> Freeze for Impl<T>
where +

Trait Implementations§

source§

impl<T> Deref for Impl<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> From<T> for Impl<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.
source§

impl FromSql for Impl<Amount>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<BlockHash>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Descriptor<DescriptorPublicKey>>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<DescriptorId>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Network>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<ScriptBuf>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Transaction>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl FromSql for Impl<Txid>

source§

fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>

Converts SQLite value into Rust value.
source§

impl ToSql for Impl<Amount>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<BlockHash>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Descriptor<DescriptorPublicKey>>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<DescriptorId>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Network>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<ScriptBuf>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Transaction>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value
source§

impl ToSql for Impl<Txid>

source§

fn to_sql(&self) -> Result<ToSqlOutput<'_>>

Converts Rust value to SQLite value

Auto Trait Implementations§

§

impl<T> Freeze for Impl<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Impl<T>
where T: RefUnwindSafe,

§

impl<T> Send for Impl<T>
where T: Send,

§

impl<T> Sync for Impl<T>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.TxPosInBlock.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.TxPosInBlock.html index 559bfd0551..daa35cc2e6 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.TxPosInBlock.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/struct.TxPosInBlock.html @@ -8,7 +8,7 @@

Fields§

§block: &'b Block

Block in which the transaction appeared.

§block_id: BlockId

Block’s BlockId.

§tx_pos: usize

Position in the block on which the transaction appeared.

-

Trait Implementations§

source§

impl<'b> Clone for TxPosInBlock<'b>

source§

fn clone(&self) -> TxPosInBlock<'b>

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
source§

impl<'b> Debug for TxPosInBlock<'b>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'b> From<TxPosInBlock<'b>> for BlockId

source§

fn from(pos: TxPosInBlock<'_>) -> Self

Converts to this type from the input type.
source§

impl<'b> From<TxPosInBlock<'b>> for ConfirmationBlockTime

source§

fn from(pos: TxPosInBlock<'_>) -> Self

Converts to this type from the input type.
source§

impl<'b> PartialEq for TxPosInBlock<'b>

source§

fn eq(&self, other: &TxPosInBlock<'b>) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<'b> Clone for TxPosInBlock<'b>

source§

fn clone(&self) -> TxPosInBlock<'b>

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
source§

impl<'b> Debug for TxPosInBlock<'b>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'b> From<TxPosInBlock<'b>> for BlockId

source§

fn from(pos: TxPosInBlock<'_>) -> Self

Converts to this type from the input type.
source§

impl<'b> From<TxPosInBlock<'b>> for ConfirmationBlockTime

source§

fn from(pos: TxPosInBlock<'_>) -> Self

Converts to this type from the input type.
source§

impl<'b> PartialEq for TxPosInBlock<'b>

source§

fn eq(&self, other: &TxPosInBlock<'b>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'b> Copy for TxPosInBlock<'b>

source§

impl<'b> Eq for TxPosInBlock<'b>

source§

impl<'b> StructuralPartialEq for TxPosInBlock<'b>

Auto Trait Implementations§

§

impl<'b> Freeze for TxPosInBlock<'b>

§

impl<'b> RefUnwindSafe for TxPosInBlock<'b>

§

impl<'b> Send for TxPosInBlock<'b>

§

impl<'b> Sync for TxPosInBlock<'b>

§

impl<'b> Unpin for TxPosInBlock<'b>

§

impl<'b> UnwindSafe for TxPosInBlock<'b>

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/tx_graph/struct.ChangeSet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/tx_graph/struct.ChangeSet.html index 70ae462e12..a6b2acf751 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/tx_graph/struct.ChangeSet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_chain/tx_graph/struct.ChangeSet.html @@ -1,4 +1,4 @@ -ChangeSet in bdk_chain::tx_graph - Rust

Struct bdk_chain::tx_graph::ChangeSet

source ·
pub struct ChangeSet<A = ()> {
+ChangeSet in bdk_chain::tx_graph - Rust

Struct bdk_chain::tx_graph::ChangeSet

source ·
pub struct ChangeSet<A = ()> {
     pub txs: BTreeSet<Arc<Transaction>>,
     pub txouts: BTreeMap<OutPoint, TxOut>,
     pub anchors: BTreeSet<(A, Txid)>,
@@ -20,15 +20,16 @@ confirm or exclude these anchors.

F: FnMut(A) -> A2,

Transform the ChangeSet to have Anchors of another type.

This takes in a closure of signature FnMut(A) -> A2 which is called for each Anchor to transform it.

-
source§

impl<A> ChangeSet<A>

source

pub const SCHEMA_NAME: &'static str = "bdk_txgraph"

Schema name for tx_graph::ChangeSet.

-
source

pub const TXS_TABLE_NAME: &'static str = "bdk_txs"

Name of table that stores full transactions and last_seen timestamps.

-
source

pub const TXOUTS_TABLE_NAME: &'static str = "bdk_txouts"

Name of table that stores floating txouts.

-
source

pub const ANCHORS_TABLE_NAME: &'static str = "bdk_anchors"

Name of table that stores Anchors.

-
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables.

-
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Construct a TxGraph from an sqlite database.

+
source§

impl ChangeSet<ConfirmationBlockTime>

source

pub const SCHEMA_NAME: &'static str = "bdk_txgraph"

Schema name for tx_graph::ChangeSet.

+
source

pub const TXS_TABLE_NAME: &'static str = "bdk_txs"

Name of table that stores full transactions and last_seen timestamps.

+
source

pub const TXOUTS_TABLE_NAME: &'static str = "bdk_txouts"

Name of table that stores floating txouts.

+
source

pub const ANCHORS_TABLE_NAME: &'static str = "bdk_anchors"

Name of table that stores Anchors.

+
source

pub fn schema_v0() -> String

Get v0 of sqlite tx_graph::ChangeSet schema

+
source

pub fn schema_v1() -> String

Get v1 of sqlite tx_graph::ChangeSet schema

+
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables.

+
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Construct a TxGraph from an sqlite database.

Remember to call Self::init_sqlite_tables beforehand.

-
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist changeset to the sqlite database.

+
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist changeset to the sqlite database.

Remember to call Self::init_sqlite_tables beforehand.

Trait Implementations§

source§

impl<A: Clone> Clone for ChangeSet<A>

source§

fn clone(&self) -> ChangeSet<A>

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
source§

impl<A: Debug> Debug for ChangeSet<A>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<A> Default for ChangeSet<A>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, A> Deserialize<'de> for ChangeSet<A>
where A: Ord + Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/spk_client/enum.SyncItem.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/spk_client/enum.SyncItem.html index 34c67837de..6d0722fc0b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/spk_client/enum.SyncItem.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/spk_client/enum.SyncItem.html @@ -6,7 +6,7 @@

Variants§

§

Spk(I, &'i Script)

Script pubkey sync item.

§

Txid(Txid)

Txid sync item.

§

OutPoint(OutPoint)

Outpoint sync item.

-

Trait Implementations§

source§

impl<'i, I: Clone> Clone for SyncItem<'i, I>

source§

fn clone(&self) -> SyncItem<'i, I>

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
source§

impl<'i, I: Debug> Debug for SyncItem<'i, I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'i, I: Debug + Any> Display for SyncItem<'i, I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'i, I: Hash> Hash for SyncItem<'i, I>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where +

Trait Implementations§

source§

impl<'i, I: Clone> Clone for SyncItem<'i, I>

source§

fn clone(&self) -> SyncItem<'i, I>

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
source§

impl<'i, I: Debug> Debug for SyncItem<'i, I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'i, I: Debug + Any> Display for SyncItem<'i, I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'i, I: Hash> Hash for SyncItem<'i, I>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'i, I: Ord> Ord for SyncItem<'i, I>

source§

fn cmp(&self, other: &SyncItem<'i, I>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/struct.BlockId.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/struct.BlockId.html index edcd2a46d5..54ffadf321 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/struct.BlockId.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_core/struct.BlockId.html @@ -5,7 +5,7 @@

Fields§

§height: u32

The height of the block.

§hash: BlockHash

The hash of the block.

Trait Implementations§

source§

impl Clone for BlockId

source§

fn clone(&self) -> BlockId

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
source§

impl Debug for BlockId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for BlockId

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for BlockId

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<(&u32, &BlockHash)> for BlockId

source§

fn from((height, hash): (&u32, &BlockHash)) -> Self

Converts to this type from the input type.
source§

impl From<(u32, BlockHash)> for BlockId

source§

fn from((height, hash): (u32, BlockHash)) -> Self

Converts to this type from the input type.
source§

impl From<BlockId> for (u32, BlockHash)

source§

fn from(block_id: BlockId) -> Self

Converts to this type from the input type.
source§

impl Hash for BlockId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<(&u32, &BlockHash)> for BlockId

source§

fn from((height, hash): (&u32, &BlockHash)) -> Self

Converts to this type from the input type.
source§

impl From<(u32, BlockHash)> for BlockId

source§

fn from((height, hash): (u32, BlockHash)) -> Self

Converts to this type from the input type.
source§

impl From<BlockId> for (u32, BlockHash)

source§

fn from(block_id: BlockId) -> Self

Converts to this type from the input type.
source§

impl Hash for BlockId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for BlockId

source§

fn cmp(&self, other: &BlockId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/index.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/index.html index f6ec5ba7ef..9f384f5071 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/index.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/index.html @@ -1,8 +1,8 @@ bdk_esplora - Rust

Crate bdk_esplora

source ·
Expand description

§BDK Esplora

BDK Esplora extends esplora-client (with extension traits: EsploraExt and EsploraAsyncExt) to update bdk_chain structures from an Esplora server.

-

The extension traits are primarily intended to satisfy SyncRequests with sync and -FullScanRequests with full_scan.

+

The extension traits are primarily intended to satisfy SyncRequests with sync and +FullScanRequests with full_scan.

§Usage

For blocking-only:

bdk_esplora = { version = "0.19", features = ["blocking"] }
diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraAsyncExt.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraAsyncExt.html
index 9d1b59c726..6f89970f68 100644
--- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraAsyncExt.html
+++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraAsyncExt.html
@@ -5,18 +5,18 @@
         request: R,
         stop_gap: usize,
         parallel_requests: usize
-    ) -> Pin<Box<dyn Future<Output = Result<FullScanResponse<K>, Box<Error>>> + Send + 'async_trait>>
+    ) -> Pin<Box<dyn Future<Output = Result<FullScanResponse<K>, Box<Error>>> + Send + 'async_trait>>
        where K: 'async_trait + Ord + Clone + Send,
-             R: 'async_trait + Into<FullScanRequest<K>> + Send,
+             R: 'async_trait + Into<FullScanRequest<K>> + Send,
              Self: 'async_trait,
              'life0: 'async_trait;
     fn sync<'life0, 'async_trait, I, R>(
         &'life0 self,
         request: R,
         parallel_requests: usize
-    ) -> Pin<Box<dyn Future<Output = Result<SyncResponse, Box<Error>>> + Send + 'async_trait>>
+    ) -> Pin<Box<dyn Future<Output = Result<SyncResponse, Box<Error>>> + Send + 'async_trait>>
        where I: 'async_trait + Send,
-             R: 'async_trait + Into<SyncRequest<I>> + Send,
+             R: 'async_trait + Into<SyncRequest<I>> + Send,
              Self: 'async_trait,
              'life0: 'async_trait;
 }
Expand description

Trait to extend the functionality of [esplora_client::AsyncClient].

@@ -26,14 +26,14 @@ request: R, stop_gap: usize, parallel_requests: usize -) -> Pin<Box<dyn Future<Output = Result<FullScanResponse<K>, Box<Error>>> + Send + 'async_trait>>
where +) -> Pin<Box<dyn Future<Output = Result<FullScanResponse<K>, Box<Error>>> + Send + 'async_trait>>
where K: 'async_trait + Ord + Clone + Send, - R: 'async_trait + Into<FullScanRequest<K>> + Send, + R: 'async_trait + Into<FullScanRequest<K>> + Send, Self: 'async_trait, 'life0: 'async_trait,

Scan keychain scripts for transactions against Esplora, returning an update that can be applied to the receiving structures.

request provides the data required to perform a script-pubkey-based full scan -(see FullScanRequest). The full scan for each keychain (K) stops after a gap of +(see [FullScanRequest]). The full scan for each keychain (K) stops after a gap of stop_gap script pubkeys with no associated transactions. parallel_requests specifies the maximum number of HTTP requests to make in parallel.

Refer to crate-level docs for more.

@@ -41,13 +41,13 @@ the maximum number of HTTP requests to make in parallel.

&'life0 self, request: R, parallel_requests: usize -) -> Pin<Box<dyn Future<Output = Result<SyncResponse, Box<Error>>> + Send + 'async_trait>>
where +) -> Pin<Box<dyn Future<Output = Result<SyncResponse, Box<Error>>> + Send + 'async_trait>>
where I: 'async_trait + Send, - R: 'async_trait + Into<SyncRequest<I>> + Send, + R: 'async_trait + Into<SyncRequest<I>> + Send, Self: 'async_trait, 'life0: 'async_trait,

Sync a set of scripts, txids, and/or outpoints against Esplora.

request provides the data required to perform a script-pubkey-based sync (see -SyncRequest). parallel_requests specifies the maximum number of HTTP requests to make +[SyncRequest]). parallel_requests specifies the maximum number of HTTP requests to make in parallel.

Refer to crate-level docs for more.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<S> EsploraAsyncExt for AsyncClient<S>
where @@ -57,16 +57,16 @@ in parallel.

request: R, stop_gap: usize, parallel_requests: usize -) -> Pin<Box<dyn Future<Output = Result<FullScanResponse<K>, Box<Error>>> + Send + 'async_trait>>
where +) -> Pin<Box<dyn Future<Output = Result<FullScanResponse<K>, Box<Error>>> + Send + 'async_trait>>
where K: 'async_trait + Ord + Clone + Send, - R: 'async_trait + Into<FullScanRequest<K>> + Send, + R: 'async_trait + Into<FullScanRequest<K>> + Send, Self: 'async_trait, 'life0: 'async_trait,

source§

fn sync<'life0, 'async_trait, I, R>( &'life0 self, request: R, parallel_requests: usize -) -> Pin<Box<dyn Future<Output = Result<SyncResponse, Box<Error>>> + Send + 'async_trait>>
where +) -> Pin<Box<dyn Future<Output = Result<SyncResponse, Box<Error>>> + Send + 'async_trait>>
where I: 'async_trait + Send, - R: 'async_trait + Into<SyncRequest<I>> + Send, + R: 'async_trait + Into<SyncRequest<I>> + Send, Self: 'async_trait, 'life0: 'async_trait,

Implementors§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraExt.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraExt.html index a7dab56d33..bdf10157d7 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraExt.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_esplora/trait.EsploraExt.html @@ -1,46 +1,46 @@ EsploraExt in bdk_esplora - Rust

Trait bdk_esplora::EsploraExt

source ·
pub trait EsploraExt {
     // Required methods
-    fn full_scan<K: Ord + Clone, R: Into<FullScanRequest<K>>>(
+    fn full_scan<K: Ord + Clone, R: Into<FullScanRequest<K>>>(
         &self,
         request: R,
         stop_gap: usize,
         parallel_requests: usize
-    ) -> Result<FullScanResponse<K>, Error>;
-    fn sync<I: 'static, R: Into<SyncRequest<I>>>(
+    ) -> Result<FullScanResponse<K>, Error>;
+    fn sync<I: 'static, R: Into<SyncRequest<I>>>(
         &self,
         request: R,
         parallel_requests: usize
-    ) -> Result<SyncResponse, Error>;
+    ) -> Result<SyncResponse, Error>;
 }
Expand description

Trait to extend the functionality of [esplora_client::BlockingClient].

Refer to crate-level documentation for more.

-

Required Methods§

Required Methods§

source

fn full_scan<K: Ord + Clone, R: Into<FullScanRequest<K>>>( &self, request: R, stop_gap: usize, parallel_requests: usize -) -> Result<FullScanResponse<K>, Error>

Scan keychain scripts for transactions against Esplora, returning an update that can be +) -> Result<FullScanResponse<K>, Error>

Scan keychain scripts for transactions against Esplora, returning an update that can be applied to the receiving structures.

request provides the data required to perform a script-pubkey-based full scan -(see FullScanRequest). The full scan for each keychain (K) stops after a gap of +(see [FullScanRequest]). The full scan for each keychain (K) stops after a gap of stop_gap script pubkeys with no associated transactions. parallel_requests specifies the maximum number of HTTP requests to make in parallel.

Refer to crate-level docs for more.

-
source

fn sync<I: 'static, R: Into<SyncRequest<I>>>( +

source

fn sync<I: 'static, R: Into<SyncRequest<I>>>( &self, request: R, parallel_requests: usize -) -> Result<SyncResponse, Error>

Sync a set of scripts, txids, and/or outpoints against Esplora.

+) -> Result<SyncResponse, Error>

Sync a set of scripts, txids, and/or outpoints against Esplora.

request provides the data required to perform a script-pubkey-based sync (see -SyncRequest). parallel_requests specifies the maximum number of HTTP requests to make +[SyncRequest]). parallel_requests specifies the maximum number of HTTP requests to make in parallel.

Refer to crate-level docs for more.

-

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl EsploraExt for BlockingClient

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl EsploraExt for BlockingClient

source§

fn full_scan<K: Ord + Clone, R: Into<FullScanRequest<K>>>( &self, request: R, stop_gap: usize, parallel_requests: usize -) -> Result<FullScanResponse<K>, Error>

source§

fn sync<I: 'static, R: Into<SyncRequest<I>>>( +) -> Result<FullScanResponse<K>, Error>

source§

fn sync<I: 'static, R: Into<SyncRequest<I>>>( &self, request: R, parallel_requests: usize -) -> Result<SyncResponse, Error>

Implementors§

\ No newline at end of file +) -> Result<SyncResponse, Error>

Implementors§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/enum.IterError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/enum.IterError.html index 91246a862e..1d61ec82ff 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/enum.IterError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/enum.IterError.html @@ -4,7 +4,7 @@ }
Expand description

Error type for EntryIter.

Variants§

§

Io(Error)

Failure to read from the file.

§

Bincode(ErrorKind)

Failure to decode data from the file.

-

Trait Implementations§

source§

impl Debug for IterError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for IterError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for IterError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for IterError

source§

fn from(value: Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Debug for IterError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for IterError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for IterError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for IterError

source§

fn from(value: Error) -> Self

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/struct.Store.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/struct.Store.html index a47fcf50ab..0311cc213e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/struct.Store.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_file_store/struct.Store.html @@ -5,7 +5,7 @@ BDK version upgrades so should not be used in production.

Implementations§

source§

impl<C> Store<C>

source

pub fn create_new<P>(magic: &[u8], file_path: P) -> Result<Self, FileError>
where + C: Merge + Serialize + DeserializeOwned + Send + Sync,

source

pub fn create_new<P>(magic: &[u8], file_path: P) -> Result<Self, FileError>
where P: AsRef<Path>,

Create a new Store file in write-only mode; error if the file exists.

magic is the prefixed bytes to write to the new file. This will be checked when opening the Store in the future with open.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/enum.Descriptor.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/enum.Descriptor.html index f1cff5bc6e..b976f484ea 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/enum.Descriptor.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/enum.Descriptor.html @@ -236,8 +236,8 @@ default(0x02) y-coordinate.

This function will return an error if hardened derivation is attempted.

Trait Implementations§

§

impl<Pk> Clone for Descriptor<Pk>
where Pk: Clone + MiniscriptKey,

§

fn clone(&self) -> Descriptor<Pk>

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
§

impl<Pk> Debug for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl DescriptorExt for Descriptor<DescriptorPublicKey>

source§

fn dust_value(&self) -> u64

Returns the minimum value (in satoshis) at which an output is broadcastable. -Panics if the descriptor wildcard is hardened.
source§

fn descriptor_id(&self) -> DescriptorId

Returns the descriptor ID, calculated as the sha256 hash of the spk derived from the + Pk: MiniscriptKey,
§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl DescriptorExt for Descriptor<DescriptorPublicKey>

§

fn dust_value(&self) -> u64

Returns the minimum value (in satoshis) at which an output is broadcastable. +Panics if the descriptor wildcard is hardened.
§

fn descriptor_id(&self) -> DescriptorId

Returns the descriptor ID, calculated as the sha256 hash of the spk derived from the descriptor at index 0.
§

impl<'de, Pk> Deserialize<'de> for Descriptor<Pk>
where Pk: FromStrKey,

§

fn deserialize<D>( deserializer: D @@ -256,11 +256,11 @@ the predicate returned true for every key

§

impl<Pk> From<Bare<Pk>> for Descriptor<Pk>
where Pk: MiniscriptKey,

§

fn from(inner: Bare<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Pkh<Pk>> for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn from(inner: Pkh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Sh<Pk>> for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn from(inner: Sh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Tr<Pk>> for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn from(inner: Tr<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Wpkh<Pk>> for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn from(inner: Wpkh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Wsh<Pk>> for Descriptor<Pk>
where - Pk: MiniscriptKey,

§

fn from(inner: Wsh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> FromStr for Descriptor<Pk>
where + Pk: MiniscriptKey,

§

fn from(inner: Pkh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Sh<Pk>> for Descriptor<Pk>
where + Pk: MiniscriptKey,

§

fn from(inner: Sh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Tr<Pk>> for Descriptor<Pk>
where + Pk: MiniscriptKey,

§

fn from(inner: Tr<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Wpkh<Pk>> for Descriptor<Pk>
where + Pk: MiniscriptKey,

§

fn from(inner: Wpkh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> From<Wsh<Pk>> for Descriptor<Pk>
where + Pk: MiniscriptKey,

§

fn from(inner: Wsh<Pk>) -> Descriptor<Pk>

Converts to this type from the input type.
§

impl<Pk> FromStr for Descriptor<Pk>
where Pk: FromStrKey,

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Descriptor<Pk>, Error>

Parses a string s to return a value of this type. Read more
§

impl<Pk> FromTree for Descriptor<Pk>
where Pk: FromStrKey,

§

fn from_tree(top: &Tree<'_>) -> Result<Descriptor<Pk>, Error>

Parse an expression tree into a descriptor.

§

impl<Pk> Hash for Descriptor<Pk>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/error/enum.Error.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/error/enum.Error.html index b0deb7983b..158b317d17 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/error/enum.Error.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/descriptor/error/enum.Error.html @@ -26,7 +26,7 @@
§

Miniscript(Error)

Miniscript error

§

Hex(HexToBytesError)

Hex decoding error

§

ExternalAndInternalAreTheSame

The provided wallet descriptors are identical

-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for CreateTxError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<HexToBytesError> for Error

source§

fn from(err: HexToBytesError) -> Self

Converts to this type from the input type.
source§

impl From<KeyError> for Error

source§

fn from(key_error: KeyError) -> Error

Converts to this type from the input type.
source§

impl From<ParsePublicKeyError> for Error

source§

fn from(err: ParsePublicKeyError) -> Self

Converts to this type from the input type.
source§

impl From<PolicyError> for Error

source§

fn from(err: PolicyError) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for CreateTxError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<HexToBytesError> for Error

source§

fn from(err: HexToBytesError) -> Self

Converts to this type from the input type.
source§

impl From<KeyError> for Error

source§

fn from(key_error: KeyError) -> Error

Converts to this type from the input type.
source§

impl From<ParsePublicKeyError> for Error

source§

fn from(err: ParsePublicKeyError) -> Self

Converts to this type from the input type.
source§

impl From<PolicyError> for Error

source§

fn from(err: PolicyError) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Error

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddForeignUtxoError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddForeignUtxoError.html index 6b9763f7b4..97d2b6ef5c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddForeignUtxoError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddForeignUtxoError.html @@ -11,7 +11,7 @@

§foreign_utxo: OutPoint

Foreign UTXO outpoint

§

InvalidOutpoint(OutPoint)

Requested outpoint doesn’t exist in the tx (vout greater than available outputs)

§

MissingUtxo

Foreign utxo missing witness_utxo or non_witness_utxo

-

Trait Implementations§

source§

impl Debug for AddForeignUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AddForeignUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AddForeignUtxoError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Debug for AddForeignUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AddForeignUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AddForeignUtxoError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddUtxoError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddUtxoError.html index c8d8ae5928..249b63ba45 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddUtxoError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.AddUtxoError.html @@ -2,7 +2,7 @@ UnknownUtxo(OutPoint), }
Expand description

Error returned from TxBuilder::add_utxo and TxBuilder::add_utxos

Variants§

§

UnknownUtxo(OutPoint)

Happens when trying to spend an UTXO that is not in the internal database

-

Trait Implementations§

source§

impl Debug for AddUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AddUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AddUtxoError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Debug for AddUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AddUtxoError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AddUtxoError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.ApplyBlockError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.ApplyBlockError.html index de794d10e5..f442741511 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.ApplyBlockError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.ApplyBlockError.html @@ -1,11 +1,11 @@ ApplyBlockError in bdk_wallet - Rust

Enum bdk_wallet::ApplyBlockError

source ·
pub enum ApplyBlockError {
-    CannotConnect(CannotConnectError),
+    CannotConnect(CannotConnectError),
     UnexpectedConnectedToHash {
         connected_to_hash: BlockHash,
         expected_hash: BlockHash,
     },
 }
Expand description

An error that may occur when applying a block to Wallet.

-

Variants§

§

CannotConnect(CannotConnectError)

Occurs when the update chain cannot connect with original chain.

+

Variants§

§

CannotConnect(CannotConnectError)

Occurs when the update chain cannot connect with original chain.

§

UnexpectedConnectedToHash

Occurs when the connected_to hash does not match the hash derived from block.

Fields

§connected_to_hash: BlockHash

Block hash of connected_to.

§expected_hash: BlockHash

Expected block hash of connected_to, as derived from block.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.CreateWithPersistError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.CreateWithPersistError.html index e0ac20a03a..373c027531 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.CreateWithPersistError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.CreateWithPersistError.html @@ -6,7 +6,7 @@

Variants§

§

Persist(E)

Error from persistence.

§

DataAlreadyExists(ChangeSet)

Persister already has wallet data.

§

Descriptor(DescriptorError)

Occurs when the loaded changeset cannot construct Wallet.

-

Trait Implementations§

source§

impl<E: Debug> Debug for CreateWithPersistError<E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<E: Display> Display for CreateWithPersistError<E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<E: Debug + Display> Error for CreateWithPersistError<E>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Trait Implementations§

source§

impl<E: Debug> Debug for CreateWithPersistError<E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<E: Display> Display for CreateWithPersistError<E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<E: Debug + Display> Error for CreateWithPersistError<E>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl<E> !Freeze for CreateWithPersistError<E>

§

impl<E> RefUnwindSafe for CreateWithPersistError<E>
where E: RefUnwindSafe,

§

impl<E> Send for CreateWithPersistError<E>
where E: Send,

§

impl<E> Sync for CreateWithPersistError<E>
where E: Sync,

§

impl<E> Unpin for CreateWithPersistError<E>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.LoadMismatch.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.LoadMismatch.html index b6d9274d25..2fc3b1297a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.LoadMismatch.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/enum.LoadMismatch.html @@ -19,7 +19,7 @@

§

Genesis

Genesis hash does not match.

Fields

§loaded: BlockHash

The genesis hash that is loaded.

§expected: BlockHash

The expected genesis hash.

-
§

Descriptor

Descriptor’s DescriptorId does not match.

+
§

Descriptor

Descriptor’s DescriptorId does not match.

Fields

§keychain: KeychainKind

Keychain identifying the descriptor.

§loaded: Option<ExtendedDescriptor>

The loaded descriptor.

§expected: Option<ExtendedDescriptor>

The expected descriptor.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.BuildFeeBumpError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.BuildFeeBumpError.html index b83d270c96..5262b74575 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.BuildFeeBumpError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.BuildFeeBumpError.html @@ -10,7 +10,7 @@
§

TransactionConfirmed(Txid)

Happens when trying to bump a transaction that is already confirmed

§

IrreplaceableTransaction(Txid)

Trying to replace a tx that has a sequence >= 0xFFFFFFFE

§

FeeRateUnavailable

Node doesn’t have data to estimate a fee rate

-

Trait Implementations§

source§

impl Debug for BuildFeeBumpError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for BuildFeeBumpError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for BuildFeeBumpError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Debug for BuildFeeBumpError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for BuildFeeBumpError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for BuildFeeBumpError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.CreateTxError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.CreateTxError.html index 64c1c98348..b4ee9066b3 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.CreateTxError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.CreateTxError.html @@ -54,7 +54,7 @@ explicit origin provided

§

UnknownUtxo

Happens when trying to spend an UTXO that is not in the internal database

§

MissingNonWitnessUtxo(OutPoint)

Missing non_witness_utxo on foreign utxo for given OutPoint

§

MiniscriptPsbt(MiniscriptPsbtError)

Miniscript PSBT error

-

Trait Implementations§

source§

impl Debug for CreateTxError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for CreateTxError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for CreateTxError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for CreateTxError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for CreateTxError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<InsufficientFunds> for CreateTxError

source§

fn from(err: InsufficientFunds) -> Self

Converts to this type from the input type.
source§

impl From<MiniscriptPsbtError> for CreateTxError

source§

fn from(err: MiniscriptPsbtError) -> Self

Converts to this type from the input type.
source§

impl From<PolicyError> for CreateTxError

source§

fn from(err: PolicyError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Debug for CreateTxError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for CreateTxError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for CreateTxError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for CreateTxError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for CreateTxError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<InsufficientFunds> for CreateTxError

source§

fn from(err: InsufficientFunds) -> Self

Converts to this type from the input type.
source§

impl From<MiniscriptPsbtError> for CreateTxError

source§

fn from(err: MiniscriptPsbtError) -> Self

Converts to this type from the input type.
source§

impl From<PolicyError> for CreateTxError

source§

fn from(err: PolicyError) -> Self

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.MiniscriptPsbtError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.MiniscriptPsbtError.html index 5269ade0cb..33741dd35f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.MiniscriptPsbtError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/error/enum.MiniscriptPsbtError.html @@ -6,7 +6,7 @@

Variants§

§

Conversion(ConversionError)

Descriptor key conversion error

§

UtxoUpdate(UtxoUpdateError)

Return error type for PsbtExt::update_input_with_descriptor

§

OutputUpdate(OutputUpdateError)

Return error type for PsbtExt::update_output_with_descriptor

-

Trait Implementations§

source§

impl Clone for MiniscriptPsbtError

source§

fn clone(&self) -> MiniscriptPsbtError

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
source§

impl Debug for MiniscriptPsbtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for MiniscriptPsbtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for MiniscriptPsbtError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<MiniscriptPsbtError> for CreateTxError

source§

fn from(err: MiniscriptPsbtError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Clone for MiniscriptPsbtError

source§

fn clone(&self) -> MiniscriptPsbtError

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
source§

impl Debug for MiniscriptPsbtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for MiniscriptPsbtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for MiniscriptPsbtError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<MiniscriptPsbtError> for CreateTxError

source§

fn from(err: MiniscriptPsbtError) -> Self

Converts to this type from the input type.

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/index.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/index.html index ac11a4bcab..6c5ad4c92b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/index.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/index.html @@ -183,7 +183,7 @@ that the Wallet can use to update its view of the chain.

submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

-

Re-exports§

  • pub extern crate bitcoin;
  • pub extern crate bdk_chain as chain;
  • pub extern crate bdk_file_store as file_store;
  • pub extern crate miniscript;
  • pub extern crate serde;
  • pub extern crate serde_json;
  • pub use descriptor::template;
  • pub use descriptor::HdKeyPaths;
  • pub use signer;
  • pub use bdk_chain::rusqlite;

Modules§

Macros§

  • Macro to write full descriptors with code
  • Macro to write descriptor fragments with code

Structs§

  • A derived address and the index it was found at. +

Re-exports§

  • pub extern crate bitcoin;
  • pub extern crate bdk_chain as chain;
  • pub extern crate bdk_file_store as file_store;
  • pub extern crate miniscript;
  • pub extern crate serde;
  • pub extern crate serde_json;
  • pub use descriptor::template;
  • pub use descriptor::HdKeyPaths;
  • pub use signer;
  • pub use bdk_chain::rusqlite;

Modules§

Macros§

  • Macro to write full descriptors with code
  • Macro to write descriptor fragments with code

Structs§

Enums§

Traits§

Functions§

Type Aliases§

  • A CanonicalTx managed by a Wallet.
\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.ExtendedKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.ExtendedKey.html index f636679efd..9a395c9c54 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.ExtendedKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.ExtendedKey.html @@ -22,7 +22,7 @@ given [Network]

origin: Option<KeySource>, derivation_path: DerivationPath ) -> Result<DescriptorKey<Ctx>, KeyError>
Consume self and turn it into a DescriptorKey by adding the extra metadata, such as -key origin and derivation path
source§

impl<Ctx: ScriptContext> From<Xpriv> for ExtendedKey<Ctx>

source§

fn from(xprv: Xpriv) -> Self

Converts to this type from the input type.
source§

impl<Ctx: ScriptContext> From<Xpub> for ExtendedKey<Ctx>

source§

fn from(xpub: Xpub) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<Ctx> Freeze for ExtendedKey<Ctx>

§

impl<Ctx> RefUnwindSafe for ExtendedKey<Ctx>
where +key origin and derivation path

source§

impl<Ctx: ScriptContext> From<Xpriv> for ExtendedKey<Ctx>

source§

fn from(xprv: Xpriv) -> Self

Converts to this type from the input type.
source§

impl<Ctx: ScriptContext> From<Xpub> for ExtendedKey<Ctx>

source§

fn from(xpub: Xpub) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<Ctx> Freeze for ExtendedKey<Ctx>

§

impl<Ctx> RefUnwindSafe for ExtendedKey<Ctx>
where Ctx: RefUnwindSafe,

§

impl<Ctx> Send for ExtendedKey<Ctx>
where Ctx: Send,

§

impl<Ctx> Sync for ExtendedKey<Ctx>
where Ctx: Sync,

§

impl<Ctx> Unpin for ExtendedKey<Ctx>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.KeyError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.KeyError.html index a101536c57..009f21b23f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.KeyError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/enum.KeyError.html @@ -12,7 +12,7 @@
§

Message(String)

Custom error message

§

Bip32(Error)

BIP32 error

§

Miniscript(Error)

Miniscript error

-

Trait Implementations§

source§

impl Debug for KeyError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for KeyError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for KeyError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for KeyError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for KeyError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<KeyError> for Error

source§

fn from(key_error: KeyError) -> Error

Converts to this type from the input type.
source§

impl PartialEq for KeyError

source§

fn eq(&self, other: &KeyError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Debug for KeyError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for KeyError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for KeyError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for KeyError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for KeyError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<KeyError> for Error

source§

fn from(key_error: KeyError) -> Error

Converts to this type from the input type.
source§

impl PartialEq for KeyError

source§

fn eq(&self, other: &KeyError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for KeyError

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 diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/struct.GeneratedKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/struct.GeneratedKey.html index ad19d1ea26..bc8d038e63 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/struct.GeneratedKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/struct.GeneratedKey.html @@ -2,14 +2,14 @@

Implementations§

source§

impl<K, Ctx: ScriptContext> GeneratedKey<K, Ctx>

source

pub fn into_key(self) -> K

Consumes self and returns the key

Trait Implementations§

source§

impl<K: Clone, Ctx: ScriptContext> Clone for GeneratedKey<K, Ctx>

source§

fn clone(&self) -> GeneratedKey<K, Ctx>

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
source§

impl<K, Ctx: ScriptContext> Deref for GeneratedKey<K, Ctx>

§

type Target = K

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<Ctx, K> DerivableKey<Ctx> for GeneratedKey<K, Ctx>
where Ctx: ScriptContext, - K: DerivableKey<Ctx>,

source§

fn into_extended_key(self) -> Result<ExtendedKey<Ctx>, KeyError>

Consume self and turn it into an ExtendedKey
source§

fn into_descriptor_key( + K: DerivableKey<Ctx>,

source§

fn into_extended_key(self) -> Result<ExtendedKey<Ctx>, KeyError>

Consume self and turn it into an ExtendedKey
source§

fn into_descriptor_key( self, origin: Option<KeySource>, derivation_path: DerivationPath ) -> Result<DescriptorKey<Ctx>, KeyError>

Consume self and turn it into a DescriptorKey by adding the extra metadata, such as key origin and derivation path
source§

impl<Ctx, K> IntoDescriptorKey<Ctx> for GeneratedKey<K, Ctx>
where Ctx: ScriptContext, - K: IntoDescriptorKey<Ctx>,

source§

fn into_descriptor_key(self) -> Result<DescriptorKey<Ctx>, KeyError>

Turn the key into a DescriptorKey within the requested ScriptContext

Auto Trait Implementations§

§

impl<K, Ctx> Freeze for GeneratedKey<K, Ctx>
where + K: IntoDescriptorKey<Ctx>,

source§

fn into_descriptor_key(self) -> Result<DescriptorKey<Ctx>, KeyError>

Turn the key into a DescriptorKey within the requested ScriptContext

Auto Trait Implementations§

§

impl<K, Ctx> Freeze for GeneratedKey<K, Ctx>
where K: Freeze,

§

impl<K, Ctx> RefUnwindSafe for GeneratedKey<K, Ctx>

§

impl<K, Ctx> Send for GeneratedKey<K, Ctx>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/trait.IntoDescriptorKey.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/trait.IntoDescriptorKey.html index 8133935410..6a078b9e95 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/trait.IntoDescriptorKey.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/keys/trait.IntoDescriptorKey.html @@ -107,4 +107,4 @@ makes the compiler (correctly) fail.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for &str

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for PrivateKey

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for PublicKey

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for XOnlyPublicKey

source§

impl<Ctx: ScriptContext, T: DerivableKey<Ctx>> IntoDescriptorKey<Ctx> for (T, DerivationPath)

source§

impl<Ctx: ScriptContext, T: DerivableKey<Ctx>> IntoDescriptorKey<Ctx> for (T, KeySource, DerivationPath)

Implementors§

source§

impl<Ctx, K> IntoDescriptorKey<Ctx> for GeneratedKey<K, Ctx>
where Ctx: ScriptContext, K: IntoDescriptorKey<Ctx>,

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for DescriptorKey<Ctx>

The “identity” conversion is used internally by some bdk_wallet::fragments

-
source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for DescriptorPublicKey

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for DescriptorSecretKey

\ No newline at end of file +
source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for DescriptorPublicKey

source§

impl<Ctx: ScriptContext> IntoDescriptorKey<Ctx> for DescriptorSecretKey

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html index 33ab89bb9c..42cac86687 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/constant.SCHEMAS_TABLE_NAME.html @@ -1,2 +1,2 @@ -SCHEMAS_TABLE_NAME in bdk_wallet::rusqlite_impl - Rust

Constant bdk_wallet::rusqlite_impl::SCHEMAS_TABLE_NAME

source ·
pub const SCHEMAS_TABLE_NAME: &'static str;
Expand description

Table name for schemas.

+SCHEMAS_TABLE_NAME in bdk_wallet::rusqlite_impl - Rust

Constant bdk_wallet::rusqlite_impl::SCHEMAS_TABLE_NAME

pub const SCHEMAS_TABLE_NAME: &'static str;
Expand description

Table name for schemas.

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/fn.migrate_schema.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/fn.migrate_schema.html index c631ed176e..2ba1a5a9c4 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/fn.migrate_schema.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/fn.migrate_schema.html @@ -1,6 +1,6 @@ -migrate_schema in bdk_wallet::rusqlite_impl - Rust

Function bdk_wallet::rusqlite_impl::migrate_schema

source ·
pub fn migrate_schema(
+migrate_schema in bdk_wallet::rusqlite_impl - Rust

Function bdk_wallet::rusqlite_impl::migrate_schema

pub fn migrate_schema(
     db_tx: &Transaction<'_>,
     schema_name: &str,
-    versioned_scripts: &[&[&str]]
+    versioned_scripts: &[&str]
 ) -> Result<(), Error>
Expand description

Runs logic that initializes/migrates the table schemas.

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/index.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/index.html index 34d9db276c..4a2b78dd45 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/index.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/rusqlite_impl/index.html @@ -1,2 +1,2 @@ -bdk_wallet::rusqlite_impl - Rust

Module bdk_wallet::rusqlite_impl

source ·
Expand description

Support for persisting bdk_chain structures to SQLite using [rusqlite].

+bdk_wallet::rusqlite_impl - Rust

Module bdk_wallet::rusqlite_impl

Expand description

Support for persisting bdk_chain structures to SQLite using [rusqlite].

Constants§

Functions§

\ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/enum.SignerError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/enum.SignerError.html index 031e031dfb..02d4e31a2b 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/enum.SignerError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/enum.SignerError.html @@ -35,7 +35,7 @@ explicitly allowed them

§

External(String)

To be used only by external libraries implementing InputSigner or TransactionSigner, so that they can return their own custom errors, without having to modify SignerError in BDK.

-

Trait Implementations§

source§

impl Debug for SignerError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SignerError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for SignerError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +

Trait Implementations§

source§

impl Debug for SignerError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SignerError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for SignerError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/struct.SignerWrapper.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/struct.SignerWrapper.html index 5887547f71..3506320926 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/struct.SignerWrapper.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/signer/struct.SignerWrapper.html @@ -6,19 +6,19 @@ input_index: usize, sign_options: &SignOptions, secp: &Secp256k1<All> -) -> Result<(), SignerError>
Sign a single psbt input
source§

impl InputSigner for SignerWrapper<DescriptorXKey<Xpriv>>

source§

fn sign_input( +) -> Result<(), SignerError>

Sign a single psbt input
source§

impl InputSigner for SignerWrapper<DescriptorXKey<Xpriv>>

source§

fn sign_input( &self, psbt: &mut Psbt, input_index: usize, sign_options: &SignOptions, secp: &Secp256k1<All> -) -> Result<(), SignerError>

Sign a single psbt input
source§

impl InputSigner for SignerWrapper<PrivateKey>

source§

fn sign_input( +) -> Result<(), SignerError>

Sign a single psbt input
source§

impl InputSigner for SignerWrapper<PrivateKey>

source§

fn sign_input( &self, psbt: &mut Psbt, input_index: usize, sign_options: &SignOptions, secp: &Secp256k1<All> -) -> Result<(), SignerError>

Sign a single psbt input
source§

impl SignerCommon for SignerWrapper<DescriptorMultiXKey<Xpriv>>

source§

fn id(&self, secp: &Secp256k1<All>) -> SignerId

Return the SignerId for this signer Read more
source§

fn descriptor_secret_key(&self) -> Option<DescriptorSecretKey>

Return the secret key for the signer Read more
source§

impl SignerCommon for SignerWrapper<DescriptorXKey<Xpriv>>

source§

fn id(&self, secp: &Secp256k1<All>) -> SignerId

Return the SignerId for this signer Read more
source§

fn descriptor_secret_key(&self) -> Option<DescriptorSecretKey>

Return the secret key for the signer Read more
source§

impl SignerCommon for SignerWrapper<PrivateKey>

source§

fn id(&self, secp: &Secp256k1<All>) -> SignerId

Return the SignerId for this signer Read more
source§

fn descriptor_secret_key(&self) -> Option<DescriptorSecretKey>

Return the secret key for the signer Read more

Auto Trait Implementations§

§

impl<S> Freeze for SignerWrapper<S>
where +) -> Result<(), SignerError>

Sign a single psbt input
source§

impl SignerCommon for SignerWrapper<DescriptorMultiXKey<Xpriv>>

source§

fn id(&self, secp: &Secp256k1<All>) -> SignerId

Return the SignerId for this signer Read more
source§

fn descriptor_secret_key(&self) -> Option<DescriptorSecretKey>

Return the secret key for the signer Read more
source§

impl SignerCommon for SignerWrapper<DescriptorXKey<Xpriv>>

source§

fn id(&self, secp: &Secp256k1<All>) -> SignerId

Return the SignerId for this signer Read more
source§

fn descriptor_secret_key(&self) -> Option<DescriptorSecretKey>

Return the secret key for the signer Read more
source§

impl SignerCommon for SignerWrapper<PrivateKey>

source§

fn id(&self, secp: &Secp256k1<All>) -> SignerId

Return the SignerId for this signer Read more
source§

fn descriptor_secret_key(&self) -> Option<DescriptorSecretKey>

Return the secret key for the signer Read more

Auto Trait Implementations§

§

impl<S> Freeze for SignerWrapper<S>
where S: Freeze,

§

impl<S> RefUnwindSafe for SignerWrapper<S>
where S: RefUnwindSafe,

§

impl<S> Send for SignerWrapper<S>
where S: Send,

§

impl<S> Sync for SignerWrapper<S>
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Balance.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Balance.html index 3396543935..bcd25730c1 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Balance.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Balance.html @@ -1,4 +1,4 @@ -Balance in bdk_wallet - Rust

Struct bdk_wallet::Balance

source ·
pub struct Balance {
+Balance in bdk_wallet - Rust

Struct bdk_wallet::Balance

pub struct Balance {
     pub immature: Amount,
     pub trusted_pending: Amount,
     pub untrusted_pending: Amount,
@@ -8,20 +8,20 @@
 
§trusted_pending: Amount

Unconfirmed UTXOs generated by a wallet tx

§untrusted_pending: Amount

Unconfirmed UTXOs received from an external wallet

§confirmed: Amount

Confirmed and immediately spendable balance

-

Implementations§

source§

impl Balance

source

pub fn trusted_spendable(&self) -> Amount

Get sum of trusted_pending and confirmed coins.

+

Implementations§

§

impl Balance

pub fn trusted_spendable(&self) -> Amount

Get sum of trusted_pending and confirmed coins.

This is the balance you can spend right now that shouldn’t get cancelled via another party double spending it.

-
source

pub fn total(&self) -> Amount

Get the whole balance visible to the wallet.

-

Trait Implementations§

source§

impl Add for Balance

§

type Output = Balance

The resulting type after applying the + operator.
source§

fn add(self, other: Balance) -> Balance

Performs the + operation. Read more
source§

impl Clone for Balance

source§

fn clone(&self) -> Balance

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
source§

impl Debug for Balance

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Balance

source§

fn default() -> Balance

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Balance

pub fn total(&self) -> Amount

Get the whole balance visible to the wallet.

+

Trait Implementations§

§

impl Add for Balance

§

type Output = Balance

The resulting type after applying the + operator.
§

fn add(self, other: Balance) -> Balance

Performs the + operation. Read more
§

impl Clone for Balance

§

fn clone(&self) -> Balance

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
§

impl Debug for Balance

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for Balance

§

fn default() -> Balance

Returns the “default value” for a type. Read more
§

impl<'de> Deserialize<'de> for Balance

§

fn deserialize<__D>( __deserializer: __D ) -> Result<Balance, <__D as Deserializer<'de>>::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Balance

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl PartialEq for Balance

source§

fn eq(&self, other: &Balance) -> bool

This method tests for self and other values to be equal, and is used + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Balance

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl PartialEq for Balance

§

fn eq(&self, other: &Balance) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Balance

source§

fn serialize<__S>( +sufficient, and should not be overridden without very good reason.

§

impl Serialize for Balance

§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where - __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Balance

source§

impl StructuralPartialEq for Balance

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where + __S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl Eq for Balance

§

impl StructuralPartialEq for Balance

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
§

impl<Q, K> Equivalent<K> for Q
where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.ChangeSet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.ChangeSet.html index 9cfec99249..6b46de8ac3 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.ChangeSet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.ChangeSet.html @@ -1,28 +1,29 @@ -ChangeSet in bdk_wallet - Rust

Struct bdk_wallet::ChangeSet

source ·
pub struct ChangeSet {
+ChangeSet in bdk_wallet - Rust

Struct bdk_wallet::ChangeSet

source ·
pub struct ChangeSet {
     pub descriptor: Option<Descriptor<DescriptorPublicKey>>,
     pub change_descriptor: Option<Descriptor<DescriptorPublicKey>>,
     pub network: Option<Network>,
-    pub local_chain: ChangeSet,
-    pub tx_graph: ChangeSet<ConfirmationBlockTime>,
-    pub indexer: ChangeSet,
+    pub local_chain: ChangeSet,
+    pub tx_graph: ChangeSet<ConfirmationBlockTime>,
+    pub indexer: ChangeSet,
 }
Expand description

A changeset for Wallet.

Fields§

§descriptor: Option<Descriptor<DescriptorPublicKey>>

Descriptor for recipient addresses.

§change_descriptor: Option<Descriptor<DescriptorPublicKey>>

Descriptor for change addresses.

§network: Option<Network>

Stores the network type of the transaction data.

-
§local_chain: ChangeSet

Changes to the LocalChain.

-
§tx_graph: ChangeSet<ConfirmationBlockTime>

Changes to TxGraph.

-
§indexer: ChangeSet

Changes to KeychainTxOutIndex.

-

Implementations§

source§

impl ChangeSet

source

pub const WALLET_SCHEMA_NAME: &'static str = "bdk_wallet"

Schema name for wallet.

-
source

pub const WALLET_TABLE_NAME: &'static str = "bdk_wallet"

Name of table to store wallet descriptors and network.

-
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables for wallet tables.

-
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Recover a ChangeSet from sqlite database.

-
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist ChangeSet to sqlite database.

-

Trait Implementations§

source§

impl Clone for ChangeSet

source§

fn clone(&self) -> ChangeSet

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
source§

impl Debug for ChangeSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ChangeSet

source§

fn default() -> ChangeSet

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for ChangeSet

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<ChangeSet<ConfirmationBlockTime>> for ChangeSet

source§

fn from(tx_graph: ChangeSet<ConfirmationBlockTime>) -> Self

Converts to this type from the input type.
source§

impl From<ChangeSet<ConfirmationBlockTime, ChangeSet>> for ChangeSet

source§

fn from(indexed_tx_graph: ChangeSet<ConfirmationBlockTime, ChangeSet>) -> Self

Converts to this type from the input type.
source§

impl From<ChangeSet> for ChangeSet

source§

fn from(indexer: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl From<ChangeSet> for ChangeSet

source§

fn from(chain: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl Merge for ChangeSet

source§

fn merge(&mut self, other: Self)

Merge another ChangeSet into itself.

-
source§

fn is_empty(&self) -> bool

Returns whether the structure is considered empty.
source§

fn take(&mut self) -> Option<Self>

Take the value, replacing it with the default value.
source§

impl PartialEq for ChangeSet

source§

fn eq(&self, other: &ChangeSet) -> bool

This method tests for self and other values to be equal, and is used +
§local_chain: ChangeSet

Changes to the LocalChain.

+
§tx_graph: ChangeSet<ConfirmationBlockTime>

Changes to TxGraph.

+
§indexer: ChangeSet

Changes to KeychainTxOutIndex.

+

Implementations§

source§

impl ChangeSet

source

pub const WALLET_SCHEMA_NAME: &'static str = "bdk_wallet"

Schema name for wallet.

+
source

pub const WALLET_TABLE_NAME: &'static str = "bdk_wallet"

Name of table to store wallet descriptors and network.

+
source

pub fn schema_v0() -> String

Get v0 sqlite ChangeSet schema

+
source

pub fn init_sqlite_tables(db_tx: &Transaction<'_>) -> Result<()>

Initialize sqlite tables for wallet tables.

+
source

pub fn from_sqlite(db_tx: &Transaction<'_>) -> Result<Self>

Recover a ChangeSet from sqlite database.

+
source

pub fn persist_to_sqlite(&self, db_tx: &Transaction<'_>) -> Result<()>

Persist ChangeSet to sqlite database.

+

Trait Implementations§

source§

impl Clone for ChangeSet

source§

fn clone(&self) -> ChangeSet

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
source§

impl Debug for ChangeSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ChangeSet

source§

fn default() -> ChangeSet

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for ChangeSet

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<ChangeSet<ConfirmationBlockTime>> for ChangeSet

source§

fn from(tx_graph: ChangeSet<ConfirmationBlockTime>) -> Self

Converts to this type from the input type.
source§

impl From<ChangeSet<ConfirmationBlockTime, ChangeSet>> for ChangeSet

source§

fn from(indexed_tx_graph: ChangeSet<ConfirmationBlockTime, ChangeSet>) -> Self

Converts to this type from the input type.
source§

impl From<ChangeSet> for ChangeSet

source§

fn from(indexer: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl From<ChangeSet> for ChangeSet

source§

fn from(chain: ChangeSet) -> Self

Converts to this type from the input type.
source§

impl Merge for ChangeSet

source§

fn merge(&mut self, other: Self)

Merge another ChangeSet into itself.

+
source§

fn is_empty(&self) -> bool

Returns whether the structure is considered empty.
§

fn take(&mut self) -> Option<Self>

Take the value, replacing it with the default value.
source§

impl PartialEq for ChangeSet

source§

fn eq(&self, other: &ChangeSet) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Serialize for ChangeSet

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where - __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for ChangeSet

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where +sufficient, and should not be overridden without very good reason.

source§

impl Serialize for ChangeSet

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where + __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for ChangeSet

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.

diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.CreateParams.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.CreateParams.html index 8f9958ec7e..061cd324eb 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.CreateParams.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.CreateParams.html @@ -7,7 +7,7 @@
  • change_descriptor = None
  • network = [Network::Bitcoin]
  • genesis_hash = None
  • -
  • lookahead = DEFAULT_LOOKAHEAD
  • +
  • lookahead = [DEFAULT_LOOKAHEAD]
  • Use this method only when building a wallet with a single descriptor. See also Wallet::create_single.

    @@ -19,7 +19,7 @@ also DEFAULT_LOOKAHEAD +
  • lookahead = [DEFAULT_LOOKAHEAD]
  • source

    pub fn keymap(self, keychain: KeychainKind, keymap: KeyMap) -> Self

    Extend the given keychain’s keymap.

    source

    pub fn network(self, network: Network) -> Self

    Set network.

    @@ -28,7 +28,7 @@ also DEFAULT_LOOKAHEAD is sufficient.

    +the default value [DEFAULT_LOOKAHEAD] is sufficient.

    source

    pub fn create_wallet<P>( self, persister: &mut P diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LoadParams.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LoadParams.html index d787916eb2..c6dc3d4ad7 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LoadParams.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LoadParams.html @@ -1,6 +1,6 @@ LoadParams in bdk_wallet - Rust

    Struct bdk_wallet::LoadParams

    source ·
    pub struct LoadParams { /* private fields */ }
    Expand description

    Implementations§

    source§

    impl LoadParams

    source

    pub fn new() -> Self

    Construct parameters with default values.

    -

    Default values: lookahead = DEFAULT_LOOKAHEAD

    +

    Default values: lookahead = [DEFAULT_LOOKAHEAD]

    source

    pub fn keymap(self, keychain: KeychainKind, keymap: KeyMap) -> Self

    Extend the given keychain’s keymap.

    source

    pub fn descriptor<D>( self, @@ -17,7 +17,7 @@ for an expected descriptor containing secrets.

    The lookahead defines a number of script pubkeys to derive over and above the last revealed index. Without a lookahead the indexer will miss outputs you own when processing transactions whose output script pubkeys lie beyond the last revealed index. In most cases -the default value DEFAULT_LOOKAHEAD is sufficient.

    +the default value [DEFAULT_LOOKAHEAD] is sufficient.

    source

    pub fn extract_keys(self) -> Self

    Whether to try extracting private keys from the provided descriptors upon loading. See also LoadParams::descriptor.

    source

    pub fn load_wallet<P>( diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LocalOutput.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LocalOutput.html index fc154074a8..e7312b6660 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LocalOutput.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.LocalOutput.html @@ -4,14 +4,14 @@ pub keychain: KeychainKind, pub is_spent: bool, pub derivation_index: u32, - pub chain_position: ChainPosition<ConfirmationBlockTime>, + pub chain_position: ChainPosition<ConfirmationBlockTime>, }

    Expand description

    An unspent output owned by a Wallet.

    Fields§

    §outpoint: OutPoint

    Reference to a transaction output

    §txout: TxOut

    Transaction output

    §keychain: KeychainKind

    Type of keychain

    §is_spent: bool

    Whether this UTXO is spent or not

    §derivation_index: u32

    The derivation index for the script pubkey in the wallet

    -
    §chain_position: ChainPosition<ConfirmationBlockTime>

    The position of the output in the blockchain.

    +
    §chain_position: ChainPosition<ConfirmationBlockTime>

    The position of the output in the blockchain.

    Trait Implementations§

    source§

    impl Clone for LocalOutput

    source§

    fn clone(&self) -> LocalOutput

    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
    source§

    impl Debug for LocalOutput

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl<'de> Deserialize<'de> for LocalOutput

    source§

    fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
    where __D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    source§

    impl Hash for LocalOutput

    source§

    fn hash<__H: Hasher>(&self, state: &mut __H)

    Feeds this value into the given Hasher. Read more
    1.3.0 · source§

    fn hash_slice<H>(data: &[Self], state: &mut H)
    where H: Hasher, diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.PersistedWallet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.PersistedWallet.html index b2941d1d2b..958462a61a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.PersistedWallet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.PersistedWallet.html @@ -104,11 +104,11 @@ by using
    source

    pub fn list_unspent(&self) -> impl Iterator<Item = LocalOutput> + '_

    Return the list of unspent outputs of this wallet

    source

    pub fn list_output(&self) -> impl Iterator<Item = LocalOutput> + '_

    List all relevant outputs (includes both spent and unspent, confirmed and unconfirmed).

    To list only unspent outputs (UTXOs), use Wallet::list_unspent instead.

    -
    source

    pub fn checkpoints(&self) -> CheckPointIter

    Get all the checkpoints the wallet is currently storing indexed by height.

    -
    source

    pub fn latest_checkpoint(&self) -> CheckPoint

    Returns the latest checkpoint.

    +
    source

    pub fn checkpoints(&self) -> CheckPointIter

    Get all the checkpoints the wallet is currently storing indexed by height.

    +
    source

    pub fn latest_checkpoint(&self) -> CheckPoint

    Returns the latest checkpoint.

    source

    pub fn all_unbounded_spk_iters( &self -) -> BTreeMap<KeychainKind, impl Iterator<Item = Indexed<ScriptBuf>> + Clone>

    Get unbounded script pubkey iterators for both Internal and External keychains.

    +) -> BTreeMap<KeychainKind, impl Iterator<Item = Indexed<ScriptBuf>> + Clone>

    Get unbounded script pubkey iterators for both Internal and External keychains.

    This is intended to be used when doing a full scan of your addresses (e.g. after restoring from seed words). You pass the BTreeMap of iterators to a blockchain data source (e.g. electrum server) which will go through each address until it reaches a stop gap.

    @@ -117,7 +117,7 @@ script pubkeys the wallet is storing internally).

    source

    pub fn unbounded_spk_iter( &self, keychain: KeychainKind -) -> impl Iterator<Item = Indexed<ScriptBuf>> + Clone

    Get an unbounded script pubkey iterator for the given keychain.

    +) -> impl Iterator<Item = Indexed<ScriptBuf>> + Clone

    Get an unbounded script pubkey iterator for the given keychain.

    See all_unbounded_spk_iters for more documentation

    source

    pub fn get_utxo(&self, op: OutPoint) -> Option<LocalOutput>

    Returns the utxo owned by this wallet corresponding to outpoint if it exists in the wallet’s database.

    @@ -133,7 +133,7 @@ See
    source

    pub fn calculate_fee( &self, tx: &Transaction -) -> Result<Amount, CalculateFeeError>

    Calculates the fee of a given transaction. Returns [Amount::ZERO] if tx is a coinbase transaction.

    +) -> Result<Amount, CalculateFeeError>

    Calculates the fee of a given transaction. Returns [Amount::ZERO] if tx is a coinbase transaction.

    To calculate the fee for a [Transaction] with inputs not owned by this wallet you must manually insert the TxOut(s) into the tx graph using the insert_txout function.

    Note tx does not have to be in the graph for this to work.

    @@ -146,7 +146,7 @@ manually insert the TxOut(s) into the tx graph using the
    source

    pub fn calculate_fee_rate( &self, tx: &Transaction -) -> Result<FeeRate, CalculateFeeError>

    Calculate the [FeeRate] for a given transaction.

    +) -> Result<FeeRate, CalculateFeeError>

    Calculate the [FeeRate] for a given transaction.

    To calculate the fee rate for a [Transaction] with inputs not owned by this wallet you must manually insert the TxOut(s) into the tx graph using the insert_txout function.

    Note tx does not have to be in the graph for this to work.

    @@ -169,9 +169,9 @@ of this tx’s outputs that send to script pubkeys tracked by this wallet.

    source

    pub fn get_tx(&self, txid: Txid) -> Option<WalletTx<'_>>

    Get a single transaction from the wallet as a WalletTx (if the transaction exists).

    WalletTx contains the full transaction alongside meta-data such as:

      -
    • Blocks that the transaction is Anchored in. These may or may not be blocks that exist +
    • Blocks that the transaction is Anchored in. These may or may not be blocks that exist in the best chain.
    • -
    • The ChainPosition of the transaction in the best chain - whether the transaction is +
    • The [ChainPosition] of the transaction in the best chain - whether the transaction is confirmed or unconfirmed. If the transaction is confirmed, the anchor which proves the confirmation is provided. If the transaction is unconfirmed, the unix timestamp of when the transaction was last seen in the mempool is provided.
    • @@ -342,7 +342,7 @@ Otherwise, it will return the index of the highest address it has derived.

    source

    pub fn apply_update( &mut self, update: impl Into<Update> -) -> Result<(), CannotConnectError>

    Available on crate feature std only.

    Applies an update to the wallet and stages the changes (but does not persist them).

    +) -> Result<(), CannotConnectError>
    Available on crate feature std only.

    Applies an update to the wallet and stages the changes (but does not persist them).

    Usually you create an update by interacting with some blockchain data source and inserting transactions related to your wallet into it.

    After applying updates you should persist the staged wallet changes. For an example of how @@ -351,7 +351,7 @@ to persist staged wallet changes see Into<Update>, seen_at: u64 -) -> Result<(), CannotConnectError>

    Applies an update alongside a seen_at timestamp and stages the changes.

    +) -> Result<(), CannotConnectError>

    Applies an update alongside a seen_at timestamp and stages the changes.

    seen_at represents when the update is seen (in unix seconds). It is used to determine the last_seens for all transactions in the update which have no corresponding anchor(s). The last_seen value is used internally to determine precedence of conflicting unconfirmed @@ -362,14 +362,14 @@ the current time.

    source

    pub fn staged(&self) -> Option<&ChangeSet>

    Get a reference of the staged ChangeSet that is yet to be committed (if any).

    source

    pub fn staged_mut(&mut self) -> Option<&mut ChangeSet>

    Get a mutable reference of the staged ChangeSet that is yet to be committed (if any).

    source

    pub fn take_staged(&mut self) -> Option<ChangeSet>

    Take the staged ChangeSet to be persisted now (if any).

    -
    source

    pub fn tx_graph(&self) -> &TxGraph<ConfirmationBlockTime>

    Get a reference to the inner TxGraph.

    -
    source

    pub fn spk_index(&self) -> &KeychainTxOutIndex<KeychainKind>

    Get a reference to the inner KeychainTxOutIndex.

    -
    source

    pub fn local_chain(&self) -> &LocalChain

    Get a reference to the inner LocalChain.

    +
    source

    pub fn tx_graph(&self) -> &TxGraph<ConfirmationBlockTime>

    Get a reference to the inner [TxGraph].

    +
    source

    pub fn spk_index(&self) -> &KeychainTxOutIndex<KeychainKind>

    Get a reference to the inner [KeychainTxOutIndex].

    +
    source

    pub fn local_chain(&self) -> &LocalChain

    Get a reference to the inner [LocalChain].

    source

    pub fn apply_block( &mut self, block: &Block, height: u32 -) -> Result<(), CannotConnectError>

    Introduces a block of height to the wallet, and tries to connect it to the +) -> Result<(), CannotConnectError>

    Introduces a block of height to the wallet, and tries to connect it to the prev_blockhash of the block’s header.

    This is a convenience method that is equivalent to calling apply_block_connected_to with prev_blockhash and height-1 as the connected_to parameter.

    @@ -377,12 +377,12 @@ with prev_blockhash and height-1 as the connecte &mut self, block: &Block, height: u32, - connected_to: BlockId -) -> Result<(), ApplyHeaderError>

    Applies relevant transactions from block of height to the wallet, and connects the + connected_to: BlockId +) -> Result<(), ApplyHeaderError>

    Applies relevant transactions from block of height to the wallet, and connects the block to the internal chain.

    The connected_to parameter informs the wallet how this block connects to the internal -LocalChain. Relevant transactions are filtered from the block and inserted into the -internal TxGraph.

    +[LocalChain]. Relevant transactions are filtered from the block and inserted into the +internal [TxGraph].

    WARNING: You must persist the changes resulting from one or more calls to this method if you need the inserted block data to be reloaded after closing the wallet. See Wallet::reveal_next_address.

    @@ -400,13 +400,13 @@ if you need the applied unconfirmed transactions to be reloaded after closing th See Wallet::reveal_next_address.

    source

    pub fn start_sync_with_revealed_spks( &self -) -> SyncRequestBuilder<(KeychainKind, u32)>

    Create a partial SyncRequest for this wallet for all revealed spks.

    +) -> SyncRequestBuilder<(KeychainKind, u32)>

    Create a partial [SyncRequest] for this wallet for all revealed spks.

    This is the first step when performing a spk-based wallet partial sync, the returned -SyncRequest collects all revealed script pubkeys from the wallet keychain needed to +[SyncRequest] collects all revealed script pubkeys from the wallet keychain needed to start a blockchain sync with a spk based blockchain client.

    -
    source

    pub fn start_full_scan(&self) -> FullScanRequestBuilder<KeychainKind>

    Create a `FullScanRequest for this wallet.

    +
    source

    pub fn start_full_scan(&self) -> FullScanRequestBuilder<KeychainKind>

    Create a [`FullScanRequest] for this wallet.

    This is the first step when performing a spk-based wallet full scan, the returned -`FullScanRequest collects iterators for the wallet’s keychain script pub keys needed to +[`FullScanRequest] collects iterators for the wallet’s keychain script pub keys needed to start a blockchain full scan with a spk based blockchain client.

    This operation is generally only used when importing or restoring a previously used wallet in which the list of used scripts is not known.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Update.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Update.html index f7fc0bc3fe..9f5b6a3247 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Update.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Update.html @@ -1,14 +1,14 @@ Update in bdk_wallet - Rust

    Struct bdk_wallet::Update

    source ·
    pub struct Update {
         pub last_active_indices: BTreeMap<KeychainKind, u32>,
    -    pub tx_update: TxUpdate<ConfirmationBlockTime>,
    -    pub chain: Option<CheckPoint>,
    +    pub tx_update: TxUpdate<ConfirmationBlockTime>,
    +    pub chain: Option<CheckPoint>,
     }
    Expand description

    An update to Wallet.

    -

    It updates KeychainTxOutIndex, bdk_chain::TxGraph and LocalChain atomically.

    +

    It updates [KeychainTxOutIndex], [bdk_chain::TxGraph] and [LocalChain] atomically.

    Fields§

    §last_active_indices: BTreeMap<KeychainKind, u32>

    Contains the last active derivation indices per keychain (K), which is used to update the -KeychainTxOutIndex.

    -
    §tx_update: TxUpdate<ConfirmationBlockTime>

    Update for the wallet’s internal TxGraph.

    -
    §chain: Option<CheckPoint>

    Update for the wallet’s internal LocalChain.

    -

    Trait Implementations§

    source§

    impl Clone for Update

    source§

    fn clone(&self) -> Update

    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
    source§

    impl Debug for Update

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Default for Update

    source§

    fn default() -> Update

    Returns the “default value” for a type. Read more
    source§

    impl From<FullScanResponse<KeychainKind>> for Update

    source§

    fn from(value: FullScanResponse<KeychainKind>) -> Self

    Converts to this type from the input type.
    source§

    impl From<SyncResponse> for Update

    source§

    fn from(value: SyncResponse) -> Self

    Converts to this type from the input type.

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +[KeychainTxOutIndex].

    +
    §tx_update: TxUpdate<ConfirmationBlockTime>

    Update for the wallet’s internal [TxGraph].

    +
    §chain: Option<CheckPoint>

    Update for the wallet’s internal [LocalChain].

    +

    Trait Implementations§

    source§

    impl Clone for Update

    source§

    fn clone(&self) -> Update

    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
    source§

    impl Debug for Update

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Default for Update

    source§

    fn default() -> Update

    Returns the “default value” for a type. Read more
    source§

    impl From<FullScanResponse<KeychainKind>> for Update

    source§

    fn from(value: FullScanResponse<KeychainKind>) -> Self

    Converts to this type from the input type.
    source§

    impl From<SyncResponse> for Update

    source§

    fn from(value: SyncResponse) -> Self

    Converts to this type from the input type.

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Wallet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Wallet.html index ed6657fdae..f9dff4e040 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Wallet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/struct.Wallet.html @@ -9,7 +9,7 @@ Its main components are:

    ChangeSets (see take_staged). Also see individual functions and example for instructions on when Wallet state needs to be persisted.

    The Wallet descriptor (external) and change descriptor (internal) must not derive the same -script pubkeys. See KeychainTxOutIndex::insert_descriptor() for more details.

    +script pubkeys. See [KeychainTxOutIndex::insert_descriptor()] for more details.

    Implementations§

    source§

    impl Wallet

    source

    pub fn create_single<D>(descriptor: D) -> CreateParams
    where D: IntoWalletDescriptor + Send + Clone + 'static,

    Build a new single descriptor Wallet.

    If you have previously created a wallet, use load instead.

    @@ -147,11 +147,11 @@ by using
    source

    pub fn list_unspent(&self) -> impl Iterator<Item = LocalOutput> + '_

    Return the list of unspent outputs of this wallet

    source

    pub fn list_output(&self) -> impl Iterator<Item = LocalOutput> + '_

    List all relevant outputs (includes both spent and unspent, confirmed and unconfirmed).

    To list only unspent outputs (UTXOs), use Wallet::list_unspent instead.

    -
    source

    pub fn checkpoints(&self) -> CheckPointIter

    Get all the checkpoints the wallet is currently storing indexed by height.

    -
    source

    pub fn latest_checkpoint(&self) -> CheckPoint

    Returns the latest checkpoint.

    +
    source

    pub fn checkpoints(&self) -> CheckPointIter

    Get all the checkpoints the wallet is currently storing indexed by height.

    +
    source

    pub fn latest_checkpoint(&self) -> CheckPoint

    Returns the latest checkpoint.

    source

    pub fn all_unbounded_spk_iters( &self -) -> BTreeMap<KeychainKind, impl Iterator<Item = Indexed<ScriptBuf>> + Clone>

    Get unbounded script pubkey iterators for both Internal and External keychains.

    +) -> BTreeMap<KeychainKind, impl Iterator<Item = Indexed<ScriptBuf>> + Clone>

    Get unbounded script pubkey iterators for both Internal and External keychains.

    This is intended to be used when doing a full scan of your addresses (e.g. after restoring from seed words). You pass the BTreeMap of iterators to a blockchain data source (e.g. electrum server) which will go through each address until it reaches a stop gap.

    @@ -160,7 +160,7 @@ script pubkeys the wallet is storing internally).

    source

    pub fn unbounded_spk_iter( &self, keychain: KeychainKind -) -> impl Iterator<Item = Indexed<ScriptBuf>> + Clone

    Get an unbounded script pubkey iterator for the given keychain.

    +) -> impl Iterator<Item = Indexed<ScriptBuf>> + Clone

    Get an unbounded script pubkey iterator for the given keychain.

    See all_unbounded_spk_iters for more documentation

    source

    pub fn get_utxo(&self, op: OutPoint) -> Option<LocalOutput>

    Returns the utxo owned by this wallet corresponding to outpoint if it exists in the wallet’s database.

    @@ -176,7 +176,7 @@ See
    source

    pub fn calculate_fee( &self, tx: &Transaction -) -> Result<Amount, CalculateFeeError>

    Calculates the fee of a given transaction. Returns [Amount::ZERO] if tx is a coinbase transaction.

    +) -> Result<Amount, CalculateFeeError>

    Calculates the fee of a given transaction. Returns [Amount::ZERO] if tx is a coinbase transaction.

    To calculate the fee for a [Transaction] with inputs not owned by this wallet you must manually insert the TxOut(s) into the tx graph using the insert_txout function.

    Note tx does not have to be in the graph for this to work.

    @@ -189,7 +189,7 @@ manually insert the TxOut(s) into the tx graph using the
    source

    pub fn calculate_fee_rate( &self, tx: &Transaction -) -> Result<FeeRate, CalculateFeeError>

    Calculate the [FeeRate] for a given transaction.

    +) -> Result<FeeRate, CalculateFeeError>

    Calculate the [FeeRate] for a given transaction.

    To calculate the fee rate for a [Transaction] with inputs not owned by this wallet you must manually insert the TxOut(s) into the tx graph using the insert_txout function.

    Note tx does not have to be in the graph for this to work.

    @@ -212,9 +212,9 @@ of this tx’s outputs that send to script pubkeys tracked by this wallet.

    source

    pub fn get_tx(&self, txid: Txid) -> Option<WalletTx<'_>>

    Get a single transaction from the wallet as a WalletTx (if the transaction exists).

    WalletTx contains the full transaction alongside meta-data such as:

      -
    • Blocks that the transaction is Anchored in. These may or may not be blocks that exist +
    • Blocks that the transaction is Anchored in. These may or may not be blocks that exist in the best chain.
    • -
    • The ChainPosition of the transaction in the best chain - whether the transaction is +
    • The [ChainPosition] of the transaction in the best chain - whether the transaction is confirmed or unconfirmed. If the transaction is confirmed, the anchor which proves the confirmation is provided. If the transaction is unconfirmed, the unix timestamp of when the transaction was last seen in the mempool is provided.
    • @@ -385,7 +385,7 @@ Otherwise, it will return the index of the highest address it has derived.

    source

    pub fn apply_update( &mut self, update: impl Into<Update> -) -> Result<(), CannotConnectError>

    Available on crate feature std only.

    Applies an update to the wallet and stages the changes (but does not persist them).

    +) -> Result<(), CannotConnectError>
    Available on crate feature std only.

    Applies an update to the wallet and stages the changes (but does not persist them).

    Usually you create an update by interacting with some blockchain data source and inserting transactions related to your wallet into it.

    After applying updates you should persist the staged wallet changes. For an example of how @@ -394,7 +394,7 @@ to persist staged wallet changes see Into<Update>, seen_at: u64 -) -> Result<(), CannotConnectError>

    Applies an update alongside a seen_at timestamp and stages the changes.

    +) -> Result<(), CannotConnectError>

    Applies an update alongside a seen_at timestamp and stages the changes.

    seen_at represents when the update is seen (in unix seconds). It is used to determine the last_seens for all transactions in the update which have no corresponding anchor(s). The last_seen value is used internally to determine precedence of conflicting unconfirmed @@ -405,14 +405,14 @@ the current time.

    source

    pub fn staged(&self) -> Option<&ChangeSet>

    Get a reference of the staged ChangeSet that is yet to be committed (if any).

    source

    pub fn staged_mut(&mut self) -> Option<&mut ChangeSet>

    Get a mutable reference of the staged ChangeSet that is yet to be committed (if any).

    source

    pub fn take_staged(&mut self) -> Option<ChangeSet>

    Take the staged ChangeSet to be persisted now (if any).

    -
    source

    pub fn tx_graph(&self) -> &TxGraph<ConfirmationBlockTime>

    Get a reference to the inner TxGraph.

    -
    source

    pub fn spk_index(&self) -> &KeychainTxOutIndex<KeychainKind>

    Get a reference to the inner KeychainTxOutIndex.

    -
    source

    pub fn local_chain(&self) -> &LocalChain

    Get a reference to the inner LocalChain.

    +
    source

    pub fn tx_graph(&self) -> &TxGraph<ConfirmationBlockTime>

    Get a reference to the inner [TxGraph].

    +
    source

    pub fn spk_index(&self) -> &KeychainTxOutIndex<KeychainKind>

    Get a reference to the inner [KeychainTxOutIndex].

    +
    source

    pub fn local_chain(&self) -> &LocalChain

    Get a reference to the inner [LocalChain].

    source

    pub fn apply_block( &mut self, block: &Block, height: u32 -) -> Result<(), CannotConnectError>

    Introduces a block of height to the wallet, and tries to connect it to the +) -> Result<(), CannotConnectError>

    Introduces a block of height to the wallet, and tries to connect it to the prev_blockhash of the block’s header.

    This is a convenience method that is equivalent to calling apply_block_connected_to with prev_blockhash and height-1 as the connected_to parameter.

    @@ -420,12 +420,12 @@ with prev_blockhash and height-1 as the connecte &mut self, block: &Block, height: u32, - connected_to: BlockId -) -> Result<(), ApplyHeaderError>

    Applies relevant transactions from block of height to the wallet, and connects the + connected_to: BlockId +) -> Result<(), ApplyHeaderError>

    Applies relevant transactions from block of height to the wallet, and connects the block to the internal chain.

    The connected_to parameter informs the wallet how this block connects to the internal -LocalChain. Relevant transactions are filtered from the block and inserted into the -internal TxGraph.

    +[LocalChain]. Relevant transactions are filtered from the block and inserted into the +internal [TxGraph].

    WARNING: You must persist the changes resulting from one or more calls to this method if you need the inserted block data to be reloaded after closing the wallet. See Wallet::reveal_next_address.

    @@ -444,17 +444,17 @@ See
    source§

    impl Wallet

    Methods to construct sync/full-scan requests for spk-based chain sources.

    source

    pub fn start_sync_with_revealed_spks( &self -) -> SyncRequestBuilder<(KeychainKind, u32)>

    Create a partial SyncRequest for this wallet for all revealed spks.

    +) -> SyncRequestBuilder<(KeychainKind, u32)>

    Create a partial [SyncRequest] for this wallet for all revealed spks.

    This is the first step when performing a spk-based wallet partial sync, the returned -SyncRequest collects all revealed script pubkeys from the wallet keychain needed to +[SyncRequest] collects all revealed script pubkeys from the wallet keychain needed to start a blockchain sync with a spk based blockchain client.

    -
    source

    pub fn start_full_scan(&self) -> FullScanRequestBuilder<KeychainKind>

    Create a `FullScanRequest for this wallet.

    +
    source

    pub fn start_full_scan(&self) -> FullScanRequestBuilder<KeychainKind>

    Create a [`FullScanRequest] for this wallet.

    This is the first step when performing a spk-based wallet full scan, the returned -`FullScanRequest collects iterators for the wallet’s keychain script pub keys needed to +[`FullScanRequest] collects iterators for the wallet’s keychain script pub keys needed to start a blockchain full scan with a spk based blockchain client.

    This operation is generally only used when importing or restoring a previously used wallet in which the list of used scripts is not known.

    -

    Trait Implementations§

    source§

    impl AsRef<TxGraph<ConfirmationBlockTime>> for Wallet

    source§

    fn as_ref(&self) -> &TxGraph<ConfirmationBlockTime>

    Converts this type into a shared reference of the (usually inferred) input type.
    source§

    impl Debug for Wallet

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +

    Trait Implementations§

    source§

    impl AsRef<TxGraph<ConfirmationBlockTime>> for Wallet

    source§

    fn as_ref(&self) -> &TxGraph<ConfirmationBlockTime>

    Converts this type into a shared reference of the (usually inferred) input type.
    source§

    impl Debug for Wallet

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddForeignUtxoError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddForeignUtxoError.html index 9c66819c43..0046c90f21 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddForeignUtxoError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddForeignUtxoError.html @@ -11,7 +11,7 @@
    §foreign_utxo: OutPoint

    Foreign UTXO outpoint

    §

    InvalidOutpoint(OutPoint)

    Requested outpoint doesn’t exist in the tx (vout greater than available outputs)

    §

    MissingUtxo

    Foreign utxo missing witness_utxo or non_witness_utxo

    -

    Trait Implementations§

    source§

    impl Debug for AddForeignUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Display for AddForeignUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Error for AddForeignUtxoError

    1.30.0 · source§

    fn source(&self) -> Option<&(dyn Error + 'static)>

    The lower-level source of this error, if any. Read more
    1.0.0 · source§

    fn description(&self) -> &str

    👎Deprecated since 1.42.0: use the Display impl or to_string()
    1.0.0 · source§

    fn cause(&self) -> Option<&dyn Error>

    👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
    source§

    fn provide<'a>(&'a self, request: &mut Request<'a>)

    🔬This is a nightly-only experimental API. (error_generic_member_access)
    Provides type based access to context intended for error reports. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +

    Trait Implementations§

    source§

    impl Debug for AddForeignUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Display for AddForeignUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Error for AddForeignUtxoError

    1.30.0 · source§

    fn source(&self) -> Option<&(dyn Error + 'static)>

    The lower-level source of this error, if any. Read more
    1.0.0 · source§

    fn description(&self) -> &str

    👎Deprecated since 1.42.0: use the Display impl or to_string()
    1.0.0 · source§

    fn cause(&self) -> Option<&dyn Error>

    👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
    source§

    fn provide<'a>(&'a self, request: &mut Request<'a>)

    🔬This is a nightly-only experimental API. (error_generic_member_access)
    Provides type based access to context intended for error reports. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddUtxoError.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddUtxoError.html index bbd0b5cc3f..6f7dbf95d3 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddUtxoError.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/tx_builder/enum.AddUtxoError.html @@ -2,7 +2,7 @@ UnknownUtxo(OutPoint), }
    Expand description

    Error returned from TxBuilder::add_utxo and TxBuilder::add_utxos

    Variants§

    §

    UnknownUtxo(OutPoint)

    Happens when trying to spend an UTXO that is not in the internal database

    -

    Trait Implementations§

    source§

    impl Debug for AddUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Display for AddUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Error for AddUtxoError

    1.30.0 · source§

    fn source(&self) -> Option<&(dyn Error + 'static)>

    The lower-level source of this error, if any. Read more
    1.0.0 · source§

    fn description(&self) -> &str

    👎Deprecated since 1.42.0: use the Display impl or to_string()
    1.0.0 · source§

    fn cause(&self) -> Option<&dyn Error>

    👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
    source§

    fn provide<'a>(&'a self, request: &mut Request<'a>)

    🔬This is a nightly-only experimental API. (error_generic_member_access)
    Provides type based access to context intended for error reports. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +

    Trait Implementations§

    source§

    impl Debug for AddUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Display for AddUtxoError

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Error for AddUtxoError

    1.30.0 · source§

    fn source(&self) -> Option<&(dyn Error + 'static)>

    The lower-level source of this error, if any. Read more
    1.0.0 · source§

    fn description(&self) -> &str

    👎Deprecated since 1.42.0: use the Display impl or to_string()
    1.0.0 · source§

    fn cause(&self) -> Option<&dyn Error>

    👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
    source§

    fn provide<'a>(&'a self, request: &mut Request<'a>)

    🔬This is a nightly-only experimental API. (error_generic_member_access)
    Provides type based access to context intended for error reports. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/type.WalletTx.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/type.WalletTx.html index 40cff91b4b..c2cbc3f709 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/type.WalletTx.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/bdk_wallet/type.WalletTx.html @@ -1,7 +1,7 @@ -WalletTx in bdk_wallet - Rust

    Type Alias bdk_wallet::WalletTx

    source ·
    pub type WalletTx<'a> = CanonicalTx<'a, Arc<Transaction>, ConfirmationBlockTime>;
    Expand description

    A CanonicalTx managed by a Wallet.

    +WalletTx in bdk_wallet - Rust

    Type Alias bdk_wallet::WalletTx

    source ·
    pub type WalletTx<'a> = CanonicalTx<'a, Arc<Transaction>, ConfirmationBlockTime>;
    Expand description

    A CanonicalTx managed by a Wallet.

    Aliased Type§

    struct WalletTx<'a> {
    -    pub chain_position: ChainPosition<&'a ConfirmationBlockTime>,
    -    pub tx_node: TxNode<'a, Arc<Transaction>, ConfirmationBlockTime>,
    -}

    Fields§

    §chain_position: ChainPosition<&'a ConfirmationBlockTime>

    How the transaction is observed as (confirmed or unconfirmed).

    -
    §tx_node: TxNode<'a, Arc<Transaction>, ConfirmationBlockTime>

    The transaction node (as part of the graph).

    + pub chain_position: ChainPosition<&'a ConfirmationBlockTime>, + pub tx_node: TxNode<'a, Arc<Transaction>, ConfirmationBlockTime>, +}

    Fields§

    §chain_position: ChainPosition<&'a ConfirmationBlockTime>

    How the transaction is observed as (confirmed or unconfirmed).

    +
    §tx_node: TxNode<'a, Arc<Transaction>, ConfirmationBlockTime>

    The transaction node (as part of the graph).

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/constant.CHANNEL_BOUND.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/constant.CHANNEL_BOUND.html index 70955b3189..65ef732aa4 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/constant.CHANNEL_BOUND.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/constant.CHANNEL_BOUND.html @@ -1,2 +1,2 @@ -CHANNEL_BOUND in example_bitcoind_rpc_polling - Rust

    Constant example_bitcoind_rpc_polling::CHANNEL_BOUND

    source ·
    pub(crate) const CHANNEL_BOUND: usize = 10;
    Expand description

    The mpsc channel bound for emissions from Emitter.

    +CHANNEL_BOUND in example_bitcoind_rpc_polling - Rust

    Constant example_bitcoind_rpc_polling::CHANNEL_BOUND

    source ·
    pub(crate) const CHANNEL_BOUND: usize = 10;
    Expand description

    The mpsc channel bound for emissions from [Emitter].

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/enum.Emission.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/enum.Emission.html index 6f474e84c7..49b57eb900 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/enum.Emission.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/enum.Emission.html @@ -1,8 +1,8 @@ Emission in example_bitcoind_rpc_polling - Rust

    Enum example_bitcoind_rpc_polling::Emission

    source ·
    pub(crate) enum Emission {
    -    Block(BlockEvent<Block>),
    +    Block(BlockEvent<Block>),
         Mempool(Vec<(Transaction, u64)>),
         Tip(u32),
    -}

    Variants§

    §

    Block(BlockEvent<Block>)

    §

    Mempool(Vec<(Transaction, u64)>)

    §

    Tip(u32)

    Trait Implementations§

    source§

    impl Debug for Emission

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +}

    Variants§

    §

    Block(BlockEvent<Block>)

    §

    Mempool(Vec<(Transaction, u64)>)

    §

    Tip(u32)

    Trait Implementations§

    source§

    impl Debug for Emission

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/index.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/index.html index 3c7d8101c7..a9bfb2c0f0 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/index.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_bitcoind_rpc_polling/index.html @@ -1 +1 @@ -example_bitcoind_rpc_polling - Rust

    Crate example_bitcoind_rpc_polling

    source ·

    Structs§

    Enums§

    Constants§

    Functions§

    \ No newline at end of file +example_bitcoind_rpc_polling - Rust

    Crate example_bitcoind_rpc_polling

    source ·

    Structs§

    Enums§

    Constants§

    Functions§

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/enum.CoinSelectionAlgo.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/enum.CoinSelectionAlgo.html index e4f2379f88..de916542ea 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/enum.CoinSelectionAlgo.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/enum.CoinSelectionAlgo.html @@ -4,7 +4,7 @@ OldestFirst, NewestFirst, BranchAndBound, -}

    Variants§

    §

    LargestFirst

    §

    SmallestFirst

    §

    OldestFirst

    §

    NewestFirst

    §

    BranchAndBound

    Trait Implementations§

    source§

    impl Clone for CoinSelectionAlgo

    source§

    fn clone(&self) -> CoinSelectionAlgo

    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
    source§

    impl Debug for CoinSelectionAlgo

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Default for CoinSelectionAlgo

    source§

    fn default() -> CoinSelectionAlgo

    Returns the “default value” for a type. Read more
    source§

    impl Display for CoinSelectionAlgo

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl FromStr for CoinSelectionAlgo

    §

    type Err = Error

    The associated error which can be returned from parsing.
    source§

    fn from_str(s: &str) -> Result<Self, Self::Err>

    Parses a string s to return a value of this type. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +}

    Variants§

    §

    LargestFirst

    §

    SmallestFirst

    §

    OldestFirst

    §

    NewestFirst

    §

    BranchAndBound

    Trait Implementations§

    source§

    impl Clone for CoinSelectionAlgo

    source§

    fn clone(&self) -> CoinSelectionAlgo

    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
    source§

    impl Debug for CoinSelectionAlgo

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Default for CoinSelectionAlgo

    source§

    fn default() -> CoinSelectionAlgo

    Returns the “default value” for a type. Read more
    source§

    impl Display for CoinSelectionAlgo

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl FromStr for CoinSelectionAlgo

    §

    type Err = Error

    The associated error which can be returned from parsing.
    source§

    fn from_str(s: &str) -> Result<Self, Self::Err>

    Parses a string s to return a value of this type. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.create_tx.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.create_tx.html index 193565e42f..3a68ee2ba9 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.create_tx.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.create_tx.html @@ -1,4 +1,4 @@ -create_tx in example_cli - Rust

    Function example_cli::create_tx

    source ·
    pub fn create_tx<O: ChainOracle>(
    +create_tx in example_cli - Rust

    Function example_cli::create_tx

    source ·
    pub fn create_tx<O: ChainOracle>(
         graph: &mut KeychainTxGraph,
         chain: &O,
         assets: &Assets,
    @@ -6,4 +6,4 @@
         address: Address,
         value: u64
     ) -> Result<(Psbt, Option<ChangeInfo>)>
    where - O::Error: Error + Send + Sync + 'static,
    \ No newline at end of file + O::Error: Error + Send + Sync + 'static,

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.handle_commands.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.handle_commands.html index 86852d81f4..dcaaa74741 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.handle_commands.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.handle_commands.html @@ -1,6 +1,6 @@ handle_commands in example_cli - Rust

    Function example_cli::handle_commands

    source ·
    pub fn handle_commands<CS: Subcommand, S: Args>(
         graph: &Mutex<KeychainTxGraph>,
    -    chain: &Mutex<LocalChain>,
    +    chain: &Mutex<LocalChain>,
         db: &Mutex<Store<ChangeSet>>,
         network: Network,
         broadcast: impl FnOnce(S, &Transaction) -> Result<()>,
    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.planned_utxos.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.planned_utxos.html
    index ec454f3afe..3888f211a4 100644
    --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.planned_utxos.html
    +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/fn.planned_utxos.html
    @@ -1,5 +1,5 @@
    -planned_utxos in example_cli - Rust

    Function example_cli::planned_utxos

    source ·
    pub fn planned_utxos<O: ChainOracle>(
    +planned_utxos in example_cli - Rust

    Function example_cli::planned_utxos

    source ·
    pub fn planned_utxos<O: ChainOracle>(
         graph: &KeychainTxGraph,
         chain: &O,
         assets: &Assets
    -) -> Result<Vec<PlanUtxo>, O::Error>
    \ No newline at end of file +) -> Result<Vec<PlanUtxo>, O::Error>
    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeInfo.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeInfo.html index 744aa9c031..cffca80e66 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeInfo.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeInfo.html @@ -1,8 +1,8 @@ ChangeInfo in example_cli - Rust

    Struct example_cli::ChangeInfo

    source ·
    pub struct ChangeInfo {
         pub change_keychain: Keychain,
    -    pub indexer: ChangeSet,
    +    pub indexer: ChangeSet,
         pub index: u32,
    -}

    Fields§

    §change_keychain: Keychain§indexer: ChangeSet§index: u32

    Trait Implementations§

    source§

    impl Debug for ChangeInfo

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +}

    Fields§

    §change_keychain: Keychain§indexer: ChangeSet§index: u32

    Trait Implementations§

    source§

    impl Debug for ChangeInfo

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeSet.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeSet.html index b5f2a3b72d..980da78f56 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeSet.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.ChangeSet.html @@ -2,18 +2,18 @@ pub descriptor: Option<Descriptor<DescriptorPublicKey>>, pub change_descriptor: Option<Descriptor<DescriptorPublicKey>>, pub network: Option<Network>, - pub local_chain: ChangeSet, - pub tx_graph: ChangeSet<ConfirmationBlockTime>, - pub indexer: ChangeSet, + pub local_chain: ChangeSet, + pub tx_graph: ChangeSet<ConfirmationBlockTime>, + pub indexer: ChangeSet, }
    Expand description

    ChangeSet

    Fields§

    §descriptor: Option<Descriptor<DescriptorPublicKey>>

    Descriptor for recipient addresses.

    §change_descriptor: Option<Descriptor<DescriptorPublicKey>>

    Descriptor for change addresses.

    §network: Option<Network>

    Stores the network type of the transaction data.

    -
    §local_chain: ChangeSet

    Changes to the LocalChain.

    -
    §tx_graph: ChangeSet<ConfirmationBlockTime>

    Changes to TxGraph.

    -
    §indexer: ChangeSet

    Changes to KeychainTxOutIndex.

    +
    §local_chain: ChangeSet

    Changes to the [LocalChain].

    +
    §tx_graph: ChangeSet<ConfirmationBlockTime>

    Changes to TxGraph.

    +
    §indexer: ChangeSet

    Changes to [KeychainTxOutIndex].

    Trait Implementations§

    source§

    impl Clone for ChangeSet

    source§

    fn clone(&self) -> ChangeSet

    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
    source§

    impl Debug for ChangeSet

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more
    source§

    impl Default for ChangeSet

    source§

    fn default() -> ChangeSet

    Returns the “default value” for a type. Read more
    source§

    impl<'de> Deserialize<'de> for ChangeSet

    source§

    fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
    where - __D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    source§

    impl Merge for ChangeSet

    source§

    fn merge(&mut self, other: Self)

    Merge another object of the same type onto self.
    source§

    fn is_empty(&self) -> bool

    Returns whether the structure is considered empty.
    source§

    fn take(&mut self) -> Option<Self>

    Take the value, replacing it with the default value.
    source§

    impl PartialEq for ChangeSet

    source§

    fn eq(&self, other: &ChangeSet) -> bool

    This method tests for self and other values to be equal, and is used + __D: Deserializer<'de>,
    Deserialize this value from the given Serde deserializer. Read more
    source§

    impl Merge for ChangeSet

    source§

    fn merge(&mut self, other: Self)

    Merge another object of the same type onto self.
    source§

    fn is_empty(&self) -> bool

    Returns whether the structure is considered empty.
    §

    fn take(&mut self) -> Option<Self>

    Take the value, replacing it with the default value.
    source§

    impl PartialEq for ChangeSet

    source§

    fn eq(&self, other: &ChangeSet) -> bool

    This method tests for self and other values to be equal, and is used by ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
    source§

    impl Serialize for ChangeSet

    source§

    fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
    where __S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    source§

    impl StructuralPartialEq for ChangeSet

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.Init.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.Init.html index ba5d9d652e..340c8f980c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.Init.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/struct.Init.html @@ -1,13 +1,13 @@ Init in example_cli - Rust

    Struct example_cli::Init

    source ·
    pub struct Init<CS: Subcommand, S: Args> {
         pub args: Args<CS, S>,
         pub graph: Mutex<KeychainTxGraph>,
    -    pub chain: Mutex<LocalChain>,
    +    pub chain: Mutex<LocalChain>,
         pub db: Mutex<Store<ChangeSet>>,
         pub network: Network,
     }
    Expand description

    The initial state returned by init_or_load.

    Fields§

    §args: Args<CS, S>

    CLI args

    §graph: Mutex<KeychainTxGraph>

    Indexed graph

    -
    §chain: Mutex<LocalChain>

    Local chain

    +
    §chain: Mutex<LocalChain>

    Local chain

    §db: Mutex<Store<ChangeSet>>

    Database

    §network: Network

    Network

    Auto Trait Implementations§

    §

    impl<CS, S> !Freeze for Init<CS, S>

    §

    impl<CS, S> RefUnwindSafe for Init<CS, S>
    where diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.KeychainTxGraph.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.KeychainTxGraph.html index 69421bcb1f..932716eefe 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.KeychainTxGraph.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.KeychainTxGraph.html @@ -1,6 +1,6 @@ -KeychainTxGraph in example_cli - Rust

    Type Alias example_cli::KeychainTxGraph

    source ·
    pub type KeychainTxGraph = IndexedTxGraph<ConfirmationBlockTime, KeychainTxOutIndex<Keychain>>;
    Expand description

    Alias for a IndexedTxGraph with specific Anchor and Indexer.

    +KeychainTxGraph in example_cli - Rust

    Type Alias example_cli::KeychainTxGraph

    source ·
    pub type KeychainTxGraph = IndexedTxGraph<ConfirmationBlockTime, KeychainTxOutIndex<Keychain>>;
    Expand description

    Alias for a IndexedTxGraph with specific Anchor and Indexer.

    Aliased Type§

    struct KeychainTxGraph {
    -    pub index: KeychainTxOutIndex<Keychain>,
    +    pub index: KeychainTxOutIndex<Keychain>,
         /* private fields */
    -}

    Fields§

    §index: KeychainTxOutIndex<Keychain>

    Transaction index.

    +}

    Fields§

    §index: KeychainTxOutIndex<Keychain>

    Transaction index.

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.PlanUtxo.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.PlanUtxo.html index 575a1c700d..38d6760ed6 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.PlanUtxo.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_cli/type.PlanUtxo.html @@ -1 +1 @@ -PlanUtxo in example_cli - Rust

    Type Alias example_cli::PlanUtxo

    source ·
    pub type PlanUtxo = (Plan, FullTxOut<ConfirmationBlockTime>);
    \ No newline at end of file +PlanUtxo in example_cli - Rust

    Type Alias example_cli::PlanUtxo

    source ·
    pub type PlanUtxo = (Plan, FullTxOut<ConfirmationBlockTime>);
    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_wallet_rpc/enum.Emission.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_wallet_rpc/enum.Emission.html index b84a18cd3e..c964ee5c8d 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_wallet_rpc/enum.Emission.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/example_wallet_rpc/enum.Emission.html @@ -1,8 +1,8 @@ Emission in example_wallet_rpc - Rust

    Enum example_wallet_rpc::Emission

    source ·
    pub(crate) enum Emission {
         SigTerm,
    -    Block(BlockEvent<Block>),
    +    Block(BlockEvent<Block>),
         Mempool(Vec<(Transaction, u64)>),
    -}

    Variants§

    §

    SigTerm

    §

    Block(BlockEvent<Block>)

    §

    Mempool(Vec<(Transaction, u64)>)

    Trait Implementations§

    source§

    impl Debug for Emission

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    Auto Trait Implementations§

    Blanket Implementations§

    source§

    impl<T> Any for T
    where +}

    Variants§

    §

    SigTerm

    §

    Block(BlockEvent<Block>)

    §

    Mempool(Vec<(Transaction, u64)>)

    Trait Implementations§

    source§

    impl Debug for Emission

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result

    Formats the value using the given formatter. Read more

    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.

    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/help.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/help.html index f662b41ef8..3ed950109f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/help.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/help.html @@ -1 +1 @@ -Help

    Rustdoc help

    Back
    \ No newline at end of file +Help

    Rustdoc help

    Back
    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search-index.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search-index.js index a5969a0ee7..2f512b23e8 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search-index.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search-index.js @@ -1,12 +1,12 @@ var searchIndex = new Map(JSON.parse('[\ ["bdk_bitcoind_rpc",{"t":"KFFEONNNNNNONNNNNNMNNNNNNNNNNNN","n":["BitcoindRpcErrorExt","BlockEvent","Emitter","bitcoincore_rpc","block","block_hash","block_height","borrow","borrow","borrow_mut","borrow_mut","checkpoint","connected_to","fmt","from","from","into","into","is_not_found_error","mempool","new","next_block","next_header","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip"],"q":[[0,"bdk_bitcoind_rpc"],[31,"bitcoin::blockdata::block"],[32,"bdk_core::block_id"],[33,"core::fmt"],[34,"bitcoin::blockdata::transaction"],[35,"alloc::vec"],[36,"bitcoincore_rpc::error"],[37,"core::result"],[38,"bitcoincore_rpc::client"],[39,"bdk_core::checkpoint"],[40,"core::option"],[41,"core::any"]],"i":[0,0,0,0,1,1,1,12,1,12,1,1,1,1,12,1,12,1,10,12,12,12,12,12,1,12,1,12,1,12,1],"f":"`````{{{d{{b{c}}}}}f{}}{{{d{{b{c}}}}}h{}}{{{d{c}}}{{d{e}}}{}{}}0{{{d{jc}}}{{d{je}}}{}{}}0`{{{d{{b{c}}}}}l{}}{{{d{{b{c}}}}{d{jn}}}A`Ab}{cc{}}0{ce{}{}}0{{{d{Ad}}}Af}{{{d{j{Ah{c}}}}}{{Bd{{B`{{An{AjAl}}}}Bb}}}Bf}{{{d{c}}Bhh}{{Ah{c}}}Bf}{{{d{j{Ah{c}}}}}{{Bd{{Bl{{b{Bj}}}}Bb}}}Bf}{{{d{j{Ah{c}}}}}{{Bd{{Bl{{b{Bn}}}}Bb}}}Bf}{c{{Bd{e}}}{}{}}000{{{d{c}}}C`{}}077","D":"Bd","p":[[5,"BlockEvent",0],[1,"reference"],[5,"BlockHash",31],[1,"u32"],[0,"mut"],[5,"BlockId",32],[5,"Formatter",33],[8,"Result",33],[10,"Debug",33],[10,"BitcoindRpcErrorExt",0],[1,"bool"],[5,"Emitter",0],[5,"Transaction",34],[1,"u64"],[1,"tuple"],[5,"Vec",35],[6,"Error",36],[6,"Result",37],[10,"RpcApi",38],[5,"CheckPoint",39],[5,"Block",31],[6,"Option",40],[5,"Header",31],[5,"TypeId",41]],"r":[],"b":[],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAA0ABAAEAAAACAADAA4AAAAYAAcA"}],\ -["bdk_chain",{"t":"KFSFFKGFFFPKFRFFIEEIKFEFFPNNMNNONNNNDEONOONNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNMNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNONOONCCNNNNNNNNNNNNNNNNNNNNNMNNMNONECNMENNNNNNONNNNNNNNDCODNNNNNOCENNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNCOOOONNNNNNNNNNNNNONNNNNNNNNNNNNOOOFGPPPPFTTPPPFFPFFTTPGTTGFFFGFTTTTTTTTTTTTTTTTTTTPPFPPPTPGGPPPPTTTTFFPPPPPPFFFFPPTTPFFFFFFPPPPPFFFFFFGFFFPPPPFFFFFPPPPPPPPPPPPPPPPPFTFFFFFFFGFFFFTTTTTTNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCCNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNONNNNNNCNNNNNNNNNNNNNNNCONNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNCONONNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNONONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNCNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNONNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNOFGGPPPGTPFPFGPFPGGKPFPPPPGPPPGPPPFPFPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOPPPGPFPFPFPFGGFPFPPPPPFPPPKGFPPPPPPPPGPPFPNNNNMNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNKKCCMMMMMMMHCHHHHCHHHPGPFFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGPFFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRGPRGGKPPPPPPCNNNNNNNNNNNNMHNHHHNNNHCHNHHHNNHCNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNCFSSSPSPGPSSPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNKRKRFGKFFPPPNNNNNNNNNNNNNNMNNNNNMNNMNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFSSSSSSSSSSRRKMNNNNNNNFNNNNNNNNNNNNFFKNNNNMNNNNNNNNNNNNNNNNNNNNNNNNTGGKTTTKPTGTGGTFKPTTTFTTTTRTGTPTTTTTPPTTTPTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHHHHHHHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSFSGGGCCCCCCCTTKFTFRTKFTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNFFPGFGPPGPFFPPPPPPPPPPPGPFFGPPPFGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSFFPGFPFFPPSPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKFFKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFSPPSSGNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNHHNNFGPPSSPPNNNNNNNNHHHHHHHHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFGFPFFFPNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNONNNNNONONNNNNNNNNNNNNONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNFFFFFGFFFFPPNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPFGFFGIIIIFPPKPFPPPPIPPPPFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNOOOOOONNNOOOOOONNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOFFCCCCCCCCCPPGFFFTPPTTTFPPGFFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNOONNONNNNNONNNNNNNNNNNNNNNONNNNNONNNNNTSFSSSSSSSTSSTSSTTTSNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNFCCPFFSGTTTTFFTPFTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFFFFGTTTTTFPFTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGGPPPJJJJJFPPPPPPCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSFFPGGFFPPPFPFFKFFFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCHGPPSSFNNNNNNNNNNNNNNNNNNNPGPPFGPPPPPPPPPPPPPPPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFFFTFFTTTTTGFTPFFFFPFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNOONNONHHOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNOOONNNNNNNOSFFFNNNNNNNNNNNNNTPKGKTPFTKTTTTPKONOOOONNNNNNNNMHHNMMMMMMMMMMCNNNNNNNNNNNNNOOONOCOOOMMMMMMMMMMOCHNNNNNNNNNNNFKPKGGPPSPPPPKPFKNNNNNNNNNNNNMNNHHHMMMMMMMMMMNNNNNNNNNNNNNNNNNNNMMMMMMMMMMHHNNNNNNNNNNNNNNNNNOOOOJFJJJJJOOOOOOOOOOOOOKKRRKRFRKFNNNNNNMMNNMNCNNMNNNNNNNNNKFFFFGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNPFPFPPFGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFTRTRFKKFFTRMMQCNMMMNCNQQCMMMCQCCCCCQCCCCMHFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGRKRKIGGFPPFPPPFPNMNNNNNNNNNNNNNNCNNNNNNNNNNNCNNNNNNNNNNNNNNNCNNNNNNNNNQNNNNNNNNNNNMNNNQNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQFNNNNNNNNNNNNNNNNNRFFKNMNNNNNNNNNNNNQNNNQNNNNNNNNNNNNNNNGGPPFPFPFNNNNNNNONNNNONNNNNNNRKGGPPPPMRKRKNMMNNNNFFFNNNONONNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKYKRRRKYRRRRRRRKNNNCMMMMMMMMMNMMMMMMMMMMMMMMMNMMMMMMQNNCMMMMMMNMMMMMMMMMMMMMMMMNMMMMMMMPPPKKKKRPKKRRRRRKPFKPKPPPPPKPKPPPGPPPRRRKKNNNNNNNNNMNNMMNMMMMMMMMNMMMMMMMMMMMMMMMNMMMMMMNNNMNMNNNNNNNNNMNNNNNNMNMNNNMNMNNNNMNNNNNNNMNNMNNCNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFFFFFFFFFFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKRRRRRRRRFRRRRRRRRKKRKRKRKRKRKRKRKKNNNNNNMNNNNNNNNNNMMMMMMMNNNNNNNNNNNNNNMMMMMMNNNMMMMMMNNNNNMMMMMNMMMMMMMMMMMMNMMMMMMMMNNNNNNNNNCTKNMNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPKPPPFPFGFPPPPPPPPKIFFPFPPKPNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNMNNNNNNNNNNNNNNNNNNNHHNNQNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNPFPPGGPPFPFPPPPFPGGGFFFFPPPFKRRFFFIIKFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPFGPPPPPFPPNNNNNHHNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNONNNNPPGGFPPPPPFCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHFTTTTFTTTTSFTTFTTTFTNCONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCCCCCNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFFPPPPPPPOONNNNNNNNNNNNNNNNNNNNNNNNNNOOOONONNNNNNNNNNNPPPPPPPPPFFPPPPPPPPPPPPPPSSPPGPPPFPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOPPPFFGPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNOONNNNNNNNNNNNOONNNOOPGFFPPNNNNNNNNNNNNNNNNNNNNONNNNNNNNNOONNNNNNONNNNNNNNNNNNONNNNNNFFFFNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNONNNNNNNNONNNNONNNNFFFFFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOONNNNNNNNNNNNNNNNNNOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPPPPFGFNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONOOOOOOOONNNNNNNNNNNNOONNNFNNNNNNNNNNNNNNNNNNNNSSSSSSSSHFFFPPPPPPPPPPGRGPKGPGFPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPFGPPFPGFPPPPPPPPPGGIGIPPPPPPPPPPPPPPPOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNOOONNNNNNNNNNNNNOONNNNOOOOCOOOCNNNOONNNNNNNOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNONNNNNNNNNNNNNOOOOOOOOOOOOOOOOOFFFINNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNONNNONNNNNNNNNNNNNNOONNNGFKTGPTPPPFPPPPPPPPFTFPTPGKFFFFGFKKKGFFTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMNNNNNNNNNCCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCQNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSSSSSSSSSSSSSSFNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNPPFGFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKFIFIFIPPPPFSSSSSIFFPPPPRFMNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQQNNNNNNNNNNNNNNNNNNHNNNNNCHHHHHHJHHHHHHHHHHHHHHHHHHHJHHHHHHHHHHHJHHHHHJJJHHHHHHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNHHHHHNNNNNFTNNNNIIIIGNNNNNNNNINNNNNNNNNNTRTRFKKFFTRMNMNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNMNNNNNQQNNNNNMNNNNNMNMNNNQNQMNNNNNNNNNNNNNNNNNNNNTKFKTKKRKNNNCNMNNNNNNNMNNNNNNNMMCHNNCNNNCNNHNMNMNNNNPFFGFFKKPPPFFFFPFGFMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNCKKKRFFFFFKRMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPGFCKFNNNNNNNNNNKKRKKKRKKFFMNMNNMMNMMNMNNMNNNNNMMMHMNNNNMHNMFFFCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNRKFKNNMNMNNMMNMMNNCNNNNNMMNNNNNNGGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPFGPGPGPPPPPFPFFPPPPPPGGPGPFPFFFPPFPFGPPPFPPFFGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNSPPPFGPNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNOHNNNNNNNNNNNNNNFPPPFPGPPGPPPPPPPPFFGFPPPPFFPGPFSSSSSSSFGFFFPFFFFGGFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONCNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNRKMMMMMCCFSPKGPFTTKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNMNNNOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGTPFFFFPFFTNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNONNNNNNSHFFFPPGFFFFPNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNOONNNNNONNONNNNNNNNNNNNNNNNNNNNNNNNOONOONNNNNNNNNNNNNNNNNTGFFPPTTTFFFFFNNNOOONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNONOOOONNNNNNNNNNNNNNNNNN","n":["Anchor","AnchorImpl","BIP32_MAX_INDEX","Balance","BlockId","ChainOracle","ChainPosition","CheckPoint","CheckPointIter","ConfirmationBlockTime","Confirmed","DescriptorExt","DescriptorId","Error","FullTxOut","Impl","Indexed","IndexedTxGraph","Indexer","KeychainIndexed","Merge","SpkIterator","TxGraph","TxPosInBlock","TxUpdate","Unconfirmed","add","all_zeros","anchor_block","anchor_block","anchor_block","anchors","as_byte_array","as_raw_hash","as_ref","as_ref","bdk_core","bitcoin","block","block_id","block_id","block_id","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","chain_position","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloned","cmp","cmp","cmp","cmp","cmp","column_result","column_result","column_result","column_result","column_result","column_result","column_result","column_result","column_result","confirmation_height_upper_bound","confirmation_height_upper_bound","confirmation_height_upper_bound","confirmation_height_upper_bound","confirmation_time","confirmed","default","default","default","default","deref","deref","descriptor","descriptor_id","deserialize","deserialize","deserialize","deserialize","deserialize","dust_value","engine","eq","eq","eq","eq","eq","eq","eq","eq","eq_ptr","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_block_ids","from_byte_array","from_engine","from_header","from_raw_hash","from_slice","from_slice_delegated","from_str","get","get_chain_tip","hash","hash","hash","hash","hash","hash","height","height","immature","index","indexed_tx_graph","indexer","insert","into","into","into","into","into","into","into","into","into","into","into","into","into","into_fallible","into_fallible","into_inner","into_inner","into_iter","into_iter","into_iter","is_block_in_chain","is_confirmed","is_confirmed_and_spendable","is_empty","is_mature","is_on_coinbase","iter","keychain_txout","local_chain","map_anchors","merge","miniscript","new","new","new_with_range","next","next","nth","outpoint","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","prev","push","range","rusqlite","rusqlite_impl","seen_ats","serde","serialize","serialize","serialize","serialize","serialize","spent_by","spk_client","spk_txout","take","to_byte_array","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_raw_hash","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_string","to_string","total","transpose_into_fallible","transpose_into_fallible","trusted_pending","trusted_spendable","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_graph","tx_pos","txout","txouts","txs","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","untrusted_pending","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","anchor","last_seen","transitively","Address","AddressType","All","All","AllPlusAnyoneCanPay","AllPlusAnyoneCanPay","Amount","BROADCAST_MIN","BTC","Bit","Bitcoin","Bitcoin","Block","BlockHash","CentiBitcoin","CompactTarget","CompressedPublicKey","DEFAULT_MAX_FEE_RATE","DUST","Default","Denomination","ENABLE_LOCKTIME_NO_RBF","ENABLE_RBF_NO_LOCKTIME","EcdsaSighashType","FeeRate","FilterHash","FilterHeader","KnownHrp","LegacySighash","MAX","MAX","MAX","MAX","MAX","MAX","MAX_ATTAINABLE_MAINNET","MAX_ATTAINABLE_REGTEST","MAX_ATTAINABLE_SIGNET","MAX_ATTAINABLE_TESTNET","MAX_BLOCK","MAX_MONEY","MAX_MONEY","MAX_STANDARD_WEIGHT","MIN","MIN","MIN","MIN","MIN_TRANSACTION","Main","Mainnet","MerkleBlock","MicroBitcoin","MilliBitcoin","MilliSatoshi","NULL","NanoBitcoin","Network","NetworkKind","None","None","NonePlusAnyoneCanPay","NonePlusAnyoneCanPay","ONE_BTC","ONE_BTC","ONE_SAT","ONE_SAT","Opcode","OutPoint","P2pkh","P2sh","P2tr","P2wpkh","P2wsh","PicoBitcoin","PrivateKey","Psbt","PubkeyHash","PublicKey","Regtest","Regtest","SAT","SIZE","Satoshi","Script","ScriptBuf","ScriptHash","SegwitV0Sighash","Sequence","SignedAmount","Signet","Single","Single","SinglePlusAnyoneCanPay","SinglePlusAnyoneCanPay","TapBranchTag","TapLeafHash","TapLeafTag","TapNodeHash","TapSighash","TapSighashTag","TapSighashType","TapTweakHash","TapTweakTag","Target","Test","Testnet","Testnet4","Testnets","Transaction","TxIn","TxMerkleNode","TxOut","Txid","V0","V1","V10","V11","V12","V13","V14","V15","V16","V2","V3","V4","V5","V6","V7","V8","V9","VarInt","WITNESS_SCALE_FACTOR","WPubkeyHash","WScriptHash","Weight","Witness","WitnessCommitment","WitnessMerkleNode","WitnessProgram","WitnessVersion","Work","Wtxid","XKeyIdentifier","XOnlyPublicKey","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","abs","add","add","add","add","add_assign","add_assign","add_assign","add_tweak","address","address_type","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","amount","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_bytes","as_c_ptr","as_mut","as_mut","as_mut","as_mut","as_mut_bytes","as_mut_c_ptr","as_mut_ptr","as_mut_script","as_ptr","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_script","as_unchecked","assume_checked","assume_checked_ref","assume_hidden","base_size","base_size","bip152","bip158","bip32","bip34_block_height","block_hash","blockdata","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","builder","bytes","chain_hash","check_after","check_merkle_root","check_older","check_older","check_witness_commitment","checked_abs","checked_add","checked_add","checked_add","checked_div","checked_div","checked_div","checked_div","checked_mul","checked_mul","checked_mul","checked_mul","checked_mul_by_weight","checked_rem","checked_rem","checked_sub","checked_sub","checked_sub","classify","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","coinbase","combine","compressed","compressed","compute_merkle_root","compute_ntxid","compute_txid","compute_witness_commitment","compute_wtxid","consensus","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","count_sigops","count_sigops_legacy","dangerous_assume_tweaked","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref_mut","des_btc","des_btc","des_sat","des_sat","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize_from_reader","difficulty","difficulty_float","display_dynamic","display_dynamic","display_in","display_in","div","div","div","div","div","div_assign","div_assign","div_assign","dust_value","ecdsa","enables_absolute_lock_time","enables_lock_time","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","extend","extract","extract_matches","extract_tx","extract_tx_fee_rate_limit","extract_tx_unchecked_fee_rate","extract_tx_with_fee_rate_limit","fee","fee_vb","fee_wu","filter_header","finalize","finalize_inp","finalize_inp_mall","finalize_inp_mall_mut","finalize_inp_mut","finalize_mall","finalize_mall_mut","finalize_mut","first_opcode","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_asm","fmt_value_in","fmt_value_in","fmt_wif","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_512_second_intervals","from_be_bytes","from_be_bytes","from_block_with_predicate","from_btc","from_btc","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_bytes","from_bytes","from_bytes_mut","from_chain_hash","from_compact","from_consensus","from_consensus","from_consensus","from_consensus_u8","from_core_arg","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_float_in","from_float_in","from_header_difficulty_adjustment","from_header_txids_with_predicate","from_height","from_hex","from_hex","from_hex","from_hex","from_hex","from_int_btc","from_iter","from_key_and_tweak","from_keypair","from_kwu","from_le_bytes","from_le_bytes","from_magic","from_next_work_required","from_node_hashes","from_non_witness_data_size","from_private_key","from_private_key","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_sat","from_sat","from_sat_per_kwu","from_sat_per_vb","from_sat_per_vb_unchecked","from_script","from_script","from_script","from_seconds_ceil","from_seconds_floor","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_standard","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str_in","from_str_in","from_str_with_denomination","from_str_with_denomination","from_unprefixed_hex","from_unprefixed_hex","from_unprefixed_hex","from_unprefixed_hex","from_unsigned_tx","from_vb","from_vb_unchecked","from_vb_unwrap","from_wif","from_witness_data_size","from_witness_program","from_wu","from_wu_usize","generate","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash_types","header","header","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","inner","inner","input","inputs","instruction_indices","instruction_indices_minimal","instructions","instructions_minimal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_boxed_script","into_bytes","into_iter","into_script_buf","into_unchecked","is_absolute_timelock_satisfied","is_coinbase","is_empty","is_empty","is_explicitly_rbf","is_final","is_height_locked","is_lock_time_enabled","is_mainnet","is_met_by","is_multisig","is_negative","is_null","is_op_return","is_p2pk","is_p2pkh","is_p2sh","is_p2tr","is_p2tr","is_p2wpkh","is_p2wpkh","is_p2wsh","is_p2wsh","is_positive","is_provably_unspendable","is_push_only","is_rbf","is_related_to_pubkey","is_related_to_xonly_pubkey","is_relative_lock_time","is_spend_standard","is_time_locked","is_uncompressed","is_valid_for_network","is_witness_program","is_x_only_key","iter","iter_funding_utxos","key","last","legacy_weight","len","len","lock_time","log2","magic","matches_script_pubkey","max_difficulty_transition_threshold","max_transition_threshold","max_transition_threshold_unchecked","merkle_tree","min_difficulty_transition_threshold","min_transition_threshold","minimal_non_dust","minimal_non_dust","minimal_non_dust_custom","minimal_non_dust_custom","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","neg","network","network","new","new","new","new","new","new","new","new_op_return","new_p2pk","new_p2pkh","new_p2sh","new_p2tr","new_p2tr_tweaked","new_p2wpkh","new_p2wsh","new_uncompressed","new_uncompressed","new_witness_program","nth","ntxid","null","output","outputs","p2p","p2pk_public_key","p2pkh","p2sh","p2sh_from_hash","p2shwpkh","p2shwsh","p2tr","p2tr","p2tr_key_spend","p2tr_tweaked","p2tr_tweaked","p2wpkh","p2wpkh","p2wpkh","p2wpkh_script_code","p2wpkh_script_code","p2wpkh_script_code","p2wpkh_script_code","p2wsh","p2wsh","params","parse","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","policy","positive_sub","pow","previous_output","program","proprietary","provider_lookup_ecdsa_sig","provider_lookup_hash160","provider_lookup_hash256","provider_lookup_raw_pkh_ecdsa_sig","provider_lookup_raw_pkh_pk","provider_lookup_raw_pkh_tap_leaf_script_sig","provider_lookup_raw_pkh_x_only_pk","provider_lookup_ripemd160","provider_lookup_sha256","provider_lookup_tap_control_block_map","provider_lookup_tap_key_spend_sig","provider_lookup_tap_leaf_script_sig","psbt","pubkey_hash","pubkey_hash","pubkey_hash","public_key","public_key","push","push_ecdsa_signature","push_instruction","push_instruction_no_opt","push_opcode","push_slice","read_from","read_from","redeem_script","rem","rem","rem_assign","rem_assign","require_network","reserve","reserve_exact","scale_by_witness_factor","scan_and_push_verify","script_hash","script_hash","script_pubkey","script_pubkey","script_pubkey_lens","script_sig","second_to_last","segwit_weight","sequence","ser_btc","ser_btc","ser_btc_opt","ser_btc_opt","ser_sat","ser_sat","ser_sat_opt","ser_sat_opt","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize_hex","serialize_to_writer","sighash","sighash_ecdsa","sighash_msg","sign","sign_message","signum","size","size","size","spend_utxo","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","tap_tweak","taproot","taproot_annex","taproot_control_block","tapscript","tapscript_leaf_hash","third_to_last","to_address_data","to_asm_string","to_be_bytes","to_be_bytes","to_btc","to_btc","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_bytes","to_bytes","to_bytes","to_bytes","to_compact_lossy","to_consensus","to_consensus_u32","to_core_arg","to_fe","to_float_in","to_float_in","to_hash160","to_hash160","to_hash256","to_hash256","to_hex_string","to_kwu_floor","to_le_bytes","to_le_bytes","to_num","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_p2sh","to_p2tr","to_p2wsh","to_public_key","to_public_key","to_qr_uri","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_relative_lock_time","to_ripemd160","to_ripemd160","to_sat","to_sat","to_sat_per_kwu","to_sat_per_vb_ceil","to_sat_per_vb_floor","to_scalar","to_sha256","to_sha256","to_signed","to_sort_key","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string_in","to_string_in","to_string_with_denomination","to_string_with_denomination","to_target","to_u32","to_u8","to_unsigned","to_vbytes_ceil","to_vbytes_floor","to_vec","to_wif","to_work","to_wu","to_x_only_pubkey","total_sigop_cost","total_size","total_size","total_size","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tweak_add_check","tx_in","tx_out","txdata","txid","txid","txn","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_prefix","type_prefix","unchecked_add","unchecked_add","unchecked_sub","unchecked_sub","unknown","unsigned_abs","unsigned_tx","update_input_with_descriptor","update_output_with_descriptor","value","verify","verify","verify","version","version","version","vout","vsize","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weight","weight","weight","with_capacity","witness","witness_program","witness_root","witness_script","witness_version","wpubkey_hash","wpubkey_hash","write_into","write_into","wscript_hash","wtxid","xpub","Address","AddressData","AddressType","Base58","Bech32","ExcessiveScriptSize","FromScriptError","IS_CHECKED","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidLegacyPrefix","InvalidLegacyPrefixError","KnownHrp","LegacyAddressTooLong","LegacyAddressTooLongError","Mainnet","NetworkChecked","NetworkUnchecked","NetworkValidation","NetworkValidation","NetworkValidationError","P2pkh","P2pkh","P2sh","P2sh","P2shError","P2tr","P2wpkh","P2wsh","ParseError","Regtest","Segwit","Testnets","UnknownAddressTypeError","UnknownHrp","UnknownHrpError","UnrecognizedScript","WitnessProgram","WitnessProgram","WitnessVersion","WitnessVersion","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","into","into","into","into","into","into","into","into","into","into","into","into","invalid_base58_payload_length","invalid_legacy_address_prefix","invalid_legcay_address_length","partial_cmp","partial_cmp","partial_cmp","source","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","pubkey_hash","script_hash","witness_program","Base58","Bech32","ExcessiveScriptSize","FromScriptError","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidLegacyPrefix","InvalidLegacyPrefixError","LegacyAddressTooLong","LegacyAddressTooLongError","NetworkValidation","NetworkValidationError","P2shError","ParseError","UnknownAddressTypeError","UnknownHrp","UnknownHrpError","UnrecognizedScript","WitnessProgram","WitnessProgram","WitnessVersion","WitnessVersion","Amount","Bit","Bitcoin","CentiBitcoin","CheckedSum","Denomination","Display","InputTooLarge","InvalidCharacter","MicroBitcoin","MilliBitcoin","MilliSatoshi","MissingDigits","NanoBitcoin","OutOfRange","ParseAmountError","PicoBitcoin","Satoshi","SignedAmount","TooPrecise","borrow","borrow","borrow_mut","borrow_mut","checked_sum","clone","clone","clone_into","clone_into","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","serde","show_denomination","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","SerdeAmount","SerdeAmountForOpt","as_btc","as_sat","des_btc","des_sat","ser_btc","ser_btc_opt","ser_sat","ser_sat_opt","type_prefix","deserialize","opt","serialize","deserialize","serialize","deserialize","opt","serialize","deserialize","serialize","Decode","Error","IncorrectChecksum","InvalidCharacterError","String","TooShort","Vec","add","add_assign","allocator","append","as_bytes","as_hex","as_mut","as_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_str","as_mut_vec","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_slice","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clear","clear","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column_result","column_result","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consume","decode","decode_check","dedup","dedup_by","dedup_by_key","default","default","deref","deref","deref_mut","deref_mut","deserialize","deserialize","drain","drain","drop","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","encode","encode_check","encode_check_to_fmt","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","extend","extend","extend","extend","extend","extend","extend","extend","extend_from_slice","extend_from_within","extend_from_within","extend_one","extend_one","extend_one","extend_one","extend_one","extend_one","extend_one","extend_reserve","extend_reserve","extend_reserve","extend_reserve","extract_if","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hex","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_raw_parts","from_raw_parts","from_raw_parts_in","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","hash","hex_reserve_suggestion","index","index","index_mut","index_mut","insert","insert","insert_str","into","into","into","into","into_assets","into_boxed_slice","into_boxed_str","into_bytes","into_derivation_path","into_derivation_path","into_deserializer","into_deserializer","into_flattened","into_iter","into_iter","into_iter","into_raw_parts","into_raw_parts","into_raw_parts_with_alloc","into_searcher","invalid_base58_character","is_contained_in","is_empty","is_empty","is_empty","is_prefix_of","is_suffix_of","is_write_vectored","leak","leak","len","len","merge","ne","ne","ne","ne","ne","ne","ne","ne","ne","new","new","new_in","partial_cmp","partial_cmp","pop","pop","pop_if","push","push","push_str","push_within_capacity","remove","remove","remove_matches","replace_range","reserve","reserve","reserve_exact","reserve_exact","resize","resize_with","retain","retain","retain_mut","serialize","serialize","set_len","shrink_to","shrink_to","shrink_to_fit","shrink_to_fit","source","spare_capacity_mut","splice","split_at_spare_mut","split_off","split_off","strip_prefix_of","strip_suffix_of","swap_remove","to_owned","to_owned","to_owned","to_owned","to_socket_addrs","to_sql","to_sql","to_string","to_string","to_string","truncate","truncate","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_reserve","try_reserve","try_reserve_exact","try_reserve_exact","try_with_capacity","try_with_capacity","try_with_capacity_in","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","with_capacity","with_capacity","with_capacity_in","write","write","write_all","write_char","write_str","write_vectored","Decode","Error","IncorrectChecksum","IncorrectChecksumError","InvalidCharacterError","TooShort","TooShortError","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","incorrect_checksum","into","into","invalid_base58_length","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Config","DecodeError","DecodeError","DecodeEstimate","DecodeSliceError","EncodeSliceError","Engine","InvalidByte","InvalidLastSymbol","InvalidLength","InvalidPadding","OutputSliceTooSmall","OutputSliceTooSmall","alphabet","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","config","decode","decode","decode_engine","decode_engine_slice","decode_engine_vec","decode_slice","decode_slice_unchecked","decode_vec","decoded_len_estimate","display","encode","encode","encode_engine","encode_engine_slice","encode_engine_string","encode_slice","encode_string","encoded_len","engine","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","into","into","into","prelude","read","source","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write","Alphabet","BCRYPT","BIN_HEX","CRYPT","DuplicatedByte","IMAP_MUTF7","InvalidLength","ParseAlphabetError","ReservedByte","STANDARD","URL_SAFE","UnprintableByte","as_str","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","into","into","new","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Base64Display","borrow","borrow_mut","fmt","from","into","new","to_string","try_from","try_into","type_id","vzip","Config","Config","DecodeEstimate","DecodeEstimate","DecodeMetadata","DecodePaddingMode","Engine","GeneralPurpose","GeneralPurposeConfig","Indifferent","RequireCanonical","RequireNone","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","config","config","decode","decode_slice","decode_slice_unchecked","decode_vec","decoded_len_estimate","default","encode","encode_padding","encode_padding","encode_slice","encode_string","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","general_purpose","into","into","into","into","new","new","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","with_decode_allow_trailing_bits","with_decode_padding_mode","with_encode_padding","GeneralPurpose","GeneralPurposeConfig","NO_PAD","PAD","STANDARD","STANDARD_NO_PAD","URL_SAFE","URL_SAFE_NO_PAD","BASE64_STANDARD","BASE64_STANDARD_NO_PAD","BASE64_URL_SAFE","BASE64_URL_SAFE_NO_PAD","Config","DecodeEstimate","Engine","config","decode","decode_slice","decode_slice_unchecked","decode_vec","encode","encode_slice","encode_string","DecoderReader","borrow","borrow_mut","fmt","from","into","into_inner","new","read","try_from","try_into","type_id","vzip","EncoderStringWriter","EncoderWriter","StrConsumer","borrow","borrow","borrow_mut","borrow_mut","consume","drop","finish","flush","flush","fmt","from","from","from_consumer","into","into","into_inner","into_inner","new","new","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","A","Bech32","Bech32m","ByteIterExt","C","CHECKSUM_LENGTH","CODE_LENGTH","Checksum","Checksum","D","DecodeError","E","EncodeError","EncodeIoError","F","Fe32","Fe32IterExt","Fmt","G","GENERATOR_SH","H","Hrp","J","K","L","M","MidstateRepr","N","NoChecksum","P","Parse","Q","R","S","T","TARGET_RESIDUE","TooLong","TooLong","U","V","W","Write","X","Y","Z","_0","_2","_3","_4","_5","_6","_7","_8","_9","add","add","add","add","add_assign","as_bytes","as_ref","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte_iter","bytes_to_fes","char_iter","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","decode","div","div","div","div","div_assign","encode","encode_lower","encode_lower_to_fmt","encode_lower_to_writer","encode_to_fmt","encode_to_writer","encode_upper","encode_upper_to_fmt","encode_upper_to_writer","encoded_length","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fes_to_bytes","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_char","from_char_unchecked","hash","hash","hash","hash","hash","hrp","into","into","into","into","into","into","into","into","is_valid_on_mainnet","is_valid_on_regtest","is_valid_on_signet","is_valid_on_testnet","is_valid_segwit","iter_alpha","len","lowercase_byte_iter","lowercase_char_iter","mul","mul","mul","mul","mul_assign","parse","parse_unchecked","partial_cmp","partial_cmp","partial_cmp","partial_cmp","primitives","sanity_check","segwit","source","source","source","sub","sub","sub","sub","sub_assign","to_char","to_lowercase","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_u8","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_checksum","BC","BCRT","Hrp","TB","Bech32","Bech32m","NoChecksum","checksum","decode","encode","gf32","hrp","iter","segwit","CHECKSUM_LENGTH","CODE_LENGTH","Checksum","Engine","GENERATOR_SH","HrpFe32Iter","MidstateRepr","ONE","PackedFe32","PackedNull","TARGET_RESIDUE","WIDTH","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","input_fe","input_hrp","input_target_residue","into","into","into","into_fallible","into_iter","mul_by_x_then_add","mul_by_x_then_add","new","new","next","residue","sanity_check","size_hint","to_owned","to_owned","transpose_into_fallible","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","unpack","unpack","vzip","vzip","vzip","AsciiToFe32Iter","ByteIter","Char","CharError","CheckedHrpstring","CheckedHrpstringError","Checksum","Checksum","ChecksumError","CodeLength","CodeLengthError","Fe32Iter","Hrp","InvalidChar","InvalidLength","InvalidResidue","InvalidWitnessVersion","MissingSeparator","MixedCase","NoData","NonZero","NothingAfterSeparator","Padding","PaddingError","Parse","SegwitCodeLengthError","SegwitHrpstring","SegwitHrpstringError","TooLong","TooMuch","Unchecked","UncheckedHrpstring","UncheckedHrpstringError","WitnessLength","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte_iter","byte_iter","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","code_length","data_part_ascii","data_part_ascii_no_checksum","data_part_ascii_no_witver_no_checksum","encoded_length","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fe32_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","has_valid_checksum","has_valid_hrp","hrp","hrp","hrp","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","len","len","new","new","new","new_bech32","next","next","next","remove_checksum","remove_witness_version","remove_witness_version","size_hint","size_hint","size_hint","source","source","source","source","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","validate_and_remove_checksum","validate_checksum","validate_segwit","validate_segwit_padding","validate_witness_program_length","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","witness_version","witness_version","witness_version","ByteIter","CharIter","Encoder","Fe32Iter","WitnessVersionIter","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","chars","clone","clone_into","eq","equivalent","equivalent","fes","from","from","from","from","from","into","into","into","into","into","into_fallible","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_iter","new","new","new","new","new","next","next","next","next","size_hint","size_hint","size_hint","size_hint","to_owned","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_witness_version","Fe32","FromCharError","Invalid","InvalidByte","NotAByte","NotAscii","TryFromError","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","into","into","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BC","BCRT","ByteIter","CharIter","Empty","Error","Hrp","InvalidAsciiByte","LowercaseByteIter","LowercaseCharIter","MixedCase","NonAsciiChar","TB","TooLong","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","from","from","from","from","into","into","into","into","into","into_fallible","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_iter","len","len","len","len","next","next","next","next","next_back","next_back","next_back","next_back","size_hint","size_hint","size_hint","size_hint","source","to_owned","to_string","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","ByteIterExt","BytesToFes","Checksummed","Fe32IterExt","FesToBytes","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bytes_to_fes","clone","clone","clone","clone_into","clone_into","clone_into","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fes_to_bytes","from","from","from","into","into","into","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","len","len","new","new_hrp","next","next","next","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_checksum","InvalidSegwitV0","InvalidWitnessVersionError","MAX_STRING_LENGTH","TooLong","TooShort","VERSION_0","VERSION_1","WitnessLengthError","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","into","into","is_valid_witness_program_length","is_valid_witness_version","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","validate_witness_program_length","validate_witness_version","vzip","vzip","DecodeError","EncodeError","Fmt","TooLong","VERSION_0","VERSION_1","WitnessLength","WitnessVersion","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","decode","encode","encode_lower_to_fmt_unchecked","encode_lower_to_writer_unchecked","encode_to_fmt_unchecked","encode_to_writer_unchecked","encode_upper_to_fmt_unchecked","encode_upper_to_writer_unchecked","encode_v0","encode_v1","encoded_length","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BlockTransactions","BlockTransactionsRequest","Error","HeaderAndShortIds","InvalidPrefill","PrefilledTransaction","ShortId","TxIndexOutOfRangeError","UnknownVersion","as_bytes","as_mut","as_mut","as_mut_ptr","as_ptr","as_ref","as_ref","as_ref","block_hash","block_hash","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","calculate_siphash_keys","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","default","deserialize","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_block","from_hex","from_request","from_str","hash","hash","hash","hash","hash","header","idx","index","indexes","into","into","into","into","into","into","into","is_empty","len","nonce","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","prefilled_txs","serialize","short_ids","source","source","to_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","transactions","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_siphash_keys","BitStreamReader","BitStreamWriter","BlockFilter","BlockFilterReader","BlockFilterWriter","Error","FilterHash","FilterHeader","GcsFilterReader","GcsFilterWriter","Io","UtxoMissing","add_element","add_element","add_input_scripts","add_output_scripts","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","content","eq","equivalent","equivalent","filter_header","finish","finish","flush","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","match_all","match_all","match_all","match_any","match_any","match_any","new","new","new","new","new","new","new","new_script_filter","read","source","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","Base58","CannotDeriveFromHardenedKey","ChainCode","ChildNumber","DerivationPath","DerivationPathIterator","Error","ExtendedPrivKey","ExtendedPubKey","ExtendendPrivKey","ExtendendPubKey","Fingerprint","Hardened","Hex","IntoDerivationPath","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidChildNumber","InvalidChildNumberFormat","InvalidDerivationPathFormat","InvalidPublicKeyHexLength","KeySource","Normal","Secp256k1","UnknownVersion","WrongExtendedKeyLength","XKeyIdentifier","Xpriv","Xpub","as_bytes","as_bytes","as_mut","as_mut","as_mut","as_mut","as_mut_ptr","as_mut_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_derive_hardened","can_derive_hardened","chain_code","chain_code","chain_code","chain_code","chain_code","chain_code","child","child_number","child_number","child_number","child_number","child_number","child_number","children_from","ckd_pub","ckd_pub_tweak","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","decode","decode","default","default","depth","depth","depth","depth","depth","depth","derive_priv","derive_pub","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","fingerprint","fingerprint","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hardened_idx","from_hex","from_hex","from_iter","from_normal_idx","from_priv","from_str","from_str","from_str","from_str","from_str","from_str","get_key","hardened_children","hash","hash","hash","hash","hash","identifier","identifier","increment","index","index","index","into","into","into","into","into","into","into","into","into","into_child","into_derivation_path","into_derivation_path","into_fallible","into_iter","into_iter","invalid_base58_payload_length","is_empty","is_empty","is_empty","is_hardened","is_master","is_normal","len","len","len","master","network","network","network","network","network","network","new_master","next","normal_children","parent_fingerprint","parent_fingerprint","parent_fingerprint","parent_fingerprint","parent_fingerprint","parent_fingerprint","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","private_key","private_key","private_key","public_key","public_key","public_key","serialize","serialize","serialize","serialize","serialize","serialize","source","start_from","to_bytes","to_bytes","to_keypair","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_priv","to_pub","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_u32_vec","to_x_only_pub","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","xkey_fingerprint","xkey_fingerprint","index","index","FeeRate","Weight","block","constants","fee_rate","locktime","opcodes","script","transaction","weight","witness","BadProofOfWork","BadTarget","Bip34Error","Block","BlockHash","Header","NO_SOFT_FORK_SIGNALLING","NegativeHeight","NotPresent","ONE","SIZE","TWO","TxMerkleNode","UnexpectedPush","Unsupported","ValidationError","Version","WitnessCommitment","WitnessMerkleNode","bits","block_hash","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","default","deserialize","deserialize","difficulty","difficulty_float","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_consensus","hash","hash","header","into","into","into","into","is_signalling_soft_fork","merkle_root","nonce","partial_cmp","partial_cmp","prev_blockhash","serialize","serialize","source","source","target","time","to_consensus","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","txdata","type_id","type_id","type_id","type_id","validate_pow","version","vzip","vzip","vzip","vzip","work","BITCOIN","COINBASE_MATURITY","ChainHash","DIFFCHANGE_INTERVAL","DIFFCHANGE_TIMESPAN","MAX_BLOCK_SIGOPS_COST","MAX_SCRIPTNUM_VALUE","MAX_SCRIPT_ELEMENT_SIZE","PUBKEY_ADDRESS_PREFIX_MAIN","PUBKEY_ADDRESS_PREFIX_TEST","REGTEST","SCRIPT_ADDRESS_PREFIX_MAIN","SCRIPT_ADDRESS_PREFIX_TEST","SIGNET","SUBSIDY_HALVING_INTERVAL","TARGET_BLOCK_SPACING","TESTNET","TESTNET3","TESTNET4","WITNESS_SCALE_FACTOR","as_bytes","as_mut","as_mut","as_mut_ptr","as_ptr","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","cmp","deserialize","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from_genesis_block_hash","from_hex","from_str","genesis_block","hash","index","into","is_empty","len","partial_cmp","serialize","to_bytes","to_owned","to_string","try_from","try_from","try_into","type_id","using_genesis_block","using_genesis_block_const","vzip","FeeRate","absolute","relative","Blocks","ConversionError","Height","LOCK_TIME_THRESHOLD","LockTime","MAX","MAX","MIN","MIN","ParseHeightError","ParseTimeError","SIZE","Seconds","Time","ZERO","ZERO","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_after","check_after","check_older","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_encode","deserialize","deserialize","deserialize","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_consensus","from_consensus","from_consensus","from_height","from_hex","from_hex","from_hex","from_str","from_str","from_str","from_time","from_unprefixed_hex","hash","hash","hash","into","into","into","into","into","into","is_block_height","is_block_time","is_implied_by","is_same_unit","is_satisfied_by","partial_cmp","partial_cmp","partial_cmp","provider_lookup_ecdsa_sig","provider_lookup_hash160","provider_lookup_hash256","provider_lookup_raw_pkh_ecdsa_sig","provider_lookup_raw_pkh_pk","provider_lookup_raw_pkh_tap_leaf_script_sig","provider_lookup_raw_pkh_x_only_pk","provider_lookup_ripemd160","provider_lookup_sha256","provider_lookup_tap_control_block_map","provider_lookup_tap_key_spend_sig","provider_lookup_tap_leaf_script_sig","serialize","serialize","serialize","source","source","source","to_consensus_u32","to_consensus_u32","to_consensus_u32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","Blocks","DisabledLockTimeError","Height","IncompatibleHeightError","IncompatibleTimeError","LockTime","MAX","MAX","MIN","MIN","SIZE","Time","Time","TimeOverflowError","ZERO","ZERO","ZERO","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_after","check_older","check_older","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","deserialize","deserialize","deserialize","disabled_locktime_value","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_512_second_intervals","from_512_second_intervals","from_consensus","from_height","from_height","from_seconds_ceil","from_seconds_ceil","from_seconds_floor","from_seconds_floor","from_sequence","from_str","from_str","hash","hash","hash","height","height","into","into","into","into","into","into","into","is_block_height","is_block_time","is_implied_by","is_implied_by_sequence","is_same_unit","is_satisfied_by","is_satisfied_by_height","is_satisfied_by_time","new","partial_cmp","partial_cmp","partial_cmp","provider_lookup_ecdsa_sig","provider_lookup_hash160","provider_lookup_hash256","provider_lookup_raw_pkh_ecdsa_sig","provider_lookup_raw_pkh_pk","provider_lookup_raw_pkh_tap_leaf_script_sig","provider_lookup_raw_pkh_x_only_pk","provider_lookup_ripemd160","provider_lookup_sha256","provider_lookup_tap_control_block_map","provider_lookup_tap_key_spend_sig","provider_lookup_tap_leaf_script_sig","serialize","serialize","serialize","time","time","to_consensus_u32","to_consensus_u32","to_consensus_u32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_sequence","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","value","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Class","ClassifyContext","IllegalOp","Legacy","NoOp","OP_0","OP_FALSE","OP_NOP2","OP_NOP3","OP_TRUE","Opcode","Ordinary","PushBytes","PushNum","ReturnOp","SuccessOp","TapScript","all","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","hash","into","into","partial_cmp","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","OP_0NOTEQUAL","OP_1ADD","OP_1SUB","OP_2DIV","OP_2DROP","OP_2DUP","OP_2MUL","OP_2OVER","OP_2ROT","OP_2SWAP","OP_3DUP","OP_ABS","OP_ADD","OP_AND","OP_BOOLAND","OP_BOOLOR","OP_CAT","OP_CHECKMULTISIG","OP_CHECKMULTISIGVERIFY","OP_CHECKSIG","OP_CHECKSIGADD","OP_CHECKSIGVERIFY","OP_CLTV","OP_CODESEPARATOR","OP_CSV","OP_DEPTH","OP_DIV","OP_DROP","OP_DUP","OP_ELSE","OP_ENDIF","OP_EQUAL","OP_EQUALVERIFY","OP_FROMALTSTACK","OP_GREATERTHAN","OP_GREATERTHANOREQUAL","OP_HASH160","OP_HASH256","OP_IF","OP_IFDUP","OP_INVALIDOPCODE","OP_INVERT","OP_LEFT","OP_LESSTHAN","OP_LESSTHANOREQUAL","OP_LSHIFT","OP_MAX","OP_MIN","OP_MOD","OP_MUL","OP_NEGATE","OP_NIP","OP_NOP","OP_NOP1","OP_NOP10","OP_NOP4","OP_NOP5","OP_NOP6","OP_NOP7","OP_NOP8","OP_NOP9","OP_NOT","OP_NOTIF","OP_NUMEQUAL","OP_NUMEQUALVERIFY","OP_NUMNOTEQUAL","OP_OR","OP_OVER","OP_PICK","OP_PUSHBYTES_0","OP_PUSHBYTES_1","OP_PUSHBYTES_10","OP_PUSHBYTES_11","OP_PUSHBYTES_12","OP_PUSHBYTES_13","OP_PUSHBYTES_14","OP_PUSHBYTES_15","OP_PUSHBYTES_16","OP_PUSHBYTES_17","OP_PUSHBYTES_18","OP_PUSHBYTES_19","OP_PUSHBYTES_2","OP_PUSHBYTES_20","OP_PUSHBYTES_21","OP_PUSHBYTES_22","OP_PUSHBYTES_23","OP_PUSHBYTES_24","OP_PUSHBYTES_25","OP_PUSHBYTES_26","OP_PUSHBYTES_27","OP_PUSHBYTES_28","OP_PUSHBYTES_29","OP_PUSHBYTES_3","OP_PUSHBYTES_30","OP_PUSHBYTES_31","OP_PUSHBYTES_32","OP_PUSHBYTES_33","OP_PUSHBYTES_34","OP_PUSHBYTES_35","OP_PUSHBYTES_36","OP_PUSHBYTES_37","OP_PUSHBYTES_38","OP_PUSHBYTES_39","OP_PUSHBYTES_4","OP_PUSHBYTES_40","OP_PUSHBYTES_41","OP_PUSHBYTES_42","OP_PUSHBYTES_43","OP_PUSHBYTES_44","OP_PUSHBYTES_45","OP_PUSHBYTES_46","OP_PUSHBYTES_47","OP_PUSHBYTES_48","OP_PUSHBYTES_49","OP_PUSHBYTES_5","OP_PUSHBYTES_50","OP_PUSHBYTES_51","OP_PUSHBYTES_52","OP_PUSHBYTES_53","OP_PUSHBYTES_54","OP_PUSHBYTES_55","OP_PUSHBYTES_56","OP_PUSHBYTES_57","OP_PUSHBYTES_58","OP_PUSHBYTES_59","OP_PUSHBYTES_6","OP_PUSHBYTES_60","OP_PUSHBYTES_61","OP_PUSHBYTES_62","OP_PUSHBYTES_63","OP_PUSHBYTES_64","OP_PUSHBYTES_65","OP_PUSHBYTES_66","OP_PUSHBYTES_67","OP_PUSHBYTES_68","OP_PUSHBYTES_69","OP_PUSHBYTES_7","OP_PUSHBYTES_70","OP_PUSHBYTES_71","OP_PUSHBYTES_72","OP_PUSHBYTES_73","OP_PUSHBYTES_74","OP_PUSHBYTES_75","OP_PUSHBYTES_8","OP_PUSHBYTES_9","OP_PUSHDATA1","OP_PUSHDATA2","OP_PUSHDATA4","OP_PUSHNUM_1","OP_PUSHNUM_10","OP_PUSHNUM_11","OP_PUSHNUM_12","OP_PUSHNUM_13","OP_PUSHNUM_14","OP_PUSHNUM_15","OP_PUSHNUM_16","OP_PUSHNUM_2","OP_PUSHNUM_3","OP_PUSHNUM_4","OP_PUSHNUM_5","OP_PUSHNUM_6","OP_PUSHNUM_7","OP_PUSHNUM_8","OP_PUSHNUM_9","OP_PUSHNUM_NEG1","OP_RESERVED","OP_RESERVED1","OP_RESERVED2","OP_RETURN","OP_RETURN_187","OP_RETURN_188","OP_RETURN_189","OP_RETURN_190","OP_RETURN_191","OP_RETURN_192","OP_RETURN_193","OP_RETURN_194","OP_RETURN_195","OP_RETURN_196","OP_RETURN_197","OP_RETURN_198","OP_RETURN_199","OP_RETURN_200","OP_RETURN_201","OP_RETURN_202","OP_RETURN_203","OP_RETURN_204","OP_RETURN_205","OP_RETURN_206","OP_RETURN_207","OP_RETURN_208","OP_RETURN_209","OP_RETURN_210","OP_RETURN_211","OP_RETURN_212","OP_RETURN_213","OP_RETURN_214","OP_RETURN_215","OP_RETURN_216","OP_RETURN_217","OP_RETURN_218","OP_RETURN_219","OP_RETURN_220","OP_RETURN_221","OP_RETURN_222","OP_RETURN_223","OP_RETURN_224","OP_RETURN_225","OP_RETURN_226","OP_RETURN_227","OP_RETURN_228","OP_RETURN_229","OP_RETURN_230","OP_RETURN_231","OP_RETURN_232","OP_RETURN_233","OP_RETURN_234","OP_RETURN_235","OP_RETURN_236","OP_RETURN_237","OP_RETURN_238","OP_RETURN_239","OP_RETURN_240","OP_RETURN_241","OP_RETURN_242","OP_RETURN_243","OP_RETURN_244","OP_RETURN_245","OP_RETURN_246","OP_RETURN_247","OP_RETURN_248","OP_RETURN_249","OP_RETURN_250","OP_RETURN_251","OP_RETURN_252","OP_RETURN_253","OP_RETURN_254","OP_RIGHT","OP_RIPEMD160","OP_ROLL","OP_ROT","OP_RSHIFT","OP_SHA1","OP_SHA256","OP_SIZE","OP_SUB","OP_SUBSTR","OP_SWAP","OP_TOALTSTACK","OP_TUCK","OP_VER","OP_VERIF","OP_VERIFY","OP_VERNOTIF","OP_WITHIN","OP_XOR","Builder","Bytes","EarlyEndOfScript","Error","Instruction","InstructionIndices","Instructions","NonMinimalPush","NumericOverflow","Op","PushBytes","PushBytes","PushBytesBuf","PushBytesError","PushBytesErrorReport","Script","ScriptBuf","ScriptHash","Serialization","UnknownSpentOutput","WScriptHash","as_bytes","as_bytes","as_mut","as_mut","as_mut","as_mut_bytes","as_mut_push_bytes","as_push_bytes","as_ref","as_ref","as_ref","as_script","as_script","as_script","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","deref","deref_mut","empty","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend_from_slice","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","index","index","index","index","index","index","index","index","input_len","input_len","into","into","into","into","into","into","into","into","into_bytes","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_script","is_empty","is_empty","is_empty","len","len","len","new","new","next","next","next","next_back","nth","nth","nth_back","opcode","partial_cmp","partial_cmp","pop","push","push_bytes","push_int","push_key","push_lock_time","push_opcode","push_sequence","push_slice","push_verify","push_x_only_key","read_scriptbool","read_scriptint","read_scriptint_non_minimal","remove","reserve","script_num","size_hint","size_hint","size_hint","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","witness_program","witness_version","write_scriptint","Error","InvalidLength","InvalidSegwitV0Length","MAX_SIZE","MIN_SIZE","WitnessProgram","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","from","into","source","to_owned","to_string","try_from","try_into","type_id","vzip","DataPush","FromStrError","Invalid","TryFrom","TryFromError","TryFromInstructionError","Unparsable","V0","V1","V10","V11","V12","V13","V14","V15","V16","V2","V3","V4","V5","V6","V7","V8","V9","WitnessVersion","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","invalid_version","source","source","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","Format","IndexOutOfBoundsError","InputWeightPrediction","InputsIndexError","ONE","OutPoint","OutputsIndexError","P2PKH_COMPRESSED_MAX","P2PKH_UNCOMPRESSED_MAX","P2TR_KEY_DEFAULT_SIGHASH","P2TR_KEY_NON_DEFAULT_SIGHASH","P2WPKH_MAX","ParseOutPointError","Sequence","TWO","TooLong","Transaction","TxIn","TxOut","Txid","Txid","Version","Vout","VoutNotCanonical","Wtxid","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","consensus_decode","consensus_encode","deserialize","effective_value","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_slice","ground_p2pkh_compressed","ground_p2wpkh","hash","index","input","into","into","into","into","into","into","is_standard","length","lock_time","new","non_standard","output","partial_cmp","predict_weight","predict_weight_from_slices","previous_output","script_pubkey","script_sig","sequence","serialize","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","txid","type_id","type_id","type_id","type_id","type_id","type_id","value","version","vout","vzip","vzip","vzip","vzip","vzip","vzip","weight","witness","WITNESS_SCALE_FACTOR","Weight","Iter","Witness","borrow","borrow_mut","from","into","into_fallible","into_iter","next","size_hint","transpose_into_fallible","try_from","try_into","type_id","vzip","BITCOIN","Consensus","Decodable","DecodeError","Encodable","MAINNET","Other","Params","REGTEST","ReadExt","SIGNET","TESTNET","TESTNET3","TESTNET4","TooManyBytes","WriteExt","allow_min_difficulty_blocks","as_ref","bip16_time","bip34_height","bip65_height","bip66_height","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","consensus_decode","consensus_decode_from_finite_reader","consensus_encode","deserialize","deserialize_partial","difficulty_adjustment_interval","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","encode","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","into_de_error","max_attainable_target","miner_confirmation_window","network","new","no_pow_retargeting","params","pow_limit","pow_target_spacing","pow_target_timespan","read_bool","read_i16","read_i32","read_i64","read_i8","read_slice","read_u16","read_u32","read_u64","read_u8","rule_change_activation_threshold","serde","serialize","source","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","CheckedData","Decodable","Decode","Encodable","Error","FromHexError","InvalidChecksum","Io","MAX_VEC_SIZE","NonMinimalVarInt","OddLengthString","OversizedVectorAllocation","ParseFailed","ReadExt","UnsupportedSegwitFlag","VarInt","WriteExt","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","checksum","clone","clone_into","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","data","deserialize","deserialize_hex","deserialize_partial","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","into","into","into","into_data","new","read_bool","read_i16","read_i32","read_i64","read_i8","read_slice","read_u16","read_u32","read_u64","read_u8","serialize","serialize_hex","source","source","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","actual","expected","max","requested","MAINNET","Params","REGTEST","SIGNET","TESTNET","TESTNET3","TESTNET4","allow_min_difficulty_blocks","bip16_time","bip34_height","bip65_height","bip66_height","max_attainable_target","miner_confirmation_window","network","no_pow_retargeting","pow_limit","pow_target_spacing","pow_target_timespan","rule_change_activation_threshold","ByteDecoder","ByteEncoder","DecodeError","Decoder","EncodeBytes","Encoder","Hex","InitError","IntoDeError","With","borrow","borrow","borrow_mut","borrow_mut","default","deserialize","encode_chunk","flush","from","from","from_str","from_str","hex","into","into","into_de_error","serialize","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Case","DecodeError","DecodeInitError","Decoder","Encoder","Lower","Upper","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","encode_chunk","eq","eq","equivalent","equivalent","equivalent","equivalent","flush","fmt","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into","into_de_error","into_de_error","into_fallible","into_iter","next","to_owned","to_owned","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","EmptySignature","Error","Hex","Secp256k1","SerializedSignature","SighashType","Signature","as_mut","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","deref","deref_mut","deserialize","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_slice","from_str","hash","hash","into","into","into","into_iter","iter","serialize","serialize","serialize_to_writer","sighash_all","sighash_type","signature","source","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_vec","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write_to","ContainsPrefix","ContainsPrefixError","MissingPrefix","MissingPrefixError","ParseInt","ParseInt","ParseIntError","PrefixedHexError","UnprefixedHexError","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","into","source","source","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","BlockHash","FilterHash","FilterHeader","TxMerkleNode","Txid","WitnessCommitment","WitnessMerkleNode","Wtxid","BLOCK_SIZE","Bytes","DISPLAY_BACKWARD","Engine","FromSliceError","Hash","HashEngine","Hmac","HmacEngine","LEN","MidState","all_zeros","as_byte_array","borrow_slice_impl","cmp","engine","from_byte_array","from_engine","from_slice","hash","hash160","hash_byte_chunks","hash_newtype","hex_fmt_impl","hmac","input","midstate","n_bytes_hashed","ripemd160","serde_impl","serde_macros","sha1","sha256","sha256d","sha256t","sha256t_hash_newtype","sha384","sha512","sha512_256","siphash24","to_byte_array","fixed_time_eq","Hash","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","into","into_assets","partial_cmp","serialize","to_byte_array","to_owned","to_string","try_from","try_into","type_id","vzip","BytesToHexIter","Case","Display","DisplayHex","Error","FromHex","HexSliceToBytesIter","HexToArrayError","HexToBytesError","HexToBytesIter","InvalidChar","InvalidChar","InvalidCharError","InvalidLength","Lower","OddLengthString","OddLengthStringError","Upper","append_hex_to_string","as_hex","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buf_encoder","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","default","display","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_hex_exact","from","from","from","from","from","from","from","from","from","from","from","from_hex","from_pairs","hash","hex_reserve_suggestion","impl_fmt_traits","into","into","into","into","into","into","into","into_fallible","into_fallible","into_iter","into_iter","invalid_char","len","length","new","new","next","next","next_back","next_back","nth","nth_back","parse","prelude","read","size_hint","size_hint","source","source","source","source","test_hex_unwrap","to_hex_string","to_lower_hex_string","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_upper_hex_string","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write_err","BufEncoder","as_str","borrow","borrow_mut","clear","default","from","into","is_full","new","put_byte","put_bytes","put_bytes_min","space_remaining","try_from","try_into","type_id","vzip","Display","DisplayArray","DisplayByteSlice","DisplayHex","append_hex_to_string","as_hex","borrow","borrow","borrow_mut","borrow_mut","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_hex_exact","from","from","hex_reserve_suggestion","impl_fmt_traits","into","into","to_hex_string","to_lower_hex_string","to_string","to_string","to_upper_hex_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","HexToArrayError","HexToBytesError","InvalidChar","InvalidChar","InvalidCharError","InvalidLength","InvalidLengthError","OddLengthString","OddLengthStringError","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","expected","fmt","fmt","from","into","invalid","source","to_owned","to_string","try_from","try_into","type_id","vzip","Error","FromHex","HexToArrayError","HexToBytesError","InvalidChar","InvalidChar","InvalidLength","OddLengthString","from_hex","Display","DisplayHex","Error","FromHex","append_hex_to_string","as_hex","from_hex","hex_reserve_suggestion","to_hex_string","to_lower_hex_string","to_upper_hex_string","Hmac","HmacEngine","HmacMidState","borrow","borrow_mut","from","inner","into","outer","try_from","try_into","type_id","vzip","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","into_assets","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","Deserialize","Deserialize","Deserializer","Error","Error","Ok","Serialize","Serialize","SerializeMap","SerializeSeq","SerializeStruct","SerializeStructVariant","SerializeTuple","SerializeTupleStruct","SerializeTupleVariant","Serializer","collect_map","collect_seq","collect_str","de","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","forward_to_deserialize_any","is_human_readable","is_human_readable","ser","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","Bool","Bytes","Char","Deserialize","DeserializeOwned","DeserializeSeed","Deserializer","Deserializer","Enum","EnumAccess","Error","Error","Error","Error","Error","Error","Expected","Float","IgnoredAny","IntoDeserializer","Map","MapAccess","NewtypeStruct","NewtypeVariant","Option","Other","Seq","SeqAccess","Signed","StdError","Str","StructVariant","TupleVariant","Unexpected","Unit","UnitVariant","Unsigned","Value","Value","Variant","VariantAccess","Visitor","borrow","borrow","borrow_mut","borrow_mut","cause","clone","clone","clone_into","clone_into","custom","default","description","deserialize","deserialize","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","duplicate_field","eq","eq","expecting","expecting","fmt","fmt","fmt","fmt","fmt","fmt","from","from","into","into","into_deserializer","invalid_length","invalid_type","invalid_value","is_human_readable","missing_field","newtype_variant","newtype_variant_seed","next_element","next_element_seed","next_entry","next_entry_seed","next_key","next_key_seed","next_value","next_value_seed","provide","size_hint","size_hint","source","struct_variant","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","tuple_variant","type_id","type_id","unit_variant","unknown_field","unknown_variant","value","variant","variant_seed","visit_bool","visit_bool","visit_borrowed_bytes","visit_borrowed_str","visit_byte_buf","visit_bytes","visit_bytes","visit_char","visit_enum","visit_enum","visit_f32","visit_f64","visit_f64","visit_i128","visit_i128","visit_i16","visit_i32","visit_i64","visit_i64","visit_i8","visit_map","visit_map","visit_newtype_struct","visit_newtype_struct","visit_none","visit_none","visit_seq","visit_seq","visit_some","visit_some","visit_str","visit_str","visit_string","visit_u128","visit_u128","visit_u16","visit_u32","visit_u64","visit_u64","visit_u8","visit_unit","visit_unit","vzip","vzip","BoolDeserializer","BorrowedBytesDeserializer","BorrowedStrDeserializer","BytesDeserializer","CharDeserializer","CowStrDeserializer","EnumAccessDeserializer","Error","F32Deserializer","F64Deserializer","I128Deserializer","I16Deserializer","I32Deserializer","I64Deserializer","I8Deserializer","IsizeDeserializer","MapAccessDeserializer","MapDeserializer","SeqAccessDeserializer","SeqDeserializer","StrDeserializer","StringDeserializer","U128Deserializer","U16Deserializer","U32Deserializer","U64Deserializer","U8Deserializer","UnitDeserializer","UsizeDeserializer","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","custom","custom","description","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","end","end","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","next_element_seed","next_element_seed","next_entry_seed","next_key_seed","next_value_seed","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Error","Error","Error","Error","Error","Error","Error","Error","Error","Impossible","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Serialize","SerializeMap","SerializeMap","SerializeSeq","SerializeSeq","SerializeStruct","SerializeStruct","SerializeStructVariant","SerializeStructVariant","SerializeTuple","SerializeTuple","SerializeTupleStruct","SerializeTupleStruct","SerializeTupleVariant","SerializeTupleVariant","Serializer","StdError","borrow","borrow_mut","cause","collect_map","collect_seq","collect_str","custom","description","downcast","downcast","downcast","downcast_mut","downcast_mut","downcast_mut","downcast_ref","downcast_ref","downcast_ref","end","end","end","end","end","end","end","end","end","end","end","end","end","end","from","into","is","is","is","is_human_readable","provide","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_element","serialize_element","serialize_element","serialize_element","serialize_entry","serialize_f32","serialize_f64","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_key","serialize_key","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","serialize_value","serialize_value","skip_field","skip_field","source","sources","try_from","try_into","type_id","vzip","serde_details","N","SerdeHash","deserialize","from_slice_delegated","serialize","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","Hash","HashEngine","Midstate","all_zeros","as_byte_array","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_encode","const_hash","default","default","deserialize","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","eq","equivalent","equivalent","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_byte_array","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_hex","from_midstate","from_slice","from_slice","from_slice_delegated","from_slice_delegated","from_str","from_str","hash","hash","hash_again","hash_tag","index","index","input","into","into","into","into_assets","midstate","n_bytes_hashed","partial_cmp","partial_cmp","serialize","serialize","to_byte_array","to_byte_array","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write","write","Hash","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","consensus_decode","consensus_encode","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","into","partial_cmp","serialize","to_byte_array","to_owned","to_string","try_from","try_into","type_id","vzip","Hash","Tag","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","default","deserialize","engine","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","into","partial_cmp","serialize","to_byte_array","to_owned","to_string","try_from","try_into","type_id","vzip","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Hash","HashEngine","State","all_zeros","as_byte_array","as_ref","as_ref","as_u64","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_engine_to_u64","from_slice","from_slice_delegated","from_str","from_u64","hash","hash_to_u64_with_keys","hash_with_keys","index","input","into","into","into","keys","midstate","n_bytes_hashed","new","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_keys","write","write","AddrInUse","AddrNotAvailable","AlreadyExists","BrokenPipe","BufRead","ConnectionAborted","ConnectionRefused","ConnectionReset","Cursor","Err","Error","ErrorKind","FromStd","Interrupted","InvalidData","InvalidInput","NotConnected","NotFound","Ok","Other","PermissionDenied","Read","Result","Sink","Take","TimedOut","ToStd","UnexpectedEof","WouldBlock","Write","WriteZero","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","clone","clone_into","consume","consume","consume","consume","consume","consume","consume","description","emit_bool","emit_bool","emit_bool","emit_i16","emit_i16","emit_i16","emit_i32","emit_i32","emit_i32","emit_i64","emit_i64","emit_i64","emit_i8","emit_i8","emit_i8","emit_slice","emit_slice","emit_slice","emit_u16","emit_u16","emit_u16","emit_u32","emit_u32","emit_u32","emit_u64","emit_u64","emit_u64","emit_u8","emit_u8","emit_u8","eq","equivalent","equivalent","fill_buf","fill_buf","fill_buf","fill_buf","fill_buf","fill_buf","fill_buf","flush","flush","flush","flush","flush","flush","flush","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_std","from_std_mut","get_ref","hash","impl_write","inner","inner","inner","inner_mut","inner_mut","into","into","into","into","into","into","into","into_inner","into_inner","into_inner","kind","new","new","new","new","new_boxed","new_boxed","new_mut","new_mut","position","read","read","read","read","read","read","read","read_bool","read_bool","read_bool","read_bool","read_exact","read_exact","read_exact","read_exact","read_exact","read_i16","read_i16","read_i16","read_i16","read_i32","read_i32","read_i32","read_i32","read_i64","read_i64","read_i64","read_i64","read_i8","read_i8","read_i8","read_i8","read_slice","read_slice","read_slice","read_slice","read_to_end","read_to_limit","read_u16","read_u16","read_u16","read_u16","read_u32","read_u32","read_u32","read_u32","read_u64","read_u64","read_u64","read_u64","read_u8","read_u8","read_u8","read_u8","set_position","sink","source","take","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","write","write","write","write","write","write","write_all","write_all","write_all","write_all","write_all","write_all","write_all","Base58","CompressedPublicKey","Encoding","Even","FromSliceError","FromWifError","Hex","InvalidAddressVersion","InvalidAddressVersionError","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidChar","InvalidHexLength","InvalidKeyPrefix","InvalidLength","Keypair","Odd","Parity","ParseCompressedPublicKeyError","ParsePublicKeyError","PrivateKey","PubkeyHash","PublicKey","Secp256k1","Secp256k1","Secp256k1","Secp256k1","SortKey","TapTweak","TweakedAux","TweakedKey","TweakedKeypair","TweakedPublicKey","UncompressedPublicKeyError","UntweakedKeypair","UntweakedPublicKey","Verification","WPubkeyHash","XOnlyPublicKey","add_xonly_tweak","as_c_ptr","as_mut_c_ptr","as_mut_ptr","as_ptr","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","compressed","compressed","ctx","dangerous_assume_tweaked","dangerous_assume_tweaked","dangerous_assume_tweaked","dangerous_assume_tweaked","default","deserialize","deserialize","deserialize","deserialize","display_secret","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_i32","from_keypair","from_raw_all","from_raw_signing_only","from_raw_verification_only","from_seckey_slice","from_seckey_str","from_secret_key","from_str","from_u8","gen_new","generate_keypair","hash","hash","hash","hash","hash","inner","inner","into","into","into","into","into","into","into","into","into","into","into","into","into","invalid_address_version","invalid_base58_payload_length","network","new","new","non_secure_erase","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","preallocate_signing_size","preallocate_size","preallocate_size_gen","preallocate_verification_size","preallocated_gen_new","preallocated_new","preallocated_signing_only","preallocated_verification_only","public_key","public_parts","randomize","recover_ecdsa","secret_bytes","secret_key","seeded_randomize","serialize","serialize","serialize","serialize","serialize","sign_ecdsa","sign_ecdsa_grind_r","sign_ecdsa_low_r","sign_ecdsa_recoverable","sign_ecdsa_recoverable_with_noncedata","sign_ecdsa_with_noncedata","sign_schnorr","sign_schnorr_no_aux_rand","sign_schnorr_with_aux_rand","sign_schnorr_with_rng","signing_only","source","source","source","source","source","tap_tweak","tap_tweak","to_i32","to_inner","to_inner","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_u8","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verification_only","verify_ecdsa","verify_schnorr","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","x_only_public_key","BitsArrayOverflow","HashesArrayOverflow","IdenticalHashesFound","MerkleBlock","MerkleBlockError","MerkleRootMismatch","NoTransactions","NotAllBitsConsumed","NotAllHashesConsumed","NotEnoughBits","PartialMerkleTree","TooManyHashes","TooManyTransactions","bits","borrow","borrow","borrow_mut","borrow_mut","calculate_root","calculate_root_inline","clone","clone","clone_into","clone_into","consensus_decode_from_finite_reader","consensus_encode","eq","eq","equivalent","equivalent","equivalent","equivalent","extract_matches","fmt","fmt","fmt","from","from","from","from_txids","hashes","header","into","into","num_transactions","source","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","txn","type_id","type_id","vzip","vzip","Bitcoin","Main","Network","NetworkKind","ParseNetworkError","Regtest","Signet","Test","Testnet","Testnet4","UnknownChainHashError","as_core_arg","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","into","into","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","deserialize","serialize","Address","BITCOIN","BLOOM","COMPACT_FILTERS","GETUTXO","Magic","NETWORK","NETWORK_LIMITED","NONE","P2P_V2","PROTOCOL_VERSION","ParseMagicError","REGTEST","SIGNET","ServiceFlags","TESTNET","TESTNET3","TESTNET4","UnknownMagicError","WITNESS","add","address","address","as_mut","as_mut","as_ref","as_ref","bitor","bitor_assign","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_decode","consensus_decode","consensus_encode","consensus_encode","consensus_encode","default","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_bytes","from_params","from_str","has","hash","hash","hash","into","into","into","into","into","message","message_blockdata","message_bloom","message_compact_blocks","message_filter","message_network","new","partial_cmp","partial_cmp","port","remove","services","socket_addr","source","source","to_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_socket_addrs","to_string","to_string","to_string","to_string","to_u64","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","AddrV2","AddrV2Message","Address","Cjdns","I2p","Ipv4","Ipv6","TorV2","TorV3","Unknown","addr","address","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","consensus_decode","consensus_decode","consensus_encode","consensus_encode","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","hash","hash","into","into","port","port","services","services","socket_addr","time","to_owned","to_owned","to_socket_addrs","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Addr","AddrV2","Alert","Block","BlockTxn","CFCheckpt","CFHeaders","CFilter","CmpctBlock","CommandString","CommandStringError","FeeFilter","FilterAdd","FilterClear","FilterLoad","GetAddr","GetBlockTxn","GetBlocks","GetCFCheckpt","GetCFHeaders","GetCFilters","GetData","GetHeaders","Headers","Inv","MAX_INV_SIZE","MAX_MSG_SIZE","MemPool","MerkleBlock","NetworkMessage","NotFound","Ping","Pong","RawNetworkMessage","Reject","SendAddrV2","SendCmpct","SendHeaders","Tx","Unknown","Verack","Version","WtxidRelay","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmd","cmd","command","command","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from_str","into","into","into","into","into_payload","magic","new","payload","source","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_static","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","command","payload","Block","CompactBlock","Error","GetBlocksMessage","GetHeadersMessage","Inventory","Transaction","Unknown","WTx","WitnessBlock","WitnessTransaction","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from","hash","into","into","into","locator_hashes","locator_hashes","network_hash","new","new","partial_cmp","stop_hash","stop_hash","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","version","version","vzip","vzip","vzip","hash","inv_type","All","BloomFlags","FilterAdd","FilterLoad","None","PubkeyOnly","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","data","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter","flags","fmt","fmt","fmt","from","from","from","hash_funcs","into","into","into","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","tweak","type_id","type_id","type_id","vzip","vzip","vzip","BlockTxn","CmpctBlock","GetBlockTxn","SendCmpct","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","compact_block","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","hash","hash","hash","hash","into","into","into","into","partial_cmp","partial_cmp","partial_cmp","partial_cmp","send_compact","to_owned","to_owned","to_owned","to_owned","transactions","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","txs_request","type_id","type_id","type_id","type_id","version","vzip","vzip","vzip","vzip","CFCheckpt","CFHeaders","CFilter","GetCFCheckpt","GetCFHeaders","GetCFilters","block_hash","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter","filter_hashes","filter_headers","filter_type","filter_type","filter_type","filter_type","filter_type","filter_type","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","into","into","into","into","into","into","previous_filter_header","start_height","start_height","stop_hash","stop_hash","stop_hash","stop_hash","stop_hash","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","Checkpoint","Duplicate","Dust","Fee","Invalid","Malformed","NonStandard","Obsolete","Reject","RejectReason","VersionMessage","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","ccode","clone","clone","clone","clone_into","clone_into","clone_into","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from","hash","into","into","into","message","new","nonce","reason","receiver","relay","sender","services","start_height","timestamp","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","user_agent","version","vzip","vzip","vzip","ParseIntError","as_ref","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","input","into","source","to_owned","to_string","try_from","try_into","type_id","vzip","DEFAULT_BYTES_PER_SIGOP","DEFAULT_INCREMENTAL_RELAY_FEE","DEFAULT_MEMPOOL_EXPIRY","DEFAULT_MIN_RELAY_TX_FEE","DUST_RELAY_TX_FEE","MAX_STANDARD_TX_SIGOPS_COST","MAX_STANDARD_TX_WEIGHT","MIN_STANDARD_TX_NONWITNESS_SIZE","get_virtual_tx_size","CompactTarget","Target","Work","AbsurdFeeRate","Bare","Base64Encoding","Bip32","Bip32","CombineInconsistentKeySources","ConsensusEncoding","DuplicateKey","Ecdsa","Ecdsa","Error","Error","ExtractTxError","FeeOverflow","GetKey","GetKeyError","IndexOutOfBounds","IndexOutOfBoundsError","Input","Inputs","InvalidControlBlock","InvalidEcdsaSignature","InvalidHash","InvalidKey","InvalidLeafVersion","InvalidMagic","InvalidPreimageHashPair","InvalidProprietaryKey","InvalidPublicKey","InvalidSecp256k1PublicKey","InvalidSeparator","InvalidSighashType","InvalidTaprootSignature","InvalidXOnlyPublicKey","Io","KeyNotFound","KeyRequest","MismatchedAlgoKey","MissingInputUtxo","MissingInputValue","MissingRedeemScript","MissingSpendUtxo","MissingUtxo","MissingWitnessScript","MustHaveUnsignedTx","NegativeFee","NoMorePairs","NonStandardSighashType","NotEcdsa","NotSupported","NotWpkh","Output","OutputType","P2wpkhSighash","PartialDataConsumption","Psbt","PsbtEncoding","PsbtParseError","PsbtSighashType","PsbtUtxoOutOfbounds","Pubkey","Schnorr","Schnorr","SegwitV0Sighash","SendingTooMuch","Sh","ShWpkh","ShWsh","SignError","SigningAlgorithm","SigningErrors","SigningKeys","SigningKeysMap","TapTree","Taproot","TaprootError","Tr","TxInput","UnexpectedUnsignedTx","UnknownOutputType","UnsignedTxHasScriptSigs","UnsignedTxHasScriptWitnesses","Unsupported","Version","Wpkh","WrongSigningAlgorithm","Wsh","XPubKey","bip32_derivation","bip32_derivation","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","combine","combine","default","default","deserialize","deserialize","deserialize","ecdsa_hash_ty","ecdsa_hash_ty","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","final_script_sig","final_script_witness","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","from_u32","get_key","hash","hash","hash","hash","hash","hash160_preimages","hash256_preimages","inputs","into","into","into","into","into","into","into","into","into","into","into","into","into","non_witness_utxo","outputs","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_sigs","proprietary","proprietary","proprietary","raw","redeem_script","redeem_script","ripemd160_preimages","serialize","serialize","serialize","serialize","sha256_preimages","sighash_type","signing_algorithm","source","source","source","source","source","source","tap_internal_key","tap_internal_key","tap_key_origins","tap_key_origins","tap_key_sig","tap_merkle_root","tap_script_sigs","tap_scripts","tap_tree","taproot_hash_ty","taproot_hash_ty","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_u32","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unknown","unknown","unknown","unsigned_tx","update_with_descriptor_unchecked","update_with_descriptor_unchecked","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","witness_script","witness_script","witness_utxo","xpub","actual","expected","hash","hash_type","preimage","fee_rate","psbt","tx","tx","index","index","length","length","Key","Pair","ProprietaryKey","ProprietaryType","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_encode","deserialize","deserialize","deserialize","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","hash","hash","into","into","into","key","key","key","partial_cmp","partial_cmp","prefix","serialize","serialize","serialize","subtype","to_key","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_value","value","vzip","vzip","vzip","All","AllPreallocated","Context","DESCRIPTION","Error","Even","FLAGS","IncorrectSignature","InvalidEllSwift","InvalidMessage","InvalidParityValue","InvalidParityValue","InvalidPublicKey","InvalidPublicKeySum","InvalidRecoveryId","InvalidSecretKey","InvalidSharedSecret","InvalidSignature","InvalidTweak","Keypair","MAX","Message","NotEnoughMemory","ONE","Odd","Parity","PreallocatedContext","PublicKey","Scalar","Secp256k1","SecretKey","SignOnly","SignOnlyPreallocated","Signing","ThirtyTwoByteHash","Verification","VerifyOnly","VerifyOnlyPreallocated","XOnlyPublicKey","ZERO","add_exp_tweak","add_tweak","as_c_ptr","as_c_ptr","as_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_ptr","as_ptr","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","combine","combine_keys","constants","deallocate","deallocate","deallocate","deallocate","deallocate","deallocate","deallocate","deserialize","deserialize","display_secret","ecdh","ecdsa","ellswift","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_be_bytes","from_digest","from_digest_slice","from_ellswift","from_keypair","from_keypair","from_le_bytes","from_secret_key","from_slice","from_slice","from_slice","from_str","from_str","from_x_only_public_key","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hashes","impl_array_newtype","index","index","index","into","into","into","into","into","into","into","into","into","into","into","into","into_32","keypair","mul_tweak","mul_tweak","negate","negate","new","non_secure_erase","non_secure_erase","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","public_key","random","random_custom","scalar","schnorr","secret_bytes","serialize","serialize","serialize","serialize_uncompressed","source","to_be_bytes","to_hash160","to_hash256","to_le_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_public_key","to_ripemd160","to_sha256","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","x_only_public_key","x_only_public_key","COMPACT_SIGNATURE_SIZE","CURVE_ORDER","ELLSWIFT_ENCODING_SIZE","FIELD_SIZE","GENERATOR_X","GENERATOR_Y","KEY_PAIR_SIZE","MAX_SIGNATURE_SIZE","MESSAGE_SIZE","ONE","PUBLIC_KEY_SIZE","SCHNORR_PUBLIC_KEY_SIZE","SCHNORR_SIGNATURE_SIZE","SECRET_KEY_SIZE","UNCOMPRESSED_PUBLIC_KEY_SIZE","ZERO","SharedSecret","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","deserialize","display_secret","eq","equivalent","equivalent","fmt","from","from_bytes","from_slice","from_str","hash","into","new","non_secure_erase","partial_cmp","secret_bytes","serialize","shared_secret_point","to_owned","try_from","try_into","type_id","vzip","RecoverableSignature","RecoveryId","SerializedSignature","Signature","as_c_ptr","as_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_ptr","as_mut_ptr","as_ptr","as_ptr","as_ref","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp_fast_unstable","deref","deserialize","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_compact","from_compact","from_der","from_der_lax","from_i32","from_signature","from_str","hash","hash","hash","into","into","into","into","into_iter","into_iter","is_empty","len","normalize_s","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","serialize","serialize_compact","serialize_compact","serialize_der","serialized_signature","to_i32","to_owned","to_owned","to_owned","to_owned","to_signature","to_standard","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","IntoIter","SerializedSignature","as_slice","borrow","borrow_mut","clone","clone_into","fmt","from","into","into_fallible","into_iter","next","next_back","nth","size_hint","to_owned","transpose_into_fallible","try_from","try_into","type_id","vzip","A","B","ElligatorSwift","ElligatorSwiftParty","ElligatorSwiftSharedSecret","as_c_ptr","as_mut_c_ptr","as_secret_bytes","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","cmp","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from_array","from_pubkey","from_seckey","from_secret_bytes","from_str","hash","hash","hash","into","into","into","new","partial_cmp","partial_cmp","partial_cmp","shared_secret","shared_secret_with_hasher","to_array","to_owned","to_owned","to_owned","to_secret_bytes","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","CPtr","Context","EcdhHashFn","ElligatorSwift","EllswiftEcdhHashFn","Keypair","NonceFn","None","None","None","None","PublicKey","SECP256K1_SER_COMPRESSED","SECP256K1_SER_UNCOMPRESSED","SECP256K1_START_NONE","SECP256K1_START_SIGN","SECP256K1_START_VERIFY","SchnorrNonceFn","SchnorrSigExtraParams","Signature","Some","Some","Some","Some","Target","XOnlyPublicKey","as_c_ptr","as_c_ptr","as_c_ptr","as_c_ptr","as_c_ptr","as_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","cmp_fast_unstable","cmp_fast_unstable","cmp_fast_unstable","cmp_fast_unstable","ecdsa_signature_parse_der_lax","eq","eq","eq","eq","eq","eq_fast_unstable","eq_fast_unstable","eq_fast_unstable","eq_fast_unstable","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_array","from_array_unchecked","from_array_unchecked","from_array_unchecked","from_array_unchecked","hash","hash","hash","hash","hash","impl_array_newtype","impl_raw_debug","index","index","index","index","index","into","into","into","into","into","into","into","new","new","new","new","new","non_secure_erase","non_secure_erase_impl","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","recovery","rustsecp256k1_v0_10_0_context_create","rustsecp256k1_v0_10_0_context_destroy","rustsecp256k1_v0_10_0_default_error_callback_fn","rustsecp256k1_v0_10_0_default_illegal_callback_fn","secp256k1_context_create","secp256k1_context_destroy","secp256k1_context_no_precomp","secp256k1_context_preallocated_clone","secp256k1_context_preallocated_clone_size","secp256k1_context_preallocated_create","secp256k1_context_preallocated_destroy","secp256k1_context_preallocated_size","secp256k1_context_randomize","secp256k1_ec_pubkey_cmp","secp256k1_ec_pubkey_combine","secp256k1_ec_pubkey_create","secp256k1_ec_pubkey_negate","secp256k1_ec_pubkey_parse","secp256k1_ec_pubkey_serialize","secp256k1_ec_pubkey_tweak_add","secp256k1_ec_pubkey_tweak_mul","secp256k1_ec_seckey_negate","secp256k1_ec_seckey_tweak_add","secp256k1_ec_seckey_tweak_mul","secp256k1_ec_seckey_verify","secp256k1_ecdh","secp256k1_ecdh_hash_function_default","secp256k1_ecdsa_sign","secp256k1_ecdsa_signature_normalize","secp256k1_ecdsa_signature_parse_compact","secp256k1_ecdsa_signature_parse_der","secp256k1_ecdsa_signature_serialize_compact","secp256k1_ecdsa_signature_serialize_der","secp256k1_ecdsa_verify","secp256k1_ellswift_create","secp256k1_ellswift_decode","secp256k1_ellswift_encode","secp256k1_ellswift_xdh","secp256k1_ellswift_xdh_hash_function_bip324","secp256k1_keypair_create","secp256k1_keypair_pub","secp256k1_keypair_sec","secp256k1_keypair_xonly_pub","secp256k1_keypair_xonly_tweak_add","secp256k1_nonce_function_bip340","secp256k1_nonce_function_default","secp256k1_nonce_function_rfc6979","secp256k1_schnorrsig_sign","secp256k1_schnorrsig_sign_custom","secp256k1_schnorrsig_verify","secp256k1_xonly_pubkey_cmp","secp256k1_xonly_pubkey_from_pubkey","secp256k1_xonly_pubkey_parse","secp256k1_xonly_pubkey_serialize","secp256k1_xonly_pubkey_tweak_add","secp256k1_xonly_pubkey_tweak_add_check","to_array","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","underlying_bytes","underlying_bytes","underlying_bytes","underlying_bytes","vzip","vzip","vzip","vzip","vzip","vzip","vzip","RecoverableSignature","as_c_ptr","as_mut_c_ptr","as_ref","borrow","borrow_mut","clone","clone_into","cmp","cmp_fast_unstable","default","eq","eq_fast_unstable","equivalent","equivalent","fmt","from","hash","index","into","new","partial_cmp","secp256k1_ecdsa_recover","secp256k1_ecdsa_recoverable_signature_convert","secp256k1_ecdsa_recoverable_signature_parse_compact","secp256k1_ecdsa_recoverable_signature_serialize_compact","secp256k1_ecdsa_sign_recoverable","to_owned","try_from","try_into","type_id","vzip","AlignedType","ZERO","borrow","borrow","borrow_mut","borrow_mut","c_char","c_int","c_uchar","c_uint","c_void","clone","clone_into","default","fmt","from","from","into","into","size_t","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","zeroed","BLOCK_SIZE","Bytes","DISPLAY_BACKWARD","Engine","FromSliceError","Hash","HashEngine","Hmac","HmacEngine","LEN","MidState","all_zeros","all_zeros","as_byte_array","as_byte_array","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_slice_impl","clone","clone","clone","clone_into","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","eq","equivalent","equivalent","equivalent","equivalent","expected_length","flush","flush","fmt","fmt","fmt","fmt","fmt","from","from","from","from_byte_array","from_byte_array","from_engine","from_engine","from_inner_engines","from_slice","from_slice","from_str","hash","hash","hash_byte_chunks","hash_newtype","hex_fmt_impl","index","index","index","index","index","input","input","into","into","into","invalid_length","midstate","midstate","n_bytes_hashed","n_bytes_hashed","new","partial_cmp","serde_impl","serialize","sha256t_hash_newtype","to_byte_array","to_byte_array","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write","write","CUSTOM_START","CryptoRng","Error","Fill","INTERNAL_START","Rng","RngCore","Seed","SeedableRng","borrow","borrow_mut","code","distributions","fill","fill_bytes","fmt","fmt","from","from","from","from_entropy","from_rng","from_seed","gen","gen_bool","gen_range","gen_ratio","inner","into","new","next_u32","next_u64","prelude","random","raw_os_error","read","rngs","sample","sample_iter","seed_from_u64","seq","source","take_inner","thread_rng","to_string","try_fill","try_fill","try_fill_bytes","try_from","try_into","type_id","vzip","AllWeightsZero","Alphanumeric","Bernoulli","BernoulliError","DistIter","DistMap","DistString","Distribution","InvalidProbability","InvalidWeight","NoItem","Open01","OpenClosed01","Slice","Standard","TooMany","Uniform","WeightedError","WeightedIndex","append_string","append_string","append_string","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","checked_sum","checked_sum","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_ratio","into","into","into","into","into","into","into","into","into","into","into","into","into_fallible","into_iter","map","new","new","new","new","new_inclusive","next","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_iter","sample_string","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uniform","update_weights","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weighted","SampleBorrow","SampleRange","SampleUniform","Sampler","Uniform","UniformChar","UniformDuration","UniformFloat","UniformInt","UniformSampler","X","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from","into","into","into","into","is_empty","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","AllWeightsZero","InvalidWeight","NoItem","TooMany","WeightedError","WeightedIndex","alias_method","Weight","WeightedIndex","borrow","borrow_mut","fmt","from","into","new","try_from","try_into","type_id","vzip","CryptoRng","Distribution","Item","IteratorRandom","Rng","RngCore","Seed","SeedableRng","SliceRandom","StdRng","ThreadRng","choose","choose","choose_multiple","choose_multiple","choose_multiple_fill","choose_multiple_weighted","choose_mut","choose_stable","choose_weighted","choose_weighted_mut","fill","fill_bytes","from_entropy","from_rng","from_seed","gen","gen_bool","gen_range","gen_ratio","map","next_u32","next_u64","partial_shuffle","random","sample","sample","sample_iter","sample_iter","seed_from_u64","shuffle","thread_rng","try_fill","try_fill_bytes","OsRng","StdRng","ThreadRng","adapter","as_rngcore","as_rngcore","as_rngcore","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default","eq","equivalent","equivalent","fill_bytes","fill_bytes","fill_bytes","fmt","fmt","fmt","from","from","from","from_rng","from_seed","into","into","into","mock","next_u32","next_u32","next_u32","next_u64","next_u64","next_u64","to_owned","to_owned","to_owned","try_fill_bytes","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","ReadError","ReadRng","ReseedingRng","as_rngcore","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","fill_bytes","fill_bytes","fmt","fmt","fmt","fmt","from","from","from","into","into","into","new","new","next_u32","next_u32","next_u64","next_u64","reseed","source","to_owned","to_string","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","StepRng","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fill_bytes","fmt","from","into","new","next_u32","next_u64","to_owned","try_fill_bytes","try_from","try_into","type_id","vzip","Item","IteratorRandom","SliceChooseIter","SliceRandom","borrow","borrow_mut","choose","choose","choose_multiple","choose_multiple","choose_multiple_fill","choose_multiple_weighted","choose_mut","choose_stable","choose_weighted","choose_weighted_mut","fmt","from","index","into","into_fallible","into_iter","len","next","partial_shuffle","shuffle","size_hint","transpose_into_fallible","try_from","try_into","type_id","vzip","IndexVec","IndexVecIntoIter","IndexVecIter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","fmt","fmt","fmt","from","from","from","from","from","index","into","into","into","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_vec","is_empty","iter","len","next","next","sample","sample_weighted","size_hint","size_hint","to_owned","to_owned","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","OutOfRangeError","Scalar","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","hash","into","to_owned","to_string","try_from","try_into","type_id","vzip","Signature","as_c_ptr","as_mut_c_ptr","as_ref","borrow","borrow_mut","clone","clone_into","cmp","deserialize","eq","equivalent","equivalent","fmt","fmt","fmt","from","from_slice","from_str","hash","index","into","partial_cmp","serialize","serialize","to_owned","to_string","try_from","try_into","type_id","vzip","All","All","All","AllPlusAnyoneCanPay","AllPlusAnyoneCanPay","Annex","AnnexError","Default","EcdsaSighashType","Empty","EncodeSigningDataResult","IncorrectPrefix","InputsIndex","InvalidAllIndex","InvalidOneIndex","InvalidSighashType","InvalidSighashTypeError","Io","LegacySighash","NonStandardSighashTypeError","None","None","NonePlusAnyoneCanPay","NonePlusAnyoneCanPay","NotP2wpkhScript","One","P2wpkhError","Prevouts","PrevoutsIndex","PrevoutsIndexError","PrevoutsKind","PrevoutsKindError","PrevoutsSize","PrevoutsSizeError","ScriptPath","SegwitV0Sighash","Sighash","Sighash","SighashCache","SighashSingleBug","SighashTypeParseError","SigningDataError","Single","Single","SingleMissingOutput","SingleMissingOutputError","SinglePlusAnyoneCanPay","SinglePlusAnyoneCanPay","TapSighash","TapSighashTag","TapSighashType","TaprootError","WriteResult","as_bytes","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","input_index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_transaction","is_sighash_single_bug","leaf_hash","legacy_encode_signing_data_to","legacy_signature_hash","map_err","new","new","new","outputs_length","p2wpkh_signature_hash","p2wsh_signature_hash","partial_cmp","partial_cmp","segwit_v0_encode_signing_data_to","source","source","source","source","source","source","source","source","source","source","source","taproot_encode_signing_data_to","taproot_key_spend_signature_hash","taproot_script_spend_signature_hash","taproot_signature_hash","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","transaction","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unrecognized","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_defaults","witness_mut","BITCOIN_SIGNED_MSG_PREFIX","InvalidBase64","InvalidEncoding","InvalidLength","MessageSignature","MessageSignatureError","UnsupportedAddressType","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compressed","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from_base64","from_slice","from_str","into","into","is_signed_by_address","new","recover_pubkey","serialize","signature","signed_msg_hash","source","to_base64","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","ControlBlock","EmptyTree","EmptyTree","Future","FutureLeafVersion","Hidden","HiddenNodesError","HiddenParts","HiddenParts","IncompleteBuilderError","InvalidControlBlockSize","InvalidInternalKey","InvalidInternalKey","InvalidMerkleBranchSize","InvalidMerkleTreeDepth","InvalidMerkleTreeDepth","InvalidSignatureSize","InvalidTaprootLeafVersion","LeafNode","LeafNodes","LeafVersion","NodeInfo","NodeNotInDfsOrder","NotFinalized","OverCompleteTree","Script","ScriptLeaf","ScriptLeaves","Secp256k1","SigFromSliceError","SighashType","Signature","TAPROOT_ANNEX_PREFIX","TAPROOT_CONTROL_BASE_SIZE","TAPROOT_CONTROL_MAX_NODE_COUNT","TAPROOT_CONTROL_MAX_SIZE","TAPROOT_CONTROL_NODE_SIZE","TAPROOT_LEAF_MASK","TAPROOT_LEAF_TAPSCRIPT","TapBranchTag","TapLeaf","TapLeafHash","TapLeafTag","TapNodeHash","TapScript","TapTree","TapTweakHash","TapTweakTag","TaprootBuilder","TaprootBuilderError","TaprootError","TaprootMerkleBranch","TaprootSpendInfo","add_hidden_node","add_leaf","add_leaf_with_ver","as_hidden","as_inner","as_mut","as_ref","as_script","as_slice","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","combine","control_block","decode","decode","default","default","depth","deref","deref_mut","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finalize","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_consensus","from_leaf_node","from_node_info","from_slice","has_hidden_nodes","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","internal_key","internal_key","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_builder","into_fallible","into_fallible","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_node_info","into_node_info","into_vec","is_empty","is_finalizable","leaf","leaf_hash","leaf_nodes","leaf_version","leaf_version","len","merkle_branch","merkle_branch","merkle_branch","merkle_branch","merkle_root","new","new_hidden","new_hidden_node","new_key_spend","new_leaf_with_ver","new_script","next","next","next_back","next_back","node_hash","node_hash","node_info","output_key","output_key_parity","output_key_parity","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","root_hash","script","script","script_leaves","script_map","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize_to_writer","serialized_signature","sighash_type","signature","size","size_hint","size_hint","source","source","source","source","source","tap_tweak","to_consensus","to_consensus","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_vec","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_node_info","try_into_taptree","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify_taproot_commitment","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","with_huffman_tree","with_huffman_tree","IntoIter","TaprootMerkleBranch","as_mut_slice","as_slice","borrow","borrow_mut","clone","clone_into","count","fmt","from","into","into_fallible","into_iter","last","next","next_back","nth","nth_back","size_hint","to_owned","transpose_into_fallible","try_from","try_into","type_id","vzip","IntoIter","SerializedSignature","as_ref","as_slice","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","deref","eq","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","from","from_signature","hash","into","into","into_fallible","into_iter","into_iter","into_iter","len","next","next_back","nth","partial_cmp","partial_cmp","size_hint","to_owned","to_owned","to_signature","to_string","transpose_into_fallible","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write_to","ChangeSet","IndexedTxGraph","apply_block","apply_block_relevant","apply_changeset","apply_update","apply_update_at","as_ref","batch_insert_relevant","batch_insert_relevant_unconfirmed","batch_insert_unconfirmed","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","default","deserialize","eq","fmt","fmt","from","from","from","from","graph","index","indexer","initial_changeset","insert_anchor","insert_seen_at","insert_tx","insert_txout","into","into","is_empty","merge","new","serialize","to_owned","try_from","try_from","try_into","try_into","tx_graph","type_id","type_id","vzip","vzip","ChangeSet","Indexer","apply_changeset","index_tx","index_txout","initial_changeset","is_tx_relevant","keychain_txout","spk_txout","ChangeSet","DEFAULT_LOOKAHEAD","DescriptorAlreadyAssigned","FullScanRequestBuilderExt","InsertDescriptorError","KeychainAlreadyAssigned","KeychainTxOutIndex","LAST_REVEALED_TABLE_NAME","SCHEMA_NAME","SyncRequestBuilderExt","all_unbounded_spk_iters","apply_changeset","apply_changeset","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default","deserialize","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from_sqlite","get_descriptor","index_of_spk","index_tx","index_txout","init_sqlite_tables","initial_changeset","insert_descriptor","into","into","into","is_empty","is_tx_relevant","is_used","keychain_outpoints","keychain_outpoints_in_range","keychains","last_revealed","last_revealed_index","last_revealed_indices","last_used_index","last_used_indices","lookahead","lookahead_to_target","mark_used","merge","net_value","new","next_index","next_unused_spk","outpoints","persist_to_sqlite","reveal_next_spk","reveal_to_target","reveal_to_target_multi","revealed_keychain_spks","revealed_spks","revealed_spks_from_indexer","sent_and_received","serialize","spk_at_index","spks_from_indexer","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","try_into","txout","txouts","txouts_in_tx","type_id","type_id","type_id","unbounded_spk_iter","unmark_used","unused_keychain_spks","unused_spks","unused_spks_from_indexer","vzip","vzip","vzip","descriptor","existing_assignment","existing_assignment","keychain","SpkTxOutIndex","all_spks","apply_changeset","borrow","borrow_mut","clone","clone_into","default","fmt","from","index_of_spk","index_tx","index_txout","initial_changeset","insert_spk","into","is_relevant","is_tx_relevant","is_used","mark_used","net_value","outpoints","outputs_in_range","scan","scan_txout","sent_and_received","spk_at_index","to_owned","try_from","try_into","txout","txouts","txouts_in_tx","type_id","unmark_used","unused_spks","vzip","AlterCheckPointError","ApplyHeaderError","BLOCKS_TABLE_NAME","CannotConnect","CannotConnectError","ChangeSet","CheckPoint","CheckPointIter","InconsistentBlocks","LocalChain","MissingGenesisError","SCHEMA_NAME","apply_changeset","apply_header","apply_header_connected_to","apply_update","blocks","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","default","deserialize","disconnect_from","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_blocks","from_changeset","from_genesis_hash","from_iter","from_iter","from_sqlite","from_tip","genesis_hash","get","get_chain_tip","height","init_sqlite_tables","initial_changeset","insert_block","into","into","into","into","into","into","is_block_in_chain","is_empty","iter_checkpoints","merge","original_hash","persist_to_sqlite","range","serialize","tip","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_include_height","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","update_hash","vzip","vzip","vzip","vzip","vzip","vzip","SCHEMAS_TABLE_NAME","migrate_schema","FullScanRequest","FullScanRequestBuilder","FullScanResponse","OutPoint","Spk","SyncItem","SyncProgress","SyncRequest","SyncRequestBuilder","SyncResponse","Txid","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","builder","builder","chain_tip","chain_tip","chain_tip","chain_tip","chain_update","chain_update","clone","clone","clone_into","clone_into","cmp","consumed","default","default","default","default","default","default","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","hash","inspect","inspect","into","into","into","into","into","into","into","into","iter_outpoints","iter_spks","iter_spks","iter_txids","keychains","last_active_indices","next_outpoint","next_spk","next_spk","next_txid","outpoints","outpoints_consumed","outpoints_remaining","partial_cmp","progress","remaining","revealed_spks_from_indexer","spks","spks_consumed","spks_for_keychain","spks_from_indexer","spks_remaining","spks_with_indexes","to_owned","to_owned","to_string","total","total_outpoints","total_spks","total_txids","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_update","tx_update","txids","txids_consumed","txids_remaining","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unused_spks_from_indexer","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","ANCHORS_TABLE_NAME","CalculateFeeError","CanonicalTx","ChangeSet","MissingTxOut","NegativeFee","SCHEMA_NAME","TXOUTS_TABLE_NAME","TXS_TABLE_NAME","TxAncestors","TxDescendants","TxGraph","TxNode","TxUpdate","all_anchors","all_txouts","anchor_heights","anchors","anchors","anchors","apply_changeset","apply_update","apply_update_at","as_ref","balance","batch_insert_unconfirmed","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","calculate_fee","chain_position","checked_sum","checked_sum","checked_sum","checked_sum","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","deref","deserialize","direct_conflicts","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter_chain_txouts","filter_chain_unspents","floating_txouts","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_sqlite","full_txs","get_chain_position","get_chain_spend","get_tx","get_tx_node","get_txout","init_sqlite_tables","initial_changeset","insert_anchor","insert_seen_at","insert_tx","insert_txout","into","into","into","into","into","into","into","into_fallible","into_fallible","into_iter","into_iter","is_empty","is_empty","last_seen","last_seen_unconfirmed","list_canonical_txs","map_anchors","map_anchors","merge","new","next","next","outspends","partial_cmp","partial_cmp","persist_to_sqlite","seen_ats","serialize","to_owned","to_owned","to_owned","to_owned","to_string","transpose_into_fallible","transpose_into_fallible","try_balance","try_filter_chain_txouts","try_filter_chain_unspents","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_get_chain_position","try_get_chain_spend","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_list_canonical_txs","tx","tx_node","tx_outputs","tx_spends","txid","txouts","txouts","txouts","txs","txs","txs_with_no_anchor_or_last_seen","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","walk_ancestors","walk_conflicts","walk_descendants"],"q":[[0,"bdk_chain"],[356,"bdk_chain::ChainPosition"],[359,"bdk_chain::bitcoin"],[2761,"bdk_chain::bitcoin::address"],[3032,"bdk_chain::bitcoin::address::AddressData"],[3035,"bdk_chain::bitcoin::address::error"],[3057,"bdk_chain::bitcoin::amount"],[3118,"bdk_chain::bitcoin::amount::serde"],[3129,"bdk_chain::bitcoin::amount::serde::as_btc"],[3132,"bdk_chain::bitcoin::amount::serde::as_btc::opt"],[3134,"bdk_chain::bitcoin::amount::serde::as_sat"],[3137,"bdk_chain::bitcoin::amount::serde::as_sat::opt"],[3139,"bdk_chain::bitcoin::base58"],[3508,"bdk_chain::bitcoin::base58::error"],[3551,"bdk_chain::bitcoin::base64"],[3641,"bdk_chain::bitcoin::base64::alphabet"],[3685,"bdk_chain::bitcoin::base64::display"],[3697,"bdk_chain::bitcoin::base64::engine"],[3779,"bdk_chain::bitcoin::base64::engine::general_purpose"],[3787,"bdk_chain::bitcoin::base64::prelude"],[3802,"bdk_chain::bitcoin::base64::read"],[3815,"bdk_chain::bitcoin::base64::write"],[3847,"bdk_chain::bitcoin::bech32"],[4113,"bdk_chain::bitcoin::bech32::hrp"],[4117,"bdk_chain::bitcoin::bech32::primitives"],[4127,"bdk_chain::bitcoin::bech32::primitives::checksum"],[4195,"bdk_chain::bitcoin::bech32::primitives::decode"],[4478,"bdk_chain::bitcoin::bech32::primitives::encode"],[4558,"bdk_chain::bitcoin::bech32::primitives::gf32"],[4603,"bdk_chain::bitcoin::bech32::primitives::hrp"],[4695,"bdk_chain::bitcoin::bech32::primitives::iter"],[4764,"bdk_chain::bitcoin::bech32::primitives::segwit"],[4812,"bdk_chain::bitcoin::bech32::segwit"],[4872,"bdk_chain::bitcoin::bip152"],[5062,"bdk_chain::bitcoin::bip158"],[5176,"bdk_chain::bitcoin::bip32"],[5522,"bdk_chain::bitcoin::bip32::ChildNumber"],[5524,"bdk_chain::bitcoin::blockdata"],[5535,"bdk_chain::bitcoin::blockdata::block"],[5655,"bdk_chain::bitcoin::blockdata::constants"],[5723,"bdk_chain::bitcoin::blockdata::fee_rate"],[5724,"bdk_chain::bitcoin::blockdata::locktime"],[5726,"bdk_chain::bitcoin::blockdata::locktime::absolute"],[5912,"bdk_chain::bitcoin::blockdata::locktime::relative"],[6122,"bdk_chain::bitcoin::blockdata::opcodes"],[6173,"bdk_chain::bitcoin::blockdata::opcodes::all"],[6429,"bdk_chain::bitcoin::blockdata::script"],[6983,"bdk_chain::bitcoin::blockdata::script::witness_program"],[7008,"bdk_chain::bitcoin::blockdata::script::witness_version"],[7092,"bdk_chain::bitcoin::blockdata::transaction"],[7252,"bdk_chain::bitcoin::blockdata::weight"],[7254,"bdk_chain::bitcoin::blockdata::witness"],[7269,"bdk_chain::bitcoin::consensus"],[7360,"bdk_chain::bitcoin::consensus::encode"],[7453,"bdk_chain::bitcoin::consensus::encode::Error"],[7457,"bdk_chain::bitcoin::consensus::params"],[7477,"bdk_chain::bitcoin::consensus::serde"],[7512,"bdk_chain::bitcoin::consensus::serde::hex"],[7590,"bdk_chain::bitcoin::ecdsa"],[7677,"bdk_chain::bitcoin::error"],[7760,"bdk_chain::bitcoin::hash_types"],[7768,"bdk_chain::bitcoin::hashes"],[7809,"bdk_chain::bitcoin::hashes::cmp"],[7810,"bdk_chain::bitcoin::hashes::hash160"],[7855,"bdk_chain::bitcoin::hashes::hex"],[8019,"bdk_chain::bitcoin::hashes::hex::buf_encoder"],[8037,"bdk_chain::bitcoin::hashes::hex::display"],[8075,"bdk_chain::bitcoin::hashes::hex::error"],[8104,"bdk_chain::bitcoin::hashes::hex::parse"],[8113,"bdk_chain::bitcoin::hashes::hex::prelude"],[8124,"bdk_chain::bitcoin::hashes::hmac"],[8137,"bdk_chain::bitcoin::hashes::ripemd160"],[8208,"bdk_chain::bitcoin::hashes::serde"],[8295,"bdk_chain::bitcoin::hashes::serde::de"],[8479,"bdk_chain::bitcoin::hashes::serde::de::value"],[9802,"bdk_chain::bitcoin::hashes::serde::ser"],[9931,"bdk_chain::bitcoin::hashes::serde_macros"],[9932,"bdk_chain::bitcoin::hashes::serde_macros::serde_details"],[9937,"bdk_chain::bitcoin::hashes::sha1"],[10007,"bdk_chain::bitcoin::hashes::sha256"],[10121,"bdk_chain::bitcoin::hashes::sha256d"],[10174,"bdk_chain::bitcoin::hashes::sha256t"],[10221,"bdk_chain::bitcoin::hashes::sha384"],[10277,"bdk_chain::bitcoin::hashes::sha512"],[10347,"bdk_chain::bitcoin::hashes::sha512_256"],[10403,"bdk_chain::bitcoin::hashes::siphash24"],[10495,"bdk_chain::bitcoin::io"],[10743,"bdk_chain::bitcoin::key"],[11113,"bdk_chain::bitcoin::merkle_tree"],[11171,"bdk_chain::bitcoin::network"],[11219,"bdk_chain::bitcoin::network::as_core_arg"],[11221,"bdk_chain::bitcoin::p2p"],[11379,"bdk_chain::bitcoin::p2p::address"],[11434,"bdk_chain::bitcoin::p2p::message"],[11562,"bdk_chain::bitcoin::p2p::message::NetworkMessage"],[11564,"bdk_chain::bitcoin::p2p::message_blockdata"],[11640,"bdk_chain::bitcoin::p2p::message_blockdata::Inventory"],[11642,"bdk_chain::bitcoin::p2p::message_bloom"],[11706,"bdk_chain::bitcoin::p2p::message_compact_blocks"],[11799,"bdk_chain::bitcoin::p2p::message_filter"],[11931,"bdk_chain::bitcoin::p2p::message_network"],[12009,"bdk_chain::bitcoin::parse"],[12030,"bdk_chain::bitcoin::policy"],[12039,"bdk_chain::bitcoin::pow"],[12042,"bdk_chain::bitcoin::psbt"],[12420,"bdk_chain::bitcoin::psbt::Error"],[12425,"bdk_chain::bitcoin::psbt::ExtractTxError"],[12429,"bdk_chain::bitcoin::psbt::IndexOutOfBoundsError"],[12433,"bdk_chain::bitcoin::psbt::raw"],[12504,"bdk_chain::bitcoin::secp256k1"],[12858,"bdk_chain::bitcoin::secp256k1::constants"],[12874,"bdk_chain::bitcoin::secp256k1::ecdh"],[12905,"bdk_chain::bitcoin::secp256k1::ecdsa"],[13027,"bdk_chain::bitcoin::secp256k1::ecdsa::serialized_signature"],[13049,"bdk_chain::bitcoin::secp256k1::ellswift"],[13124,"bdk_chain::bitcoin::secp256k1::ffi"],[13370,"bdk_chain::bitcoin::secp256k1::ffi::recovery"],[13402,"bdk_chain::bitcoin::secp256k1::ffi::types"],[13432,"bdk_chain::bitcoin::secp256k1::hashes"],[13546,"bdk_chain::bitcoin::secp256k1::rand"],[13598,"bdk_chain::bitcoin::secp256k1::rand::distributions"],[13873,"bdk_chain::bitcoin::secp256k1::rand::distributions::uniform"],[14016,"bdk_chain::bitcoin::secp256k1::rand::distributions::weighted"],[14023,"bdk_chain::bitcoin::secp256k1::rand::distributions::weighted::alias_method"],[14035,"bdk_chain::bitcoin::secp256k1::rand::prelude"],[14079,"bdk_chain::bitcoin::secp256k1::rand::rngs"],[14142,"bdk_chain::bitcoin::secp256k1::rand::rngs::adapter"],[14190,"bdk_chain::bitcoin::secp256k1::rand::rngs::mock"],[14211,"bdk_chain::bitcoin::secp256k1::rand::seq"],[14243,"bdk_chain::bitcoin::secp256k1::rand::seq::index"],[14300,"bdk_chain::bitcoin::secp256k1::scalar"],[14320,"bdk_chain::bitcoin::secp256k1::schnorr"],[14351,"bdk_chain::bitcoin::sighash"],[14700,"bdk_chain::bitcoin::sign_message"],[14755,"bdk_chain::bitcoin::taproot"],[15394,"bdk_chain::bitcoin::taproot::merkle_branch"],[15420,"bdk_chain::bitcoin::taproot::serialized_signature"],[15475,"bdk_chain::indexed_tx_graph"],[15526,"bdk_chain::indexer"],[15535,"bdk_chain::indexer::keychain_txout"],[15638,"bdk_chain::indexer::keychain_txout::InsertDescriptorError"],[15642,"bdk_chain::indexer::spk_txout"],[15679,"bdk_chain::local_chain"],[15811,"bdk_chain::rusqlite_impl"],[15813,"bdk_chain::spk_client"],[15959,"bdk_chain::tx_graph"],[16144,"bdk_chain::balance"],[16145,"bdk_chain::descriptor_ext"],[16146,"bdk_chain::tx_data_traits"],[16147,"bdk_core::block_id"],[16148,"bitcoin_hashes::sha256"],[16149,"bdk_core::checkpoint"],[16150,"bdk_core::tx_update"],[16151,"core::clone"],[16152,"bdk_chain::chain_data"],[16153,"bdk_chain::spk_iter"],[16154,"core::cmp"],[16155,"rusqlite::types::value_ref"],[16156,"rusqlite::types::from_sql"],[16157,"bitcoin::blockdata::transaction"],[16158,"bitcoin::blockdata::script::owned"],[16159,"bitcoin_units::amount"],[16160,"bitcoin::network"],[16161,"miniscript::descriptor::key"],[16162,"miniscript::descriptor"],[16163,"bitcoin::blockdata::block"],[16164,"serde::de"],[16165,"core::option"],[16166,"core::borrow"],[16167,"core::result"],[16168,"core::iter::traits::collect"],[16169,"core::fmt"],[16170,"bitcoin_hashes"],[16171,"bdk_chain::chain_oracle"],[16172,"core::hash"],[16173,"core::slice::index"],[16174,"fallible_iterator"],[16175,"core::iter::traits::iterator"],[16176,"bdk_core::merge"],[16177,"core::ops::function"],[16178,"core::ops::range"],[16179,"serde::ser"],[16180,"rusqlite::types::to_sql"],[16181,"rusqlite"],[16182,"alloc::string"],[16183,"core::any"],[16184,"bitcoin_units::weight"],[16185,"bitcoin::pow"],[16186,"secp256k1::key"],[16187,"secp256k1"],[16188,"secp256k1::scalar"],[16189,"secp256k1::context"],[16190,"bitcoin::address"],[16191,"bitcoin::bip158"],[16192,"bitcoin::bip32"],[16193,"bitcoin::blockdata::script"],[16194,"bitcoin::crypto::key"],[16195,"bitcoin::crypto::sighash"],[16196,"bitcoin::taproot"],[16197,"bitcoin::blockdata::script::borrowed"],[16198,"secp256k1_sys"],[16199,"bitcoin_hashes::sha256d"],[16200,"bitcoin_hashes::hash160"],[16201,"bitcoin_hashes::sha256t"],[16202,"bitcoin::blockdata::script::push_bytes::primitive"],[16203,"bitcoin::consensus::params"],[16204,"bitcoin::blockdata::script::builder"],[16205,"bitcoin::blockdata::constants"],[16206,"bitcoin::blockdata::locktime::absolute"],[16207,"bitcoin::blockdata::locktime::relative"],[16208,"bitcoin_units::fee_rate"],[16209,"bitcoin::blockdata::opcodes"],[16210,"bitcoin::blockdata::witness"],[16211,"bitcoin::blockdata::script::witness_program"],[16212,"bitcoin::blockdata::script::witness_version"],[16213,"bitcoin::consensus::encode"],[16214,"bitcoin::merkle_tree::block"],[16215,"bitcoin::psbt"],[16216,"bitcoin::psbt::error"],[16217,"bitcoin_io"],[16218,"core::marker"],[16219,"bitcoin_io::error"],[16220,"bitcoin_units::amount::serde::private"],[16221,"core::convert"],[16222,"bitcoin::blockdata::script::instruction"],[16223,"miniscript::psbt"],[16224,"alloc::vec"],[16225,"alloc::borrow"],[16226,"miniscript::primitives::relative_locktime"],[16227,"hex_conservative::error"],[16228,"bitcoin::error"],[16229,"bitcoin::p2p"],[16230,"bitcoin::address::error"],[16231,"bitcoin_units::locktime::relative"],[16232,"miniscript::miniscript::decode"],[16233,"alloc::boxed"],[16234,"bitcoin_units::locktime::absolute"],[16235,"bitcoin::crypto::taproot"],[16236,"bitcoin::crypto::ecdsa"],[16237,"alloc::collections::btree::map"],[16238,"bech32::primitives::gf32"],[16239,"miniscript::miniscript::hash256"],[16240,"bitcoin_hashes::ripemd160"],[16241,"secp256k1::schnorr"],[16242,"base58ck::error"],[16243,"bech32::segwit"],[16244,"bitcoin_units::amount::serde"],[16245,"core::alloc"],[16246,"std::path"],[16247,"std::ffi::os_str"],[16248,"bitcoin::bip152"],[16249,"bitcoin::p2p::message_blockdata"],[16250,"bitcoin::p2p::address"],[16251,"alloc::vec::drain"],[16252,"serde_json::value"],[16253,"alloc::vec::extract_if"],[16254,"std::io::error"],[16255,"bitcoin::taproot::merkle_branch"],[16256,"alloc::collections::binary_heap"],[16257,"alloc::ffi::c_str"],[16258,"alloc::collections::vec_deque"],[16259,"miniscript::plan"],[16260,"serde::de::value"],[16261,"core::str::pattern"],[16262,"core::mem::maybe_uninit"],[16263,"alloc::vec::splice"],[16264,"core::net::socket_addr"],[16265,"alloc::vec::into_iter"],[16266,"rusqlite::error"],[16267,"alloc::collections"],[16268,"std::io"],[16269,"base64::encode"],[16270,"base64::decode"],[16271,"base64::engine"],[16272,"base64::alphabet"],[16273,"base64::display"],[16274,"base64::engine::general_purpose"],[16275,"base64::read::decoder"],[16276,"base64::write::encoder_string_writer"],[16277,"base64::write::encoder"],[16278,"bech32::primitives::hrp"],[16279,"bech32::primitives::iter"],[16280,"bech32::primitives"],[16281,"bech32"],[16282,"bech32::primitives::decode"],[16283,"bech32::primitives::encode"],[16284,"bech32::primitives::checksum"],[16285,"bech32::primitives::segwit"],[16286,"core::num::error"],[16287,"core::iter::traits::exact_size"],[16288,"miniscript::primitives::absolute_locktime"],[16289,"bitcoin::blockdata::script::push_bytes::error"],[16290,"bitcoin::blockdata::script::push_bytes"],[16291,"bitcoin_units::parse"],[16292,"bitcoin::consensus"],[16293,"bitcoin::consensus::serde"],[16294,"bitcoin::consensus::serde::hex"],[16295,"core::slice::iter"],[16296,"secp256k1::ecdsa"],[16297,"hex_conservative::parse"],[16298,"hex_conservative::display"],[16299,"hex_conservative"],[16300,"hex_conservative::iter"],[16301,"core::iter::traits::double_ended"],[16302,"core::iter::traits::marker"],[16303,"hex_conservative::buf_encoder"],[16304,"serde::de::ignored_any"],[16305,"core::error"],[16306,"serde::ser::impossible"],[16307,"bitcoin_hashes::serde_macros::serde_details"],[16308,"bitcoin_hashes::sha1"],[16309,"bitcoin_hashes::sha384"],[16310,"bitcoin_hashes::sha512"],[16311,"bitcoin_hashes::sha512_256"],[16312,"bitcoin_hashes::siphash24"],[16313,"bitcoin_io::bridge"],[16314,"core::ptr::non_null"],[16315,"secp256k1::context::alloc_only"],[16316,"secp256k1::secret"],[16317,"core::mem::manually_drop"],[16318,"rand::rng"],[16319,"secp256k1_sys::types"],[16320,"secp256k1::ecdsa::recovery"],[16321,"rand_core"],[16322,"bitcoin::p2p::message"],[16323,"bitcoin::p2p::message_bloom"],[16324,"bitcoin::p2p::message_compact_blocks"],[16325,"bitcoin::p2p::message_filter"],[16326,"bitcoin::p2p::message_network"],[16327,"bitcoin::psbt::map::output"],[16328,"bitcoin::psbt::map::input"],[16329,"bitcoin::psbt::display_from_str"],[16330,"bitcoin::psbt::raw"],[16331,"secp256k1::ellswift"],[16332,"secp256k1::ecdh"],[16333,"secp256k1_sys::recovery"],[16334,"secp256k1::ecdsa::serialized_signature"],[16335,"secp256k1::ecdsa::serialized_signature::into_iter"],[16336,"core::ffi"],[16337,"bitcoin_hashes::hmac"],[16338,"core::str::traits"],[16339,"rand_core::error"],[16340,"core::num::nonzero"],[16341,"getrandom::error"],[16342,"core::default"],[16343,"rand::distributions::uniform"],[16344,"rand::distributions::distribution"],[16345,"rand::rngs::thread"],[16346,"rand::distributions::other"],[16347,"rand::distributions"],[16348,"rand::distributions::bernoulli"],[16349,"rand::distributions::float"],[16350,"rand::distributions::slice"],[16351,"rand::distributions::weighted_index"],[16352,"core::ops::arith"],[16353,"core::num::wrapping"],[16354,"core::time"],[16355,"rand::distributions::weighted::alias_method"],[16356,"rand::seq"],[16357,"rand_core::os"],[16358,"rand::rngs::std"],[16359,"rand::rngs::adapter::reseeding"],[16360,"rand_core::block"],[16361,"rand::rngs::adapter::read"],[16362,"rand::rngs::mock"],[16363,"core::ops::index"],[16364,"rand::seq::index"],[16365,"bitcoin::sign_message::message_signing"],[16366,"alloc::collections::btree::set"],[16367,"bitcoin::taproot::serialized_signature"],[16368,"bitcoin::taproot::serialized_signature::into_iter"],[16369,"alloc::sync"],[16370,"rusqlite::transaction"],[16371,"bdk_core"],[16372,"bdk_core::spk_client"],[16373,"std::collections::hash::set"],[16374,"bitcoin"],[16375,"bitcoin::crypto"],[16376,"bitcoin_units::amount::serde::as_btc"],[16377,"bitcoin_units::amount::serde::as_btc::opt"],[16378,"bitcoin_units::amount::serde::as_sat"],[16379,"bitcoin_units::amount::serde::as_sat::opt"],[16380,"base58ck"],[16381,"base64"],[16382,"bitcoin::blockdata"],[16383,"bitcoin::blockdata::locktime"],[16384,"bitcoin::blockdata::opcodes::all"],[16385,"bitcoin_hashes::cmp"],[16386,"serde_derive"],[16387,"serde"],[16388,"bitcoin_hashes::serde_macros"],[16389,"bitcoin::merkle_tree"],[16390,"bitcoin::network::as_core_arg"],[16391,"bitcoin::policy"],[16392,"secp256k1::constants"],[16393,"rand"],[16394,"rand::distributions::weighted"],[16395,"rand::rngs"],[16396,"bitcoin::sign_message"]],"i":[0,0,0,0,0,0,0,0,0,0,15,0,0,58,0,0,0,0,0,0,0,0,0,0,0,15,1,2,3,5,6,13,2,2,2,2,0,0,17,11,6,17,65,5,6,11,13,23,33,1,15,16,17,2,2,18,65,5,6,11,13,23,33,1,15,16,17,2,18,16,5,6,11,13,1,15,16,17,2,18,5,6,11,13,1,15,16,17,2,18,15,5,6,15,16,2,23,23,23,23,23,23,23,23,33,6,3,3,15,6,1,5,6,13,1,23,33,18,38,5,6,1,15,2,38,2,5,6,11,1,15,16,17,2,11,5,5,6,6,1,1,15,15,16,16,17,17,2,2,11,13,5,6,11,13,1,1,15,16,17,2,2,2,2,65,5,5,5,5,6,6,11,13,13,23,23,23,33,33,33,1,15,16,17,2,2,18,11,2,2,11,2,2,2,2,11,58,5,6,11,15,2,5,11,5,1,2,0,0,11,65,5,6,11,13,23,33,1,15,16,17,2,18,65,18,23,33,65,11,18,58,15,16,64,16,16,11,0,0,13,64,0,11,18,18,65,18,18,16,5,6,15,16,2,11,11,11,0,0,13,0,5,6,1,15,2,16,0,0,64,2,5,6,11,13,1,15,16,17,2,18,2,23,23,23,23,23,23,23,23,33,1,2,1,65,18,1,1,65,5,6,11,13,23,33,1,15,16,17,2,18,65,5,6,11,13,23,33,1,15,16,17,2,18,0,17,16,13,13,65,5,6,11,13,23,33,1,15,16,17,2,18,1,65,5,6,11,13,23,33,1,15,16,17,2,18,757,758,757,0,0,144,145,144,145,0,129,134,134,134,28,0,0,134,0,0,150,129,144,0,126,126,0,0,0,0,0,0,27,78,129,79,126,148,148,148,148,148,79,27,78,31,27,78,129,79,79,147,135,0,134,134,134,139,134,0,0,144,145,144,145,27,78,27,78,0,0,88,88,88,88,88,134,0,0,0,0,135,28,134,27,134,0,0,0,0,0,0,28,144,145,144,145,0,0,0,0,0,0,0,0,0,0,147,28,28,135,0,0,0,0,0,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,0,79,0,0,0,0,0,0,0,0,0,0,0,0,27,78,129,79,126,148,78,27,78,79,80,27,78,79,81,0,87,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,0,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,106,81,106,106,26,26,106,81,81,26,81,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,89,89,90,90,91,91,32,32,92,92,93,93,94,94,106,106,26,26,95,95,95,96,96,96,25,25,97,97,98,98,98,99,99,99,100,100,101,101,102,102,28,103,103,104,104,105,105,26,87,87,87,104,119,31,0,0,0,120,120,0,134,27,78,129,81,79,88,135,87,89,89,90,90,91,91,32,32,92,92,93,93,94,94,120,130,106,26,26,136,137,95,95,96,96,25,25,97,97,138,119,126,139,31,133,140,141,98,98,99,99,142,143,100,100,101,101,110,102,102,144,145,146,147,28,80,148,149,150,112,103,103,113,104,104,114,105,105,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,106,26,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,106,26,106,28,126,120,126,126,120,78,27,78,79,27,78,129,79,27,78,129,79,129,27,78,27,78,79,130,133,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,106,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,100,101,110,102,144,147,28,80,148,149,112,103,113,104,114,105,81,120,150,141,143,120,31,31,120,31,0,27,89,90,32,92,93,120,25,97,138,126,139,133,140,146,149,103,120,26,119,139,31,27,89,90,32,92,93,120,106,26,25,97,138,119,126,139,31,133,140,146,149,103,106,106,81,27,78,26,138,119,126,133,110,149,112,113,114,26,26,27,78,27,78,27,129,81,79,87,89,90,91,32,92,93,94,120,106,26,95,96,25,97,138,119,126,139,31,133,141,98,99,142,143,100,101,102,144,145,28,80,148,149,150,150,103,104,105,150,148,148,27,78,27,78,27,27,78,79,79,27,78,79,106,0,126,119,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,110,102,112,103,113,104,114,105,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,106,106,26,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,81,134,134,27,27,78,78,129,129,81,81,79,79,88,88,135,135,87,87,89,89,90,90,91,91,32,32,92,92,93,93,94,94,120,120,130,130,106,106,26,26,136,136,137,137,95,95,96,96,25,25,97,97,138,138,119,119,126,126,139,139,31,31,133,133,140,140,141,141,98,98,99,99,142,142,143,143,100,100,101,101,110,110,102,102,144,144,145,145,146,146,147,147,28,28,80,80,148,148,149,149,150,150,112,112,103,103,113,113,104,104,114,114,105,105,0,26,150,146,150,150,150,150,150,129,129,89,150,150,150,150,150,150,150,150,106,134,134,27,27,78,78,129,129,81,81,81,79,79,88,88,135,87,87,89,89,89,89,90,90,90,90,91,91,91,91,32,32,32,32,92,92,92,92,93,93,93,93,94,94,94,94,120,130,130,106,106,106,106,26,26,26,26,136,137,137,95,95,95,95,96,96,96,96,25,25,25,25,97,97,97,97,138,138,119,126,126,126,126,139,31,133,140,141,141,98,98,98,98,99,99,99,99,142,142,143,143,100,100,100,100,101,101,101,101,102,102,102,102,144,144,145,145,146,147,28,28,80,80,80,80,148,148,148,148,149,149,149,150,150,103,103,103,103,104,104,104,104,105,105,105,105,106,27,78,143,134,27,78,129,81,81,81,81,81,81,79,88,135,135,87,89,89,90,90,91,91,91,91,32,32,32,32,32,32,92,92,92,93,93,93,94,94,120,130,130,130,26,26,26,26,26,136,137,95,95,95,95,95,96,96,96,96,96,25,25,25,25,97,97,97,97,138,119,126,126,126,139,31,133,133,133,133,133,140,140,140,140,140,140,141,141,141,98,98,98,98,98,98,99,99,99,99,142,143,100,100,101,101,110,102,102,144,144,145,146,147,147,28,80,148,148,149,150,112,103,103,103,113,104,104,104,104,104,114,105,105,105,105,126,80,148,146,27,78,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,106,26,106,28,148,126,145,149,144,28,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,27,78,149,146,126,26,126,80,148,149,27,26,105,81,79,80,148,28,149,104,79,141,142,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,27,78,129,129,129,87,103,104,126,126,81,81,89,90,91,32,92,93,94,95,96,25,97,133,141,141,98,99,142,143,100,101,102,103,104,105,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,145,134,27,78,129,81,79,88,87,89,90,91,32,92,93,94,137,95,96,25,97,138,126,141,98,99,142,143,100,101,102,144,145,28,150,103,104,105,27,78,27,78,126,80,148,149,150,79,79,79,143,79,87,79,79,143,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,106,26,136,137,95,96,25,97,138,119,126,139,31,133,141,98,99,142,100,101,110,102,144,145,147,28,80,148,149,150,112,103,113,104,114,105,0,120,146,89,90,91,32,92,93,94,106,106,106,106,106,106,106,95,96,25,97,133,98,99,143,100,101,102,103,104,105,141,143,31,150,106,106,106,106,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,26,26,133,106,87,31,31,106,133,31,126,126,31,147,148,106,78,138,106,106,106,106,106,136,106,136,106,136,78,106,106,126,87,87,126,87,126,141,87,106,81,133,150,0,133,119,106,133,31,80,28,87,148,148,148,0,148,148,106,139,106,139,27,78,129,79,79,27,78,79,78,0,143,106,26,136,138,133,141,143,26,26,26,26,26,26,26,26,141,143,26,133,31,138,31,150,0,106,87,87,87,87,87,87,136,133,87,136,87,136,133,106,26,141,142,87,136,28,0,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,106,106,26,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,100,101,110,102,144,147,28,80,148,149,112,103,113,104,114,105,0,78,0,119,136,150,126,126,126,126,126,126,126,126,126,126,126,126,0,87,141,142,81,143,133,133,26,26,26,26,141,142,106,27,78,27,78,87,26,26,79,26,87,106,87,139,31,119,133,119,119,27,78,27,78,27,78,27,78,27,129,81,81,79,87,89,90,91,32,92,93,94,120,130,106,26,95,96,25,97,138,119,126,139,31,133,141,98,99,142,143,100,101,102,144,145,28,80,148,149,150,150,103,104,105,150,150,0,150,150,150,0,78,139,133,140,150,27,78,79,80,27,78,79,27,78,79,79,81,0,133,133,133,106,133,87,106,80,148,27,78,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,106,141,142,143,148,149,126,28,137,27,78,81,141,81,141,106,79,80,148,137,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,106,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,106,106,106,81,141,87,89,90,91,32,92,93,94,95,96,25,97,98,99,100,101,102,103,104,105,126,81,141,27,78,129,129,129,105,81,141,27,141,134,27,78,129,81,79,88,87,89,90,91,32,92,93,94,130,106,26,137,95,96,25,97,138,126,141,98,99,142,143,100,101,102,144,145,28,80,148,150,103,104,105,27,78,27,78,80,145,130,78,79,79,133,143,148,79,81,31,120,119,31,134,27,27,78,78,129,129,129,129,81,79,79,79,79,88,135,87,89,90,91,32,92,93,94,120,130,26,136,137,137,137,137,137,95,96,25,97,138,119,126,126,126,126,139,31,133,140,141,98,99,142,142,143,100,101,110,102,144,145,146,147,28,28,28,80,148,149,150,112,103,113,104,114,105,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,81,31,31,120,31,138,146,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,106,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,27,78,27,78,27,78,150,78,150,150,150,139,81,141,142,136,31,150,138,31,134,27,78,129,81,79,88,135,87,89,90,91,32,92,93,94,120,130,26,136,137,95,96,25,97,138,119,126,139,31,133,140,141,98,99,142,143,100,101,110,102,144,145,146,147,28,80,148,149,150,112,103,113,104,114,105,120,139,31,26,119,87,120,133,106,141,142,141,142,106,31,150,0,0,0,196,196,216,0,118,196,0,196,0,0,196,0,135,0,0,0,196,0,88,228,88,228,0,88,88,88,0,135,228,135,0,196,0,189,189,196,189,196,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,189,189,216,216,240,240,196,196,241,241,242,242,243,243,244,244,245,245,246,246,117,117,228,228,0,189,189,216,216,240,240,196,196,241,241,242,242,243,243,244,244,245,245,246,117,228,189,189,189,189,216,216,240,196,196,196,196,196,196,196,196,196,196,196,241,242,243,244,245,246,117,228,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,243,245,244,246,117,228,189,216,240,196,241,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,189,216,240,196,241,242,243,244,245,246,117,228,759,760,761,196,196,216,0,196,0,196,0,196,0,196,0,0,0,0,196,0,189,189,196,189,196,0,134,134,134,0,0,0,180,180,134,134,134,180,134,180,0,134,134,0,180,180,163,180,163,252,180,163,180,163,180,180,180,180,180,163,163,180,180,180,180,180,180,180,163,180,163,0,163,180,180,163,180,163,180,163,180,163,180,163,180,163,0,0,0,0,257,257,257,258,257,258,258,0,0,0,0,0,0,0,0,0,0,249,0,249,0,0,249,0,75,75,167,167,75,167,167,167,75,167,167,75,75,167,167,167,75,75,75,75,167,75,249,262,167,167,75,75,249,262,167,167,75,75,167,75,167,75,249,262,167,75,167,75,249,262,167,75,167,75,167,75,75,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,75,75,0,0,167,167,167,167,75,167,75,167,75,167,75,167,75,167,167,167,167,167,167,167,167,167,167,167,0,0,0,249,262,167,167,167,167,167,167,75,75,75,75,75,249,249,262,262,167,167,75,75,0,167,167,75,75,75,75,75,75,167,167,75,167,167,75,75,75,75,75,167,167,75,75,167,167,167,249,249,262,262,167,75,75,249,249,249,249,249,262,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,75,75,75,75,75,75,75,167,167,75,75,75,75,75,75,167,75,167,75,75,75,75,75,75,75,75,75,75,167,75,167,167,75,167,75,167,75,75,249,262,167,75,167,167,75,75,167,75,167,75,167,167,167,167,167,75,167,75,262,75,167,167,75,75,75,167,167,75,167,75,167,167,167,167,167,167,167,75,75,75,167,75,167,167,75,167,75,167,167,75,75,167,167,75,75,75,167,75,167,75,167,167,167,75,167,167,75,167,167,75,167,75,249,167,167,167,167,75,75,75,167,249,262,167,75,75,167,75,249,262,75,167,75,249,262,167,75,249,262,167,75,167,75,167,75,167,75,167,249,262,167,75,249,262,167,75,167,75,167,167,167,167,75,75,167,249,0,249,0,0,249,0,280,279,280,279,280,279,280,279,280,279,280,280,279,279,280,280,279,279,280,279,280,280,279,279,280,279,280,279,280,279,280,279,280,279,280,279,309,0,306,309,0,0,0,305,305,305,305,304,306,0,304,305,306,304,305,306,304,305,306,304,305,306,309,0,309,0,0,0,309,309,309,0,0,0,309,0,0,0,309,309,0,0,304,305,306,304,304,305,305,306,306,304,304,305,305,306,306,304,305,306,306,304,305,306,0,0,306,304,305,306,304,305,306,304,305,306,304,305,306,304,305,306,304,305,306,0,0,0,0,0,313,0,313,0,313,0,0,313,312,312,313,312,313,312,312,312,313,312,312,313,313,312,313,313,312,313,312,313,312,312,313,312,312,313,312,313,312,313,312,313,0,314,314,314,314,314,314,314,314,314,314,314,0,309,0,309,0,0,0,0,0,317,317,317,315,316,317,318,315,316,317,318,315,316,317,315,316,317,309,315,309,309,309,309,311,316,309,310,316,309,309,317,318,317,317,318,318,315,316,317,318,315,316,317,318,0,315,316,317,318,315,316,315,316,317,315,316,317,318,315,316,317,318,315,316,317,318,315,316,317,318,316,316,316,0,0,0,0,0,0,0,0,0,0,0,0,309,309,0,309,309,309,309,309,309,309,309,0,319,319,319,319,319,319,319,319,319,319,319,319,0,0,0,322,324,322,324,321,322,322,322,324,322,322,324,324,322,324,322,324,322,324,322,324,322,324,322,324,322,324,322,324,229,0,0,0,229,346,346,0,333,229,0,229,0,0,229,0,0,334,229,346,229,0,229,229,229,229,346,229,0,229,333,229,229,229,229,346,334,335,229,229,229,335,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,325,229,325,229,325,330,331,332,333,334,335,229,325,330,331,332,333,334,335,325,327,325,229,325,330,331,332,333,334,229,325,330,331,332,333,334,325,330,331,332,0,229,229,229,229,229,0,0,0,0,0,0,0,0,0,0,229,325,330,331,332,333,334,229,229,325,325,330,330,331,331,332,332,333,333,334,334,337,229,229,325,325,333,333,334,334,335,335,229,229,325,330,331,332,333,333,334,334,334,335,335,335,229,229,229,325,330,331,332,0,229,325,330,331,332,333,334,335,325,325,325,325,325,229,325,325,325,229,229,229,229,229,325,325,325,330,331,332,0,346,0,333,334,335,229,229,229,229,229,229,325,229,325,330,331,332,333,334,229,325,333,334,335,229,229,229,229,229,229,229,229,229,229,229,229,325,330,331,332,333,334,335,229,325,330,331,332,333,334,335,229,325,330,331,332,333,334,335,229,325,330,331,332,333,334,335,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,346,0,0,346,0,346,349,0,0,346,349,347,350,348,347,350,348,347,348,347,348,347,348,348,347,348,348,347,347,348,347,350,348,347,348,348,348,350,348,347,350,350,349,347,350,348,350,348,346,350,348,347,350,350,348,347,350,348,347,350,348,347,349,347,350,348,347,0,0,339,0,0,0,354,355,0,357,0,0,339,356,357,357,354,356,356,354,359,356,354,0,355,0,0,0,354,359,354,0,0,354,352,363,361,360,351,353,354,355,339,356,357,336,358,359,352,363,361,360,351,353,354,355,339,356,357,336,358,359,351,353,354,355,339,356,357,336,358,359,354,355,339,356,357,336,358,359,336,360,351,353,336,354,355,339,356,357,336,358,359,354,354,355,355,339,339,356,356,357,357,336,336,358,358,359,359,351,360,351,353,354,354,355,355,339,339,356,356,357,357,336,336,358,358,359,359,352,363,361,360,351,353,354,354,354,354,354,355,355,355,339,339,339,356,357,336,358,358,359,360,353,360,351,353,352,363,361,360,351,353,354,355,339,356,357,336,358,359,352,363,361,352,363,361,352,361,360,351,353,353,352,363,361,360,360,351,352,363,361,354,355,339,356,357,336,358,359,354,355,339,356,357,336,358,359,354,355,339,356,357,336,358,359,352,363,361,352,363,361,360,351,353,354,355,339,356,357,336,358,359,352,363,361,360,351,353,354,355,339,356,357,336,358,359,352,363,361,360,351,353,354,355,339,356,357,336,358,359,360,360,351,351,351,352,363,361,360,351,353,354,355,339,356,357,336,358,359,360,351,353,0,0,0,0,0,367,365,364,366,345,367,365,364,366,345,345,345,345,345,345,345,345,345,367,365,364,366,345,367,365,364,366,345,367,365,364,366,367,365,364,366,367,365,364,366,345,367,365,364,366,367,365,364,366,345,367,365,364,366,367,365,364,366,345,367,365,364,366,345,367,365,364,366,345,367,365,364,366,345,345,0,0,340,368,368,340,0,340,368,340,368,340,368,340,368,340,368,340,340,368,368,340,340,368,368,340,368,368,368,340,368,340,368,340,368,340,368,340,368,340,368,340,368,340,368,0,0,0,0,343,0,0,343,0,0,343,343,0,343,326,329,341,342,343,326,329,341,342,343,343,343,343,343,343,343,343,326,329,341,342,343,326,329,341,342,343,326,329,341,342,326,329,341,342,326,329,341,342,326,329,341,342,326,329,341,342,326,329,341,342,343,343,343,326,329,341,342,326,329,341,342,343,326,329,341,342,343,326,329,341,342,343,326,329,341,342,343,0,0,0,0,0,328,338,370,328,338,370,327,328,338,370,328,338,370,328,338,370,328,328,338,338,370,370,337,328,338,370,328,338,370,328,338,370,328,338,370,328,338,370,370,328,338,370,328,338,370,328,338,370,328,338,370,328,338,370,328,338,370,328,338,370,328,338,370,337,362,0,0,362,362,0,0,0,372,362,372,362,372,362,372,362,372,362,372,372,362,362,372,372,362,362,372,362,372,362,0,0,372,362,372,362,372,362,372,362,372,362,372,362,0,0,372,362,0,0,373,373,0,0,373,373,250,373,250,373,250,373,250,373,0,0,0,0,0,0,0,0,0,0,0,250,373,250,250,373,373,250,250,373,373,250,250,373,373,373,373,373,250,373,250,373,250,373,250,373,250,373,250,373,250,373,250,373,0,0,0,0,374,0,0,0,374,266,266,266,266,266,264,266,266,376,378,374,264,266,266,266,375,376,377,378,374,264,266,266,266,375,376,377,378,266,374,264,266,375,376,377,378,374,264,266,375,376,377,378,264,266,375,376,378,264,266,375,376,378,375,378,264,266,375,376,378,266,266,374,264,266,375,376,377,378,374,374,264,264,266,266,375,375,376,376,377,377,378,378,374,374,264,266,266,266,266,375,376,377,377,378,374,374,264,266,266,266,375,376,377,378,375,266,378,266,264,266,375,376,378,375,264,266,376,374,264,266,375,376,377,378,266,266,375,264,266,375,376,378,375,266,375,374,377,266,374,264,266,375,376,377,378,374,266,377,378,374,264,266,266,375,376,377,378,374,264,266,375,376,377,378,264,374,264,266,375,376,377,378,374,264,266,375,376,377,378,266,0,0,0,0,0,0,0,0,0,0,382,382,380,381,380,380,380,385,386,381,387,384,382,383,380,385,386,381,387,384,382,383,383,383,383,383,383,383,383,380,381,384,382,382,383,380,385,386,381,387,384,382,382,382,383,380,385,386,381,387,384,382,383,385,386,383,385,386,383,380,385,386,381,387,384,383,383,387,382,383,382,380,385,386,381,387,384,382,383,380,385,386,381,387,384,382,383,380,385,386,381,387,384,382,383,380,385,386,381,387,384,382,383,384,291,291,0,0,0,0,0,0,0,0,0,0,282,291,0,291,0,291,291,291,291,0,282,291,291,291,0,0,0,388,389,388,388,389,389,388,389,388,389,388,388,389,389,282,281,390,388,388,388,389,389,389,391,172,282,281,291,392,390,388,388,388,389,389,389,391,172,282,281,291,392,391,172,762,763,764,765,391,172,281,762,763,764,765,391,172,281,172,172,388,389,391,172,282,281,291,392,388,389,391,172,282,281,291,392,388,389,172,282,281,391,172,389,281,762,763,764,765,391,172,391,172,388,389,391,172,282,281,391,172,388,389,391,172,282,281,291,392,388,388,389,389,391,391,172,172,282,282,281,281,291,291,392,392,281,391,172,388,388,388,388,389,389,389,389,391,391,172,172,282,282,281,281,291,291,392,392,390,388,388,388,389,389,389,391,172,282,282,281,281,281,291,291,291,291,291,392,282,388,389,281,282,172,388,389,391,172,282,281,391,281,388,389,172,282,281,391,172,282,388,389,281,390,388,389,391,172,282,281,291,392,281,394,281,390,390,281,392,388,389,281,282,281,282,388,389,281,281,762,763,764,765,391,172,391,390,281,762,763,764,765,391,172,388,389,172,282,281,764,765,391,762,763,172,388,389,391,172,282,281,291,390,388,389,391,388,389,391,172,282,281,291,392,391,172,388,389,391,172,282,281,291,392,281,172,390,390,388,388,389,389,391,172,282,281,291,392,390,388,389,391,172,282,281,291,392,390,388,389,391,172,282,281,291,392,390,388,389,391,172,282,281,291,392,391,172,766,767,0,0,0,0,0,0,0,0,0,0,0,396,396,0,0,0,0,395,121,121,395,54,395,0,121,121,0,0,0,0,54,54,54,395,121,396,54,395,121,396,54,395,121,396,54,395,121,396,54,395,54,395,54,54,395,395,54,395,54,54,54,395,121,396,54,54,395,395,121,121,396,396,54,395,121,121,396,396,54,395,121,121,396,396,395,54,395,120,54,395,121,396,395,54,54,54,395,54,54,395,121,396,54,54,395,54,395,121,396,121,396,54,395,121,396,54,395,121,396,120,54,395,121,396,54,54,54,395,121,396,54,124,0,0,0,0,0,0,0,0,0,124,0,0,124,0,0,124,124,124,0,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,0,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,0,0,0,125,0,0,0,0,211,212,211,212,0,0,125,125,0,211,125,211,397,212,398,399,125,211,397,212,398,399,125,125,125,125,211,397,212,398,399,125,211,397,212,398,399,125,211,212,125,125,211,212,125,211,397,212,398,399,125,211,211,397,397,212,212,398,398,399,399,125,125,211,211,397,397,212,212,398,398,399,399,125,125,211,397,397,212,398,398,399,125,125,125,125,211,212,125,125,211,212,125,211,212,125,125,125,211,212,125,211,397,212,398,399,125,125,125,125,125,125,211,212,125,125,125,125,125,125,125,125,125,125,125,125,125,211,212,125,397,398,399,211,212,125,211,397,212,398,399,125,211,397,212,398,399,125,211,211,211,211,397,212,212,212,212,398,399,125,125,125,125,211,397,212,398,399,125,211,397,212,398,399,125,211,397,212,398,399,125,127,0,0,0,0,0,402,403,402,403,127,0,127,0,402,403,127,402,403,191,127,404,405,406,402,403,191,127,404,405,406,127,127,127,402,403,191,127,404,405,406,402,403,191,127,404,405,406,402,403,402,403,402,403,127,404,402,403,191,127,404,405,406,402,402,403,403,191,191,127,127,404,404,405,405,406,406,402,402,403,403,191,191,127,127,404,404,405,405,406,406,402,402,403,191,127,127,127,127,404,405,406,403,127,127,402,127,403,127,403,127,127,402,403,402,403,127,405,406,402,403,191,127,404,405,406,127,127,127,127,127,127,127,127,191,402,403,127,127,127,127,127,127,127,127,127,127,127,127,127,402,403,127,405,406,402,403,127,402,403,191,127,404,405,406,127,402,403,191,127,404,405,406,402,402,402,402,403,403,403,403,191,127,127,404,405,406,402,403,191,127,404,405,406,402,403,191,127,404,405,406,402,403,402,403,191,127,404,405,406,0,0,132,131,132,0,0,0,0,0,0,132,132,132,132,132,131,0,131,132,131,132,131,132,131,132,131,131,132,131,131,132,132,131,132,131,132,131,131,132,131,131,132,131,132,131,132,131,132,131,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0,408,408,165,0,165,0,0,0,0,0,0,408,408,0,122,115,115,115,283,115,283,283,115,115,283,122,209,208,123,122,165,209,208,115,283,283,407,408,123,122,165,209,208,115,283,283,407,408,283,283,122,165,209,208,283,407,408,122,165,209,208,283,407,408,115,283,122,283,283,283,115,122,165,115,283,407,408,122,122,165,165,115,115,283,283,407,407,408,408,283,122,122,165,209,208,115,283,407,407,408,408,123,122,122,165,209,208,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,283,407,408,408,408,115,283,115,115,115,115,115,115,115,115,410,407,123,122,165,209,208,283,407,408,122,123,209,208,123,209,208,122,122,115,283,122,115,283,122,283,123,209,208,123,123,208,123,165,115,283,283,283,165,122,122,122,122,122,122,122,122,0,0,0,283,283,165,123,209,208,407,408,122,165,209,208,115,283,407,408,122,407,408,123,209,208,283,123,122,165,209,208,115,115,283,283,407,408,123,122,165,209,208,283,407,408,123,122,165,209,208,115,283,407,408,123,122,165,209,208,283,407,408,283,0,0,0,0,214,214,0,0,0,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,214,412,0,411,412,0,0,411,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,0,411,412,247,411,412,247,411,412,247,411,412,247,411,412,247,411,411,412,412,247,247,411,411,412,412,247,247,411,411,411,411,412,412,412,247,411,412,247,247,411,412,411,412,247,411,412,247,411,412,247,411,412,247,411,412,247,411,412,247,414,0,0,0,416,0,0,417,417,417,417,417,0,0,416,414,0,0,0,0,414,0,414,414,0,414,234,235,415,416,417,414,234,235,415,416,417,414,234,235,415,416,417,414,234,235,415,416,417,416,416,416,416,0,414,234,235,415,416,414,414,234,234,235,235,415,415,416,416,414,414,234,234,235,235,415,415,416,416,417,414,414,234,234,235,235,415,416,417,417,417,417,416,415,31,414,234,235,415,416,417,416,415,31,417,416,31,416,0,0,119,139,119,119,416,414,234,235,415,414,234,235,415,416,417,414,234,235,415,416,414,234,235,415,416,417,414,234,235,415,416,417,138,414,234,235,415,416,417,139,31,138,414,234,235,415,416,417,417,119,0,0,0,0,213,213,213,213,213,213,213,213,213,213,213,213,213,116,421,0,0,0,116,421,0,116,0,116,116,116,116,421,0,116,116,116,116,116,116,116,421,116,421,116,116,418,418,419,0,0,116,420,420,420,420,420,420,420,420,420,420,0,116,421,421,116,116,116,116,116,421,421,116,421,421,116,116,116,116,116,0,116,116,116,423,423,423,423,423,423,423,423,423,423,116,0,0,421,116,421,116,421,116,421,116,421,116,421,0,0,425,0,0,0,152,152,0,152,425,152,152,0,152,0,0,152,425,424,152,425,424,424,424,424,418,418,424,419,424,424,0,0,0,420,420,420,420,420,420,420,420,420,420,424,424,424,152,152,425,425,424,152,152,152,425,425,424,152,425,424,424,424,423,423,423,423,423,423,423,423,423,423,0,0,152,425,424,152,425,152,425,424,152,425,424,152,425,424,152,425,424,768,768,769,769,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,770,770,0,771,0,770,0,0,427,772,427,772,427,772,429,429,427,772,770,427,0,427,772,422,772,427,772,427,772,427,772,427,772,0,0,0,0,0,0,0,773,774,432,433,430,431,773,774,432,433,430,431,430,431,430,431,432,430,431,430,430,431,431,432,430,431,773,774,432,432,433,430,431,773,774,432,433,430,431,430,431,433,433,433,430,431,433,773,774,432,433,430,431,773,774,432,433,430,431,773,774,432,433,430,431,773,774,432,433,430,431,435,0,435,435,0,435,0,434,434,434,218,434,434,435,218,434,434,435,218,434,435,218,434,435,434,434,218,218,434,435,218,218,434,434,435,435,218,218,434,434,434,434,435,435,218,434,435,435,435,435,435,218,218,218,434,218,434,435,434,434,218,218,218,218,218,218,435,218,434,435,218,434,435,218,218,434,435,218,434,435,218,434,435,218,434,435,434,200,0,184,0,184,200,0,0,0,184,200,438,439,184,200,438,439,184,200,438,439,184,200,438,439,184,200,438,439,184,184,200,200,438,438,439,439,184,184,200,200,438,438,439,439,184,184,184,200,200,200,438,439,184,200,438,439,184,200,184,200,438,439,184,200,438,439,184,200,438,439,184,200,438,439,184,200,438,439,184,200,438,439,0,0,0,0,0,0,0,0,443,442,442,442,0,0,0,0,0,442,443,442,442,0,0,442,442,442,442,442,0,442,0,0,0,443,443,443,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,0,0,447,0,444,0,0,0,0,0,183,379,0,379,448,183,0,448,447,447,454,455,183,452,426,379,448,454,455,183,452,426,379,448,0,183,452,426,379,448,183,452,426,379,448,448,0,183,452,426,379,448,183,183,452,452,426,426,379,379,448,448,0,183,183,452,452,426,426,379,379,448,0,454,455,183,183,183,452,426,379,379,379,448,444,454,448,447,0,454,455,183,452,426,379,448,454,455,454,455,452,455,426,454,455,454,455,454,455,454,454,0,0,454,454,455,183,452,426,379,0,447,447,183,452,426,379,448,183,452,426,379,447,454,455,454,455,183,452,426,379,448,454,455,183,452,426,379,448,454,455,183,452,426,379,448,454,455,183,452,426,379,448,0,0,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,447,0,0,0,447,447,460,461,460,461,460,460,460,460,461,461,461,461,0,460,461,447,0,460,461,447,447,460,461,447,460,461,460,461,460,461,460,461,0,0,183,379,0,379,0,183,0,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,444,0,0,0,183,379,379,183,444,447,0,444,0,447,447,444,447,447,447,447,0,0,0,775,775,775,775,775,775,775,775,775,775,0,0,231,231,231,231,231,231,462,231,462,231,462,231,462,231,462,231,462,462,462,462,462,462,462,462,462,462,231,231,231,231,462,462,231,231,231,231,231,462,231,231,231,231,231,231,231,231,231,462,231,462,231,462,462,231,231,231,231,462,231,231,462,231,462,231,462,231,462,462,462,0,0,0,40,71,71,0,0,71,71,71,71,71,71,71,0,71,71,71,0,41,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,40,71,0,72,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,482,482,482,0,0,0,0,293,482,0,0,40,488,489,492,487,0,482,0,0,482,0,482,482,482,482,482,0,482,0,482,482,482,0,482,482,482,484,479,492,0,0,481,482,481,482,251,481,482,481,482,292,481,251,484,41,481,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,292,481,482,479,481,485,485,481,481,482,482,481,482,481,482,293,292,292,292,40,292,487,487,488,488,489,489,489,489,489,489,251,488,489,251,487,481,482,482,481,482,481,482,487,481,482,487,292,292,0,492,492,479,481,479,479,479,479,481,479,479,481,479,479,481,479,481,479,479,479,481,479,479,481,479,481,479,481,479,481,479,481,479,481,479,479,481,479,479,479,481,479,479,481,481,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,501,501,501,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,500,517,501,493,494,495,496,294,497,498,499,500,501,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,500,517,500,500,500,500,500,517,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,501,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,494,495,496,294,497,519,493,494,495,496,294,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,0,71,472,473,474,475,476,477,478,0,71,472,473,474,475,476,477,478,0,0,71,0,71,0,71,0,71,0,71,0,71,0,71,0,0,522,522,251,71,71,71,471,251,251,251,251,251,251,251,251,251,251,472,473,474,475,476,477,478,522,522,522,522,522,522,522,522,522,251,251,251,71,251,72,71,71,71,472,473,522,522,476,71,71,474,475,477,478,522,522,522,522,71,71,71,71,71,476,522,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,476,522,477,478,251,251,522,522,522,522,0,524,0,524,524,524,0,0,525,525,525,525,525,525,526,525,526,525,526,525,526,525,526,525,526,526,526,526,526,526,526,526,526,526,525,525,525,525,526,526,525,525,525,525,525,526,525,525,525,525,525,525,525,525,525,526,525,526,526,526,525,525,525,525,526,525,525,526,525,526,525,526,525,526,526,526,0,0,0,7,7,7,7,527,7,7,164,527,527,7,164,527,7,164,527,7,164,527,7,527,7,7,7,164,527,7,527,164,164,164,164,164,164,164,164,164,164,7,7,527,7,7,527,527,164,164,7,7,7,7,527,527,527,527,7,7,7,164,527,7,527,7,7,7,527,164,7,527,7,527,7,527,7,527,7,527,7,527,164,7,164,527,7,164,164,7,527,7,527,7,527,7,164,527,7,527,7,164,527,7,164,527,7,164,527,7,164,527,164,164,0,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,0,0,111,111,111,111,111,111,111,111,111,111,111,111,528,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,0,0,529,529,529,529,529,529,530,529,530,529,530,529,530,529,530,529,529,529,529,529,529,529,529,529,529,530,529,529,529,529,529,529,529,529,529,530,529,530,530,530,529,529,529,529,530,529,529,530,529,530,529,530,529,530,0,0,531,531,531,531,531,531,532,531,532,531,532,531,532,531,532,531,532,532,532,532,532,532,532,532,532,532,531,531,531,531,532,532,531,531,531,531,531,532,531,531,531,531,531,531,531,531,531,532,531,532,532,532,531,531,531,531,532,531,531,532,531,532,531,532,531,532,532,532,0,0,533,533,533,533,533,533,534,533,534,533,534,533,534,533,534,533,533,533,533,533,533,533,533,533,533,534,533,533,533,533,533,533,533,533,533,534,533,534,534,534,533,533,533,533,534,533,533,534,533,534,533,534,533,534,0,0,0,535,535,535,535,535,535,535,536,537,535,536,537,535,536,537,535,536,537,535,537,535,537,537,537,537,537,537,537,537,537,537,535,535,535,535,537,537,535,535,535,535,536,537,535,536,537,535,535,535,535,535,535,535,535,535,535,535,535,535,537,535,536,537,537,537,537,537,535,535,535,535,536,537,535,535,536,537,535,536,537,535,536,537,535,536,537,537,537,537,538,538,538,538,0,538,538,538,0,776,0,0,0,538,538,538,538,538,776,538,538,0,0,0,0,538,0,538,538,0,538,539,541,542,543,544,155,538,539,541,542,543,544,155,538,155,538,538,159,539,539,541,541,542,543,155,539,541,544,539,541,544,539,541,544,539,541,544,539,541,544,539,541,544,539,541,544,539,541,544,539,541,544,539,541,544,538,538,538,159,539,539,541,541,542,543,156,539,539,541,541,544,544,155,155,538,539,541,542,543,544,155,155,155,538,538,0,0,155,538,0,539,541,543,539,541,539,541,542,543,544,155,538,539,541,543,155,539,541,543,155,539,541,539,541,543,153,539,539,541,541,542,543,539,541,542,543,539,539,541,541,153,539,541,542,543,539,541,542,543,539,541,542,543,539,541,542,543,539,541,542,543,542,153,539,541,542,543,539,541,542,543,539,541,542,543,539,541,542,543,543,0,155,153,538,155,539,541,542,543,544,155,538,539,541,542,543,544,155,538,539,541,542,543,544,155,538,539,541,542,543,544,155,538,156,539,539,541,541,544,544,539,539,541,541,156,544,544,198,0,197,84,0,0,548,198,0,198,0,197,197,193,193,0,84,0,0,0,0,0,0,0,193,198,548,0,0,555,555,0,0,0,0,0,0,0,0,185,185,185,185,185,84,82,185,84,233,157,547,193,198,197,548,188,549,550,82,185,84,233,157,547,193,198,197,548,188,549,550,82,185,84,233,157,547,193,198,197,548,188,549,550,82,185,84,233,157,547,193,198,197,548,188,549,550,185,84,233,157,547,185,141,143,82,555,185,157,547,82,185,84,157,547,185,82,82,185,84,233,157,547,193,198,197,548,188,549,550,185,82,82,185,185,84,84,233,233,157,157,547,547,193,193,198,198,197,197,548,548,188,188,549,549,550,550,82,185,84,233,157,157,157,547,193,193,198,198,197,197,548,548,188,188,549,549,550,550,82,185,185,84,233,157,157,547,193,193,193,198,198,198,198,198,198,197,197,197,548,548,548,548,188,549,550,84,157,82,82,82,185,185,185,185,84,82,82,185,84,233,157,547,141,143,82,185,84,233,157,547,193,198,197,548,188,549,550,550,549,143,82,185,185,185,84,233,157,547,82,82,82,82,82,82,82,82,185,547,82,82,185,185,82,185,84,157,157,547,82,82,82,82,82,82,82,82,82,82,82,193,198,197,548,188,555,185,84,157,547,82,185,84,233,157,547,193,198,197,548,188,549,550,157,193,198,197,548,188,549,550,84,82,185,84,84,84,233,157,547,193,198,197,548,188,549,550,82,185,84,233,157,547,193,198,197,548,188,549,550,82,185,84,233,157,547,193,198,197,548,188,549,550,82,82,82,82,185,84,233,157,547,193,198,197,548,188,549,550,185,168,168,168,0,0,168,168,168,168,168,0,168,168,570,570,168,570,168,0,0,570,168,570,168,570,570,570,168,570,570,168,168,570,570,168,168,570,168,168,570,570,146,570,168,570,168,570,168,168,570,168,570,168,146,570,168,570,168,28,147,0,0,0,28,28,147,28,28,0,0,182,571,182,571,182,571,182,571,182,571,182,182,571,571,182,182,571,571,182,571,182,571,182,571,182,571,182,571,182,571,182,571,182,571,182,571,0,0,0,186,572,572,572,0,572,572,572,572,0,0,186,186,0,186,186,186,0,572,572,0,267,186,186,186,186,572,572,572,572,267,572,186,186,186,573,574,267,572,186,186,186,573,574,267,572,186,573,574,267,572,186,573,574,572,186,267,572,186,267,572,186,572,267,572,186,573,574,267,267,572,572,186,186,573,573,574,574,267,572,572,572,572,186,186,186,186,573,573,574,574,267,572,572,186,186,573,574,186,186,186,572,267,572,186,267,572,186,573,574,0,0,0,0,0,0,267,572,186,267,572,267,267,573,574,186,267,572,186,573,574,267,572,186,573,574,572,267,572,186,573,574,267,572,186,573,574,267,572,186,573,574,267,572,186,573,574,0,0,0,575,575,575,575,575,575,575,268,267,575,268,575,268,575,268,575,268,575,268,575,268,575,268,575,575,268,268,575,268,575,268,575,268,575,268,267,268,267,268,268,268,575,268,268,575,268,575,268,575,268,575,268,579,579,579,579,579,579,579,579,579,0,0,579,579,579,579,579,579,579,579,579,579,579,579,579,579,0,0,579,579,0,579,579,579,0,579,579,579,579,579,579,579,579,579,576,576,577,578,579,576,577,578,579,576,577,578,579,576,577,578,579,578,579,578,579,576,578,578,576,578,579,576,577,578,579,576,576,577,577,578,578,579,579,576,576,577,577,578,579,576,577,578,579,576,576,577,578,579,578,578,578,578,577,576,577,578,579,576,577,576,576,576,576,577,578,579,576,576,577,578,579,576,577,578,579,576,577,578,579,777,777,265,265,265,0,0,0,265,265,265,265,265,265,580,581,265,580,581,265,580,581,265,580,581,265,265,580,581,580,581,265,580,581,265,580,581,265,265,580,580,581,581,265,580,581,265,580,581,265,265,580,581,580,581,265,580,581,265,580,581,265,580,581,265,580,581,265,580,581,265,580,581,580,581,265,580,581,778,778,583,0,0,0,583,583,582,583,584,582,583,584,582,583,584,582,583,584,582,583,584,582,584,582,583,584,584,582,583,584,582,582,583,583,584,584,582,582,582,583,584,582,583,584,582,582,583,584,582,583,584,582,583,584,582,583,584,582,582,583,584,582,583,584,0,0,0,0,585,586,587,588,585,586,587,588,585,586,587,588,585,586,587,588,585,586,587,588,586,585,586,587,588,585,586,587,588,585,586,587,588,585,586,587,588,585,585,586,586,587,587,588,588,585,586,587,588,585,586,587,588,585,586,587,588,585,586,587,588,585,586,587,588,585,585,586,587,588,588,585,586,587,588,585,586,587,588,587,585,586,587,588,585,585,586,587,588,0,0,0,0,0,0,590,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,589,590,590,591,591,592,592,593,593,594,594,590,592,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,592,589,591,589,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,589,590,591,592,593,594,596,596,596,596,596,596,596,596,0,0,0,595,596,597,595,596,597,597,595,596,597,595,596,597,595,596,597,595,597,595,596,597,595,596,597,595,595,596,596,597,597,595,596,597,595,596,597,597,595,596,597,597,595,595,597,595,595,595,595,595,595,595,596,597,595,596,597,595,596,597,595,596,597,595,595,595,596,597,0,413,413,413,413,413,413,413,413,413,413,413,413,413,413,413,413,413,413,413,413,0,0,0,0,0,0,0,0,0,0,0,0,169,601,606,393,600,151,151,151,226,602,0,227,0,151,0,0,223,0,0,603,151,151,151,151,151,151,151,151,151,151,151,223,151,151,151,223,0,223,223,169,223,223,151,223,151,151,151,151,223,600,223,0,0,223,151,0,606,0,0,151,393,226,602,223,169,601,601,601,0,0,0,0,0,151,151,223,601,603,151,223,151,151,223,151,601,223,601,151,599,605,151,599,393,226,600,601,602,223,169,603,606,604,605,151,599,393,226,600,601,602,223,169,603,606,604,605,599,393,226,600,601,602,223,169,603,604,605,599,393,226,600,601,602,223,169,603,604,605,226,601,602,604,599,605,599,605,599,604,605,604,605,599,393,226,600,601,602,223,169,603,604,605,599,599,393,393,226,226,600,600,601,601,602,602,223,223,169,169,603,603,604,604,605,605,605,605,151,151,599,393,226,600,600,601,602,223,223,169,169,603,603,606,606,604,604,605,151,151,151,151,151,599,393,226,600,600,600,601,602,223,223,223,223,223,169,169,603,603,606,606,604,604,604,605,604,604,227,599,601,602,604,605,605,605,150,151,599,393,226,600,601,602,223,169,603,606,604,605,605,150,226,601,602,604,605,599,150,605,0,599,605,605,0,599,604,605,605,605,601,151,600,223,169,603,606,599,605,599,605,605,605,605,605,599,604,605,599,393,226,600,601,602,223,169,603,604,605,151,600,223,169,603,606,604,604,151,599,393,226,600,601,602,223,169,603,606,604,605,151,599,393,226,600,601,602,223,169,603,606,604,605,151,599,393,226,600,601,602,223,169,603,606,604,605,599,150,605,150,599,605,150,151,599,393,226,600,601,602,223,169,603,606,604,605,599,605,605,150,779,779,780,780,780,781,782,781,783,784,785,784,785,0,0,0,0,610,613,612,610,613,612,610,612,610,612,610,612,610,610,610,613,612,610,613,612,610,610,613,613,612,612,610,613,612,612,610,613,612,610,612,610,613,612,610,613,612,610,612,610,610,613,612,610,610,610,612,612,610,610,613,612,610,613,612,610,613,612,612,613,610,613,612,0,0,0,546,0,84,546,85,85,85,0,85,85,85,85,85,85,85,85,0,83,0,85,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,171,215,215,171,222,215,171,222,171,171,215,222,561,562,559,568,569,556,215,171,558,83,222,85,561,562,559,568,569,556,215,171,558,83,222,85,561,562,559,568,569,556,215,171,558,83,222,85,561,562,559,568,569,556,215,171,558,83,222,85,561,562,559,568,569,556,171,558,83,222,85,171,171,171,0,546,561,562,559,568,569,556,215,171,215,0,0,0,561,562,559,568,569,556,215,171,558,83,222,85,171,561,561,562,562,559,559,568,568,569,569,556,556,215,215,171,171,558,558,83,83,222,222,85,85,561,562,559,568,569,556,215,171,171,171,558,558,83,222,222,222,85,85,561,562,559,568,569,556,215,215,215,215,171,171,171,171,558,83,83,222,222,222,222,222,85,85,83,222,222,171,215,171,83,171,215,171,222,215,171,171,561,562,559,568,569,556,171,558,83,222,85,0,0,215,83,222,561,562,559,568,569,556,215,171,558,83,222,85,615,215,215,171,215,171,215,215,83,561,562,559,568,569,556,171,558,83,222,85,215,83,83,0,0,215,215,171,171,171,85,83,171,171,83,561,562,559,568,569,556,215,171,558,83,222,85,171,171,171,171,558,222,85,561,562,559,568,569,556,215,171,558,83,222,85,561,562,559,568,569,556,215,171,558,83,222,85,561,562,559,568,569,556,215,171,558,83,222,85,171,561,562,559,568,569,556,215,171,558,83,222,85,215,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,0,618,618,618,618,618,0,0,0,0,566,437,566,437,566,437,566,437,621,622,566,621,621,437,622,566,621,437,621,622,566,621,437,622,566,621,437,622,566,621,437,437,621,437,622,566,621,621,437,437,622,622,566,566,621,621,437,437,622,566,621,621,437,437,622,566,566,621,621,621,437,437,566,437,437,437,622,621,437,566,621,437,622,566,621,437,621,621,621,621,437,622,566,621,621,437,437,566,437,437,0,622,622,566,621,437,621,566,621,437,622,566,621,437,437,437,622,566,621,437,622,566,621,437,622,566,621,437,0,0,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,625,625,0,0,0,617,617,624,617,624,625,617,624,625,617,624,625,617,624,625,617,624,625,617,624,625,617,617,624,624,625,625,617,617,617,624,625,617,624,625,617,617,617,624,617,617,624,625,617,624,625,617,617,624,625,617,617,617,617,624,625,624,617,617,624,625,617,624,625,617,624,625,617,624,625,0,0,0,0,0,0,0,786,787,788,789,0,0,0,0,0,0,0,0,0,786,787,788,789,627,0,627,614,620,107,545,628,627,614,620,107,545,628,614,620,107,545,628,631,551,614,620,107,545,628,631,551,614,620,107,545,628,551,614,620,107,545,628,551,614,620,107,545,628,614,620,107,545,628,614,620,107,545,628,0,614,620,107,545,628,614,620,107,545,628,614,614,620,620,107,107,545,545,628,628,551,614,620,107,545,628,631,551,614,620,107,545,628,628,614,620,107,545,614,620,107,545,628,0,0,614,620,107,545,628,631,551,614,620,107,545,628,631,614,620,107,545,545,0,614,620,107,545,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,551,614,620,107,545,628,631,551,614,620,107,545,628,631,551,614,620,107,545,628,631,551,614,620,107,545,628,0,614,620,107,545,631,551,614,620,107,545,628,0,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,0,0,0,0,0,619,619,619,619,619,0,564,564,629,564,629,0,0,0,0,0,564,564,564,629,564,629,564,629,0,564,564,629,564,629,564,629,564,629,564,443,442,442,442,0,0,0,0,0,442,443,442,632,442,632,633,55,632,632,633,55,632,0,633,55,632,633,55,632,632,633,632,633,633,633,633,633,633,633,633,633,633,442,55,632,55,55,632,632,55,633,633,55,55,632,632,632,633,55,632,442,632,442,632,633,442,632,632,442,632,442,0,0,632,632,632,632,632,443,633,633,55,632,55,443,633,443,633,633,632,0,632,0,442,632,633,55,632,55,632,633,55,632,633,55,632,633,55,632,633,55,632,633,633,635,0,0,0,635,0,0,641,0,635,635,635,0,563,638,635,635,635,635,635,641,641,641,563,563,563,563,635,635,635,638,638,0,0,635,638,0,563,563,641,0,635,635,0,635,637,563,638,635,635,635,635,658,0,0,0,0,0,0,0,653,658,658,0,0,0,0,658,0,0,0,649,650,651,652,653,647,660,654,655,650,656,657,658,659,651,652,653,647,660,654,655,650,656,657,658,659,651,647,647,652,653,654,655,650,656,657,658,659,651,652,653,654,655,650,656,657,658,659,651,652,653,657,658,659,653,653,658,658,652,653,653,647,660,654,655,650,656,657,658,658,659,651,652,653,647,660,654,655,650,656,657,658,659,659,659,651,652,652,653,647,660,654,655,650,656,657,658,659,651,647,647,646,652,656,657,659,659,647,646,652,660,654,654,655,655,650,656,657,659,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,646,649,647,652,653,654,655,650,656,657,658,659,651,653,658,647,652,653,647,660,654,655,650,656,657,658,659,651,652,653,647,660,654,655,650,656,657,658,659,651,652,653,647,660,654,655,650,656,657,658,659,651,0,657,652,653,647,660,654,655,650,656,657,658,659,651,0,0,0,0,644,0,0,0,0,0,0,671,663,666,667,668,669,666,667,668,669,666,667,668,669,666,667,668,669,666,668,666,667,668,669,666,667,668,669,666,667,668,669,645,671,666,666,666,666,666,666,666,666,666,666,666,666,667,668,668,669,671,666,666,666,666,666,666,666,666,666,666,666,666,667,668,668,669,671,666,666,666,666,666,666,666,666,666,666,666,666,667,668,668,669,645,671,666,666,666,666,666,666,666,666,666,666,666,666,668,668,671,666,666,666,666,666,666,666,666,666,666,666,666,666,667,668,669,666,667,668,669,666,667,668,669,666,667,668,669,666,667,668,669,658,658,658,658,0,0,0,0,0,673,673,673,673,673,673,673,673,673,673,0,0,675,0,0,0,641,0,0,0,0,675,676,675,676,676,675,675,676,675,675,563,638,641,641,641,563,563,563,563,646,638,638,675,0,646,563,646,563,641,675,0,563,638,0,0,0,0,678,679,648,678,679,648,678,679,648,678,679,648,678,679,648,678,648,679,679,679,678,679,648,678,679,648,678,679,648,679,679,678,679,648,0,678,679,648,678,679,648,678,679,648,678,679,648,678,679,648,678,679,648,678,679,648,678,679,648,0,0,0,680,682,683,680,682,683,680,680,680,682,680,682,683,683,680,682,683,680,682,683,680,682,680,682,680,682,680,680,683,680,683,682,680,682,683,680,682,683,680,682,683,680,682,683,680,0,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,675,0,0,0,677,677,675,676,675,676,676,675,675,676,675,675,677,677,0,677,677,677,677,677,675,675,677,677,677,677,677,677,0,0,0,686,688,687,686,688,687,686,687,686,687,686,686,688,687,686,686,686,688,687,686,686,688,687,688,687,686,688,687,686,686,686,686,688,687,0,0,688,687,686,687,688,687,686,688,687,686,688,687,686,688,687,686,688,687,0,0,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,0,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,690,144,145,144,145,0,0,144,0,696,0,696,607,693,693,607,0,697,0,0,144,145,144,145,608,690,0,0,607,0,607,0,607,0,0,0,608,697,0,698,0,0,144,145,607,0,144,145,0,0,0,0,698,689,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,690,176,691,692,693,181,195,694,689,607,608,695,696,690,176,691,692,693,181,195,694,689,607,608,695,696,690,176,689,690,176,691,692,693,181,195,694,689,607,608,695,696,690,690,176,176,691,691,692,692,693,693,181,181,195,195,694,694,689,689,607,607,608,608,695,695,696,696,221,690,176,691,691,692,692,693,693,181,181,195,195,694,694,689,607,607,608,608,695,695,696,696,697,697,698,221,690,176,691,692,693,693,181,195,694,689,607,607,607,607,607,607,608,608,608,695,696,696,697,697,697,690,176,689,695,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,221,698,176,221,221,698,221,176,689,695,221,221,690,176,221,691,692,693,181,195,694,607,608,695,696,697,221,221,221,221,690,176,691,692,693,181,195,694,689,607,608,695,696,691,692,693,181,195,694,607,608,695,696,697,221,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,694,698,221,690,176,691,692,693,181,195,694,689,607,608,695,696,697,176,221,0,700,700,700,0,0,700,700,701,700,701,700,701,700,701,701,700,701,700,700,701,701,700,700,701,701,700,700,700,701,701,701,701,700,701,701,701,701,701,701,0,700,701,700,701,700,701,700,701,700,701,700,701,700,701,0,703,712,190,0,704,0,706,707,0,712,703,712,712,703,712,705,712,0,0,0,0,703,706,703,704,0,0,705,0,705,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,702,702,702,704,284,284,284,704,284,714,713,217,705,284,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,714,713,217,705,284,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,217,284,178,702,709,704,177,710,219,711,190,709,178,284,219,284,702,177,284,284,217,284,708,709,704,219,190,284,219,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,217,217,705,705,284,284,178,178,702,702,706,706,707,707,708,708,709,709,704,704,177,177,710,710,219,219,711,711,190,190,703,703,712,712,702,217,705,705,284,178,702,706,706,707,707,708,709,704,177,710,219,711,711,711,711,190,190,190,190,703,703,712,712,714,713,217,705,705,705,705,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,178,702,706,706,707,707,708,709,709,704,177,710,219,711,190,703,703,712,712,190,710,178,217,702,217,284,178,702,708,709,704,177,710,219,711,190,178,219,714,713,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,706,714,713,284,714,713,284,284,284,707,708,284,284,702,177,177,709,177,219,284,0,177,710,219,178,702,177,709,178,709,177,714,713,714,713,709,177,708,178,178,219,217,284,178,702,709,704,177,710,219,711,190,708,177,710,708,178,217,217,284,284,708,709,704,219,219,190,217,0,217,217,219,714,713,705,706,707,703,712,178,711,190,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,705,706,707,711,190,703,712,217,714,713,714,713,217,217,217,705,284,284,284,284,178,702,706,707,708,708,708,709,709,704,177,710,219,711,190,703,712,714,713,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,702,702,714,713,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,219,710,714,713,217,705,284,178,702,706,707,708,709,704,177,710,219,711,190,703,712,702,178,702,0,0,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,717,0,0,716,718,716,716,718,716,718,716,718,716,718,716,716,716,716,716,716,716,716,718,716,716,716,718,716,716,716,718,718,716,716,718,716,718,718,718,716,716,718,716,718,716,716,718,716,718,716,718,716,718,716,718,716,0,0,719,719,719,719,719,719,719,719,719,719,720,719,720,720,720,719,720,720,720,719,720,719,720,720,720,719,719,720,719,719,719,719,719,719,720,720,720,719,720,720,719,720,719,720,720,719,720,719,720,721,0,721,721,721,721,721,0,0,0,0,727,0,0,727,0,723,723,0,726,726,726,726,727,723,726,727,723,726,727,723,726,727,723,726,723,723,727,723,726,727,727,723,726,727,723,723,726,726,726,726,723,726,726,726,727,723,723,726,726,726,726,726,723,726,726,726,726,726,726,726,723,726,726,726,726,726,723,726,726,726,726,726,731,726,723,726,732,726,727,723,727,726,727,723,726,727,723,726,726,726,726,727,723,726,726,726,726,731,726,727,723,790,790,791,791,0,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,733,0,0,735,738,0,0,0,0,738,0,0,735,734,734,734,734,735,734,735,736,739,737,738,734,735,736,739,737,738,734,735,736,739,737,738,734,735,736,739,737,738,735,735,734,734,735,736,739,737,738,734,735,736,736,739,739,737,737,738,738,734,735,735,736,739,737,738,734,734,734,735,735,735,734,734,734,734,739,735,734,734,734,735,736,739,737,738,734,735,734,735,739,735,734,735,734,734,735,736,739,737,738,736,739,737,738,734,735,736,739,737,738,737,734,735,736,739,737,738,734,735,736,739,737,738,739,734,735,736,739,737,738,0,0,0,0,0,744,744,0,0,0,0,0,744,740,741,742,743,744,745,746,747,740,741,742,743,744,745,746,747,740,742,741,743,740,741,742,743,746,747,744,745,744,745,744,745,740,741,742,743,746,747,744,744,744,744,744,745,746,747,740,741,741,742,743,743,744,745,746,747,744,740,742,740,741,742,743,744,745,746,747,741,741,743,741,743,747,741,741,743,741,740,745,745,744,741,745,740,740,745,742,742,745,740,744,745,744,745,745,745,745,740,741,742,743,744,745,746,747,740,741,742,743,744,745,746,747,746,747,740,745,745,740,741,742,743,744,745,746,747,740,740,741,742,743,744,745,746,747,724,0,0,0,751,751,724,724,724,0,0,0,0,0,52,52,724,13,752,724,52,52,52,52,52,52,754,755,52,752,753,751,724,754,755,52,752,753,751,724,52,753,754,754,755,755,52,752,753,724,52,752,753,724,752,753,52,724,752,724,52,52,752,753,751,724,752,752,753,753,751,751,52,52,52,52,752,753,751,751,724,754,755,52,52,752,753,751,724,724,52,52,52,52,52,52,724,52,52,52,52,52,754,755,52,752,753,751,724,754,755,754,755,52,724,724,752,52,52,724,724,52,754,755,52,752,753,724,13,724,52,752,753,724,751,754,755,52,52,52,754,755,52,752,753,751,724,52,52,754,755,52,752,753,751,724,52,752,753,52,52,752,724,13,724,13,724,52,754,755,52,752,753,751,724,754,755,52,752,753,751,724,52,52,52],"f":"``````````````````````````{{bb}b}{{}d}{{{h{f}}}j}{{{h{j}}}j}{{{h{l}}}j}`{{{h{d}}}{{h{c}}}{}}{{{h{d}}}{{h{n}}}}{{{h{d}}}{{h{{Ab{A`}}}}}}{{{h{d}}}{{h{{Ad{A`}}}}}}```{{{h{Af}}}j}``{{{h{c}}}{{h{e}}}{}{}}0000000000020{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000000000`8{{{h{l}}}l}{{{h{Af}}}Af}{{{h{{Aj{c}}}}}{{Aj{c}}}Al}{{{h{b}}}b}{{{h{{An{c}}}}}{{An{c}}}Al}{{{h{{B`{c}}}}}{{B`{c}}}Al}{{{h{Bb}}}Bb}{{{h{d}}}d}{{{h{{Bd{c}}}}}{{Bd{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000{{{An{{h{c}}}}}{{An{c}}}Al}{{{h{j}}{h{j}}}Bh}{{{h{l}}{h{l}}}Bh}{{{h{{An{c}}}}{h{{An{c}}}}}BhBj}{{{h{{B`{c}}}}{h{{B`{c}}}}}BhBj}{{{h{d}}{h{d}}}Bh}{Bl{{C`{{Bn{d}}}}}}{Bl{{C`{{Bn{Cb}}}}}}{Bl{{C`{{Bn{Cd}}}}}}{Bl{{C`{{Bn{Cf}}}}}}{Bl{{C`{{Bn{Ch}}}}}}{Bl{{C`{{Bn{{Cl{Cj}}}}}}}}{Bl{{C`{{Bn{Cn}}}}}}{Bl{{C`{{Bn{D`}}}}}}{Bl{{C`{{Db{c}}}}}{fDd}}{{{h{l}}}Df}{{{h{f}}}Df}0{{{h{{An{c}}}}}{{Dh{Df}}}f}``{{}j}{{}l}{{}{{Aj{c}}}{}}{{}b}{{{h{{Bn{c}}}}}{{h{e}}}{}{}}{{{h{{Db{c}}}}}{{h{e}}}{}{}}{{{h{{Bd{c}}}}}{{h{c}}}{{Dj{{Cl{Cj}}}}}}{{{h{Dl}}}d}{c{{Dn{j}}}E`}{c{{Dn{l}}}E`}{c{{Dn{b}}}E`}{c{{Dn{{An{e}}}}}E`{BjEb}}{c{{Dn{d}}}E`}{{{h{Dl}}}Ed}{{}c{}}{{{h{j}}{h{j}}}Ef}{{{h{l}}{h{l}}}Ef}{{{h{Af}}{h{Af}}}Ef}{{{h{b}}{h{b}}}Ef}{{{h{{An{c}}}}{h{{An{c}}}}}EfEh}{{{h{{B`{c}}}}{h{{B`{c}}}}}EfEh}{{{h{Bb}}{h{Bb}}}Ef}{{{h{d}}{h{d}}}Ef}5{{{h{c}}{h{e}}}Ef{}{}}0000000000000{{Afc}{{Dn{AfAf}}}{{El{}{{Ej{j}}}}}}{{{h{Ah{Aj{c}}}}{Aj{c}}}BfBj}{{{h{j}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{l}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Af}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{{Aj{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{b}}{h{AhEn}}}Fd}0{{{h{{An{c}}}}{h{AhEn}}}FdFb}{{{h{{B`{c}}}}{h{AhEn}}}FdFb}{{{h{Bb}}{h{AhEn}}}Fd}{{{h{d}}{h{AhEn}}}Fd}000{cc{}}0{{{Ff{DfD`}}}j}{Bbj}{{{Ff{{h{Df}}{h{D`}}}}}j}3{Bbl}44{{{Fh{c}}}{{Aj{c}}}{}}5{c{{Bn{c}}}{}}{Fjc{}}0{c{{Db{c}}}{}}88888{nd}99{c{{Dn{Af{Dh{Af}}}}}{{El{}{{Ej{j}}}}}}{cd{}}0{{{h{Fl}}Df}Af}3{{{h{{Ad{A`}}}}}{{Dn{dFn}}}}0{{{h{G`}}}{{Dn{dc}}}{}}{{{h{Af}}Df}{{Dh{Af}}}}{{{h{{Gd{}{{Gb{c}}}}}}}{{Dn{jc}}}Fb}{{{h{j}}{h{Ahc}}}BfGf}{{{h{l}}{h{Ahc}}}BfGf}{{{h{Af}}}D`}{{{h{{An{c}}}}{h{Ahe}}}BfGhGf}{{{h{d}}{h{Ahc}}}BfGf}`{{{h{Af}}}Df}``{{{h{d}}c}{{h{e}}}{{Gj{{Ad{A`}}}}}{}}``{{Afj}Af}{ce{}{}}000000000000{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}0{{{Bn{c}}}c{}}{{{Db{c}}}c{}}3{Af}4{{{h{{Gd{}{{Gb{c}}}}}}jj}{{Dn{{Dh{Ef}}c}}}Fb}{{{h{{An{c}}}}}Ef{}}{{{h{{B`{c}}}}Df}Eff}{{{h{H`}}}Ef}1`{{{h{Af}}}Hb}``{{{Aj{c}}g}{{Aj{e}}}BjBj{{Hf{c}{{Hd{e}}}}}}{{{h{AhH`}}H`}Bf}`{jAf}{c{{Bd{c}}}{{Dj{{Cl{Cj}}}}}}{{ce}{{Bd{c}}}{{Dj{{Cl{Cj}}}}}{{Hh{Df}}}}{{{h{AhHb}}}Dh}{{{h{Ah{Bd{c}}}}}{{Dh{e}}}{{Dj{{Cl{Cj}}}}}{}}{{{h{Ah{Bd{c}}}}Hj}{{Dh{e}}}{{Dj{{Cl{Cj}}}}}{}}`{{{h{j}}{h{j}}}{{Dh{Bh}}}}{{{h{l}}{h{l}}}{{Dh{Bh}}}}{{{h{{An{c}}}}{h{{An{c}}}}}{{Dh{Bh}}}Hl}{{{h{{B`{c}}}}{h{{B`{c}}}}}{{Dh{Bh}}}Hl}{{{h{d}}{h{d}}}{{Dh{Bh}}}}{{{h{Af}}}{{Dh{Af}}}}{{Afj}{{Dn{AfAf}}}}{{{h{Af}}c}{{`{{Gn{}{{Ej{Af}}}}}}}{{Hh{Df}}}}````{{{h{j}}c}DnHn}{{{h{l}}c}DnHn}{{{h{b}}c}DnHn}{{{h{{An{c}}}}e}Dn{BjI`}Hn}{{{h{d}}c}DnHn}```{{{h{AhH`}}}{{Dh{H`}}}}{dc{}}{{{h{c}}}e{}{}}000000000{dn}{{{h{{Bn{D`}}}}}{{Id{Ib}}}}{{{h{{Bn{Cn}}}}}{{Id{Ib}}}}{{{h{{Bn{d}}}}}{{Id{Ib}}}}{{{h{{Bn{Cb}}}}}{{Id{Ib}}}}{{{h{{Bn{Cd}}}}}{{Id{Ib}}}}{{{h{{Bn{{Cl{Cj}}}}}}}{{Id{Ib}}}}{{{h{{Bn{Cf}}}}}{{Id{Ib}}}}{{{h{{Bn{Ch}}}}}{{Id{Ib}}}}{{{h{{Db{c}}}}}{{Id{Ib}}}{fI`}}{{{h{c}}}If{}}0{{{h{b}}}Cf}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}0`1{c{{Dn{e}}}{}{}}0000000000000000000000000`````{{{h{c}}}Ij{}}000000000000`{ce{}{}}000000000000`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{IlIl}{{CfCf}}{{IlIl}}{{InIn}}{{J`J`}J`}{{{h{AhCf}}Cf}Bf}{{{h{AhIl}}Il}Bf}{{{h{AhIn}}In}Bf}{{Jb{h{{Jd{c}}}}{h{Jf}}}{{Dn{{Ff{JbJh}}Jj}}}Jl}`{{{h{Jn}}}{{Dh{K`}}}}{{}Kb}{{}Kd}{{}Kf}{{}D`}{{}Kh}{{}Kj}{{}Kl}{{}Kn}{{}L`}{{}Cb}{{}Lb}{{}Ld}{{}Lf}{{}Lh}{{}Lj}{{}Ll}{{}Ln}{{}M`}{{}Mb}`{{{h{Kb}}}h}{{{h{Kd}}}h}{{{h{Kf}}}h}{{{h{D`}}}h}{{{h{Kh}}}h}{{{h{Kj}}}h}{{{h{Kl}}}h}{{{h{Kn}}}h}{{{h{L`}}}h}{{{h{Cb}}}h}{{{h{Lb}}}h}{{{h{Ld}}}h}{{{h{Lf}}}h}{{{h{Lh}}}h}{{{h{Lj}}}h}{{{h{Ll}}}h}{{{h{Ln}}}h}{{{h{M`}}}h}{{{h{Mb}}}h}{{{h{Md}}}{{h{{Ad{A`}}}}}}{{{h{Jb}}}}{{{h{AhMd}}}{{h{AhMd}}}}{{{h{AhMd}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhCd}}}{{h{AhMd}}}}{{{h{AhCd}}}{{h{Ah{Ad{A`}}}}}}2{{{h{AhJb}}}}{{{h{AhJb}}}Mf}3{{{h{Jb}}}Mf}{{{h{Kb}}}{{h{Mh}}}}{{{h{Kd}}}{{h{Mh}}}}{{{h{Kf}}}{{h{Mj}}}}{{{h{D`}}}{{h{Mh}}}}{{{h{Kh}}}{{h{Mh}}}}{{{h{Kj}}}{{h{Mh}}}}{{{h{Kl}}}{{h{Mh}}}}{{{h{Kn}}}{{h{Mj}}}}{{{h{L`}}}{{h{n}}}}{{{h{Cb}}}{{h{Mh}}}}{{{h{Lb}}}{{h{Mh}}}}{{{h{Ld}}}{{h{Mj}}}}{{{h{Lf}}}{{h{Mj}}}}{{{h{Lh}}}{{h{Mh}}}}{{{h{Lj}}}{{h{Mh}}}}{{{h{Ll}}}{{h{{Mn{Ml}}}}}}{{{h{Ln}}}{{h{{Mn{N`}}}}}}{{{h{M`}}}{{h{{Mn{Nb}}}}}}{{{h{Mb}}}{{h{{Mn{Nd}}}}}}{{{h{Kb}}}{{h{{Ab{A`}}}}}}{{{h{Kb}}}{{h{{Ad{A`}}}}}}{{{h{Kd}}}{{h{{Ad{A`}}}}}}{{{h{Kd}}}{{h{{Ab{A`}}}}}}{{{h{Kf}}}{{h{{Ab{A`}}}}}}{{{h{Kf}}}{{h{{Ad{A`}}}}}}{{{h{D`}}}{{h{{Ad{A`}}}}}}{{{h{D`}}}{{h{{Ab{A`}}}}}}{{{h{Kh}}}{{h{{Ab{A`}}}}}}{{{h{Kh}}}{{h{{Ad{A`}}}}}}{{{h{Kj}}}{{h{{Ab{A`}}}}}}{{{h{Kj}}}{{h{{Ad{A`}}}}}}{{{h{Kl}}}{{h{{Ad{A`}}}}}}{{{h{Kl}}}{{h{{Ab{A`}}}}}}{{{h{Md}}}{{h{{Ad{A`}}}}}}{{{h{Md}}}{{h{Md}}}}{{{h{Cd}}}{{h{{Ad{A`}}}}}}{{{h{Cd}}}{{h{Md}}}}{{{h{Kn}}}{{h{{Ab{A`}}}}}}{{{h{Kn}}}{{h{Nf}}}}{{{h{Kn}}}{{h{{Ad{A`}}}}}}{{{h{L`}}}{{h{{Ad{A`}}}}}}{{{h{L`}}}{{h{{Ab{A`}}}}}}{{{h{L`}}}{{h{Nf}}}}{{{h{Cb}}}{{h{{Ab{A`}}}}}}{{{h{Cb}}}{{h{{Ad{A`}}}}}}{{{h{Lb}}}{{h{{Ab{A`}}}}}}{{{h{Lb}}}{{h{{Ad{A`}}}}}}{{{h{Ld}}}{{h{{Ad{A`}}}}}}{{{h{Ld}}}{{h{{Ab{A`}}}}}}{{{h{Ld}}}{{h{Nf}}}}{{{h{Lf}}}{{h{Nf}}}}{{{h{Lf}}}{{h{{Ab{A`}}}}}}{{{h{Lf}}}{{h{{Ad{A`}}}}}}{{{h{Lh}}}{{h{{Ad{A`}}}}}}{{{h{Lh}}}{{h{{Ab{A`}}}}}}{{{h{Lj}}}{{h{{Ab{A`}}}}}}{{{h{Lj}}}{{h{{Ad{A`}}}}}}{{{h{Ll}}}{{h{{Ab{A`}}}}}}{{{h{Ll}}}{{h{{Ad{A`}}}}}}{{{h{Ch}}}{{h{Nh}}}}{{{h{Ln}}}{{h{{Ad{A`}}}}}}{{{h{Ln}}}{{h{{Ab{A`}}}}}}{{{h{M`}}}{{h{{Ad{A`}}}}}}{{{h{M`}}}{{h{{Ab{A`}}}}}}{{{h{Mb}}}{{h{{Ab{A`}}}}}}{{{h{Mb}}}{{h{{Ad{A`}}}}}}{{{h{Cd}}}{{h{Md}}}}{{{h{{Jn{c}}}}}{{h{{Jn{Nj}}}}}Nl}{{{Jn{Nj}}}Jn}{{{h{{Jn{Nj}}}}}{{h{Jn}}}}{{{Ab{A`}}}M`}{{{h{Nn}}}Hj}{{{h{Cn}}}Hj}```{{{h{O`}}}{{Dn{EdOb}}}}{{{h{O`}}}D`}`{{{h{c}}}{{h{e}}}{}{}}00000000{{{h{Kb}}}{{h{{Ad{A`}}}}}}11{{{h{Kd}}}{{h{{Ad{A`}}}}}}2{{{h{Kf}}}{{h{{Ad{A`}}}}}}3{{{h{D`}}}{{h{{Ad{A`}}}}}}{{{h{Kh}}}{{h{{Ad{A`}}}}}}55{{{h{Kj}}}{{h{{Ad{A`}}}}}}{{{h{Kl}}}{{h{{Ad{A`}}}}}}77777{{{h{Cd}}}{{h{Md}}}}888{{{h{Kn}}}{{h{{Ad{A`}}}}}}9{{{h{L`}}}{{h{{Ad{A`}}}}}}:{{{h{Cb}}}{{h{{Ad{A`}}}}}};{{{h{Lb}}}{{h{{Ad{A`}}}}}}<<<<<<<<{{{h{Ld}}}{{h{{Ad{A`}}}}}}=={{{h{Lf}}}{{h{{Ad{A`}}}}}}>>>{{{h{Lh}}}{{h{{Ad{A`}}}}}}?{{{h{Lj}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ll}}}{{h{{Ad{A`}}}}}}11111111111{{{h{Ln}}}{{h{{Ad{A`}}}}}}2{{{h{M`}}}{{h{{Ad{A`}}}}}}333{{{h{Mb}}}{{h{{Ad{A`}}}}}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000000000000000{{{h{AhCd}}}{{h{AhMd}}}}1111111111111111111111111111111111111{{}Od}0{{{h{Md}}}Of}{ChOh}{{{h{c}}Oj}Ef{}}{{{h{O`}}}Ef}{{{h{Ol}}On}Ef}{{{h{c}}On}Ef{}}2{Il{{Dh{Il}}}}{{CfCf}{{Dh{Cf}}}}{{IlIl}{{Dh{Il}}}}{{InIn}{{Dh{In}}}}{{CfEd}{{Dh{Cf}}}}{{IlA@`}{{Dh{Il}}}}{{A@bEd}{{Dh{A@b}}}}{{InEd}{{Dh{In}}}}3210{{A@bIn}{{Dh{Cf}}}}43765{{A@dA@f}A@h}{{{h{AhA@j}}}Bf}{{{h{A@l}}}A@l}{{{h{Cf}}}Cf}{{{h{Il}}}Il}{{{h{A@b}}}A@b}{{{h{Jb}}}Jb}{{{h{In}}}In}{{{h{K`}}}K`}{{{h{A@n}}}A@n}{{{h{{Jn{c}}}}}{{Jn{c}}}{AlNl}}{{{h{Kb}}}Kb}{{{h{Kd}}}Kd}{{{h{Kf}}}Kf}{{{h{D`}}}D`}{{{h{Kh}}}Kh}{{{h{Kj}}}Kj}{{{h{Kl}}}Kl}{{{h{O`}}}O`}{{{h{A@d}}}A@d}{{{h{Cd}}}Cd}{{{h{AA`}}}AA`}{{{h{AAb}}}AAb}{{{h{Kn}}}Kn}{{{h{L`}}}L`}{{{h{Cb}}}Cb}{{{h{Lb}}}Lb}{{{h{AAd}}}AAd}{{{h{Nn}}}Nn}{{{h{Ol}}}Ol}{{{h{AAf}}}AAf}{{{h{Cn}}}Cn}{{{h{A@j}}}A@j}{{{h{AAh}}}AAh}{{{h{AAj}}}AAj}{{{h{Ld}}}Ld}{{{h{Lf}}}Lf}{{{h{AAl}}}AAl}{{{h{AAn}}}AAn}{{{h{Lh}}}Lh}{{{h{Lj}}}Lj}{{{h{Ml}}}Ml}{{{h{Ll}}}Ll}{{{h{AB`}}}AB`}{{{h{ABb}}}ABb}{{{h{ABd}}}ABd}{{{h{ABf}}}ABf}{{{h{Ch}}}Ch}{{{h{J`}}}J`}{{{h{ABh}}}ABh}{{{h{ABj}}}ABj}{{{h{ABl}}}ABl}{{{h{N`}}}N`}{{{h{Ln}}}Ln}{{{h{Nb}}}Nb}{{{h{M`}}}M`}{{{h{Nd}}}Nd}{{{h{Mb}}}Mb}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000000000000000000000000000000000000000000000000{{{h{Cf}}{h{Cf}}}Bh}{{{h{Il}}{h{Il}}}Bh}{{{h{A@b}}{h{A@b}}}Bh}{{{h{Jb}}{h{Jb}}}Bh}{{{h{In}}{h{In}}}Bh}{{{h{K`}}{h{K`}}}Bh}{{{h{A@n}}{h{A@n}}}Bh}{{{h{{Jn{c}}}}{h{{Jn{c}}}}}Bh{BjNl}}{{{h{Kb}}{h{Kb}}}Bh}{{{h{Kd}}{h{Kd}}}Bh}{{{h{Kf}}{h{Kf}}}Bh}{{{h{D`}}{h{D`}}}Bh}{{{h{Kh}}{h{Kh}}}Bh}{{{h{Kj}}{h{Kj}}}Bh}{{{h{Kl}}{h{Kl}}}Bh}{{{h{Md}}{h{Md}}}Bh}{{{h{Cd}}{h{Cd}}}Bh}{{{h{AA`}}{h{AA`}}}Bh}{{{h{AAb}}{h{AAb}}}Bh}{{{h{Kn}}{h{Kn}}}Bh}{{{h{L`}}{h{L`}}}Bh}{{{h{Cb}}{h{Cb}}}Bh}{{{h{Lb}}{h{Lb}}}Bh}{{{h{AAd}}{h{AAd}}}Bh}{{{h{Nn}}{h{Nn}}}Bh}{{{h{Ol}}{h{Ol}}}Bh}{{{h{AAf}}{h{AAf}}}Bh}{{{h{Cn}}{h{Cn}}}Bh}{{{h{A@j}}{h{A@j}}}Bh}{{{h{AAh}}{h{AAh}}}Bh}{{{h{AAj}}{h{AAj}}}Bh}{{{h{Ld}}{h{Ld}}}Bh}{{{h{Lf}}{h{Lf}}}Bh}{{{h{AAl}}{h{AAl}}}Bh}{{{h{Lh}}{h{Lh}}}Bh}{{{h{Lj}}{h{Lj}}}Bh}{{{h{Ml}}{h{Ml}}}Bh}{{{h{Ll}}{h{Ll}}}Bh}{{{h{AB`}}{h{AB`}}}Bh}{{{h{ABf}}{h{ABf}}}Bh}{{{h{Ch}}{h{Ch}}}Bh}{{{h{J`}}{h{J`}}}Bh}{{{h{ABh}}{h{ABh}}}Bh}{{{h{ABj}}{h{ABj}}}Bh}{{{h{N`}}{h{N`}}}Bh}{{{h{Ln}}{h{Ln}}}Bh}{{{h{Nb}}{h{Nb}}}Bh}{{{h{M`}}{h{M`}}}Bh}{{{h{Nd}}{h{Nd}}}Bh}{{{h{Mb}}{h{Mb}}}Bh}{{{h{Jb}}{h{Jb}}}Bh}{{{h{O`}}}{{Dh{{h{Cn}}}}}}{{{h{AhABl}}ABl}{{Dn{BfABn}}}}``{{{h{O`}}}{{Dh{Kh}}}}{{{h{Cn}}}Mh}{{{h{Cn}}}Cb}{{{h{Kj}}{h{{Ad{A`}}}}}Kl}{{{h{Cn}}}Lb}`{{{h{Ahc}}}{{Dn{CfAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{KbAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{KdAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{D`AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{KhAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{KjAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{O`AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{CbAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{LbAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{AAdAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{OlAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{AAfAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{A@jAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{AAhAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{ABdAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{ABjAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{LnAC`}}}{ACbACd}}:{{{h{Ahc}}}{{Dn{CdAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{NnAC`}}}{ACbACd}}7{{{h{Ahc}}}{{Dn{CnAC`}}}{ACbACd}}{{{h{Cf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Kb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Kd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{D`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Kh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Kj}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{O`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Md}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Cd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Cb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Lb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AAd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Nn}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Ol}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AAf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Cn}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{A@j}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AAh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{ABd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{ABj}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Ln}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{Md}}}Hj}0{JbACj}{{}Cf}{{}Il}{{}Cd}{{}AAd}{{}Nn}{{}Ol}{{}A@j}{{}Ml}{{}ABj}{{}N`}{{}Nb}{{}Nd}{{{h{Cd}}}h}{{{h{AhCd}}}{{h{Ah}}}}{{cACl}{{Dn{Cf}}}E`}{{cACl}{{Dn{Il}}}E`}10{c{{Dn{Cf}}}E`}{c{{Dn{A@b}}}E`}{c{{Dn{Jb}}}E`}{c{{Dn{In}}}E`}{c{{Dn{{Jn{Nj}}}}}E`}{c{{Dn{Kb}}}E`}{c{{Dn{Kd}}}E`}{c{{Dn{Kf}}}E`}{c{{Dn{D`}}}E`}{c{{Dn{Kh}}}E`}{c{{Dn{Kj}}}E`}{c{{Dn{Kl}}}E`}{c{{Dn{O`}}}E`}{c{{Dn{{h{Md}}}}}E`}{c{{Dn{Cd}}}E`}{c{{Dn{Kn}}}E`}{c{{Dn{L`}}}E`}{c{{Dn{Cb}}}E`}{c{{Dn{Lb}}}E`}{c{{Dn{AAd}}}E`}{c{{Dn{Nn}}}E`}{c{{Dn{Ol}}}E`}{c{{Dn{AAf}}}E`}{c{{Dn{Cn}}}E`}{c{{Dn{A@j}}}E`}{c{{Dn{AAj}}}E`}{c{{Dn{Ld}}}E`}{c{{Dn{Lf}}}E`}{c{{Dn{AAl}}}E`}{c{{Dn{AAn}}}E`}{c{{Dn{Lh}}}E`}{c{{Dn{Lj}}}E`}{c{{Dn{Ll}}}E`}{c{{Dn{AB`}}}E`}{c{{Dn{ABb}}}E`}{c{{Dn{Ch}}}E`}{c{{Dn{J`}}}E`}{c{{Dn{ABh}}}E`}{c{{Dn{ABj}}}E`}{c{{Dn{ABl}}}E`}{{{h{{Ad{A`}}}}}{{Dn{ABlABn}}}}{c{{Dn{Ln}}}E`}{c{{Dn{M`}}}E`}{c{{Dn{Mb}}}E`}{{{h{Ahc}}}{{Dn{ABlABn}}}ACn}{{{h{ABh}}c}AD`{{ADb{Nh}}}}{{{h{ABh}}}ADd}{CfADf}{IlADf}{{CfA@l}ADf}{{IlA@l}ADf}{{CfIn}}{{CfEd}}{{IlA@`}}{{InEd}}{{InIn}}{{{h{AhCf}}Ed}Bf}{{{h{AhIl}}A@`}Bf}{{{h{AhIn}}Ed}Bf}{{{h{Md}}}Cf}`{{{h{Ol}}}Ef}{{{h{Nn}}}Ef}{{}}00000000000000{{}ADh}1010101{{{h{A@l}}{h{A@l}}}Ef}{{{h{Cf}}{h{Cf}}}Ef}{{{h{Il}}{h{Il}}}Ef}{{{h{A@b}}{h{A@b}}}Ef}{{{h{Jb}}{h{Jb}}}Ef}{{{h{In}}{h{In}}}Ef}{{{h{K`}}{h{K`}}}Ef}{{{h{A@n}}{h{A@n}}}Ef}{{{h{{Jn{c}}}}{h{{Jn{c}}}}}Ef{EhNl}}{{{h{Kb}}{h{Kb}}}Ef}{{{h{Kd}}{h{Kd}}}Ef}{{{h{Kf}}{h{Kf}}}Ef}{{{h{D`}}{h{D`}}}Ef}{{{h{Kh}}{h{Kh}}}Ef}{{{h{Kj}}{h{Kj}}}Ef}{{{h{Kl}}{h{Kl}}}Ef}{{{h{O`}}{h{O`}}}Ef}{{{h{A@d}}{h{A@d}}}Ef}{{{h{Md}}{h{Md}}}Ef}{{{h{Md}}{h{Cd}}}Ef}{{{h{Cd}}{h{Md}}}Ef}{{{h{Cd}}{h{Cd}}}Ef}{{{h{AA`}}{h{AA`}}}Ef}{{{h{AAb}}{h{AAb}}}Ef}{{{h{Kn}}{h{Kn}}}Ef}{{{h{L`}}{h{L`}}}Ef}{{{h{Cb}}{h{Cb}}}Ef}{{{h{Lb}}{h{Lb}}}Ef}{{{h{AAd}}{h{AAd}}}Ef}{{{h{Nn}}{h{Nn}}}Ef}{{{h{Ol}}{h{Ol}}}Ef}{{{h{AAf}}{h{AAf}}}Ef}{{{h{Cn}}{h{Cn}}}Ef}{{{h{A@j}}{h{A@j}}}Ef}{{{h{AAh}}{h{AAh}}}Ef}{{{h{AAj}}{h{AAj}}}Ef}{{{h{Ld}}{h{Ld}}}Ef}{{{h{Lf}}{h{Lf}}}Ef}{{{h{AAl}}{h{AAl}}}Ef}{{{h{AAn}}{h{AAn}}}Ef}{{{h{Lh}}{h{Lh}}}Ef}{{{h{Lj}}{h{Lj}}}Ef}{{{h{Ml}}{h{Ml}}}Ef}{{{h{Ll}}{h{Ll}}}Ef}{{{h{AB`}}{h{AB`}}}Ef}{{{h{ABb}}{h{ABb}}}Ef}{{{h{ABd}}{h{ABd}}}Ef}{{{h{ABf}}{h{ABf}}}Ef}{{{h{Ch}}{h{Ch}}}Ef}{{{h{J`}}{h{J`}}}Ef}{{{h{ABh}}{h{ABh}}}Ef}{{{h{ABj}}{h{ABj}}}Ef}{{{h{ABl}}{h{ABl}}}Ef}{{{h{N`}}{h{N`}}}Ef}{{{h{Ln}}{h{Ln}}}Ef}{{{h{Nb}}{h{Nb}}}Ef}{{{h{M`}}{h{M`}}}Ef}{{{h{Nd}}{h{Nd}}}Ef}{{{h{Mb}}{h{Mb}}}Ef}{{{h{Jb}}{h{Jb}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000`{{{h{AhCd}}c}Bf{{El{}{{Ej{ADj}}}}}}{{{h{ABl}}{h{{Jd{c}}}}}{{Dn{CnADl}}}Jl}{{{h{ABd}}{h{Ah{ADn{Cb}}}}{h{Ah{ADn{Df}}}}}{{Dn{BfAE`}}}}{ABl{{Dn{CnAEb}}}}0{ABlCn}{{ABlA@b}{{Dn{CnAEb}}}}{{{h{ABl}}}{{Dn{CfABn}}}}{{A@bEd}{{Dh{Cf}}}}{{A@bIn}{{Dh{Cf}}}}{{{h{Kb}}{h{Kd}}}Kd}{{ABl{h{{Jd{c}}}}}{{Dn{ABl{Ff{ABl{ADn{ADl}}}}}}}Jl}{{ABl{h{{Jd{c}}}}Hj}{{Dn{ABl{Ff{ABlADl}}}}}Jl}0{{{h{AhABl}}{h{{Jd{c}}}}Hj}{{Dn{BfADl}}}Jl}02{{{h{AhABl}}{h{{Jd{c}}}}}{{Dn{Bf{ADn{ADl}}}}}Jl}0{{{h{Md}}}{{Dh{A@d}}}}{{{h{A@l}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Cf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Il}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{A@b}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Jb}}{h{AhEn}}}{{Dn{BfF`}}}}00{{{h{In}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{K`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{A@n}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Jn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{{Jn{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Nl}{{{h{Kb}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Kd}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Kf}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{D`}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Kh}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Kj}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Kl}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{O`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{A@d}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Md}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Cd}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AA`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AAb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Kn}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{L`}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Cb}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Lb}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AAd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Nn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Ol}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AAf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Cn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{A@j}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AAh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AAj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Ld}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Lf}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AAl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AAn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Lh}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Lj}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Ll}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AB`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ABb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ABd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{ABf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Ch}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{J`}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{ABh}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{ABj}}{h{AhEn}}}{{Dn{BfF`}}}}00{{{h{ABl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Ln}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{M`}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Mb}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{Md}}{h{AhAEd}}}{{Dn{BfF`}}}}{{Cf{h{AhAEd}}A@l}{{Dn{BfF`}}}}{{Il{h{AhAEd}}A@l}{{Dn{BfF`}}}}{{{h{AAn}}{h{AhAEd}}}{{Dn{BfF`}}}}{cc{}}000{ACjJb}{AEfJb}2{MfJb}{AAlJb}{AAjJb}55{ChA@n}666{MhKb}{MhKd}88{{{h{AEh}}}Kf}{MjKf}{AEhKf}{MhD`}<{{{h{Fl}}}D`}{O`D`}{{{h{O`}}}D`}{FlD`}{cc{}}{CbKh}{MhKh}{LbKj}3{MhKj}4{MhKl}5{AAbA@d}{A`A@d}77{JnCd}{{{ADn{A`}}}Cd}{{{AEj{Md}}}Cd}{{{h{Md}}}Cd};;{{{h{Cd}}}Kn}{CdKn}{MjKn}{{{h{Md}}}Kn}?{CdL`}{nL`}{cc{}}{{{h{Cd}}}L`}{{{h{Md}}}L`}2{CnCb}{MhCb}{{{h{Cn}}}Cb}{MhLb}6{CnLb}{{{h{Cn}}}Lb}88{OnOl}9{AElOl}::{{{h{{Ad{{h{{Ad{A`}}}}}}}}}A@j}{{{ADn{{h{{Ad{A`}}}}}}}A@j}{{{h{{Ad{{ADn{A`}}}}}}}A@j}{{{ADn{{ADn{A`}}}}}A@j}>{EdAAh}{AEnAAh}{A`AAh}{cc{}}{DfAAh}{HjAAh}{AAlAAj}{AEfAAj}4{AAlLd}{{{h{AAj}}}Ld}{{{h{AAl}}}Ld}7{MjLd}{AAjLd}{MjLf}:{{{h{AAl}}}Lf}{AAlLf}<<<{MhLh}{MhLj}>>{{{Mn{Ml}}}Ll}?{ABbAB`}{cc{}}00{ChABf}1111{ABjABh}222{AF`Ln}3{{{Mn{N`}}}Ln}4{AFbM`}{{{Mn{Nb}}}M`}{LnM`}{{{h{AFb}}}M`}88{{{Mn{Nd}}}Mb}{{{h{AFd}}}Mb}{AFdMb};{AEnOl}{{{Ab{A`}}}J`}{{{Ab{A`}}}ABh}{{{h{O`}}c}ABd{{AFf{{h{Cb}}}{{Hd{Ef}}}}}}{ADd{{Dn{CfAFh}}}}{ADd{{Dn{IlAFh}}}}{{}Kb}{{}Kd}{{}Kf}{{}D`}{{}Kh}{{}Kj}{{}Kl}{{}Kn}{{}L`}{{}Cb}{{}Lb}{{}Ld}{{}Lf}{{}Lh}{{}Lj}{{}Ll}{{}Ln}{{}M`}{{}Mb}{{{h{{Ad{A`}}}}}{{h{Md}}}}{{{ADn{A`}}}Cd}{{{h{Ah{Ad{A`}}}}}{{h{AhMd}}}}{Oh{{Dh{Ch}}}}{ABjABh}{DfOl}{DfABb}{DfABj}{A`{{Dn{AB`AFj}}}}{{{h{G`}}}{{Dn{ChAFl}}}}{{}Kb}{{}Kd}{{}Kf}{{}D`}{{}Kh}{{}Kj}{{}Kl}{{}Kn}{{}L`}{{}Cb}{{}Lb}{{}Ld}{{}Lf}{{}Lh}{{}Lj}{{}Ll}{{}Ln}{{}M`}{{}Mb}{{ADdA@l}{{Dn{CfAFh}}}}{{ADdA@l}{{Dn{IlAFh}}}}{{FlFlc}ABj{{ADb{Nh}}}}{{{h{Fl}}{h{{Ad{Cb}}}}c}ABd{{AFf{{h{Cb}}}{{Hd{Ef}}}}}}{AEnOl}{{{h{G`}}}{{Dn{CdAFn}}}}{{{h{G`}}}{{Dn{OlAG`}}}}{{{h{G`}}}{{Dn{J`AG`}}}}{{{h{G`}}}{{Dn{ABhAG`}}}}{{{h{G`}}}{{Dn{ABjAG`}}}}{EdCf}{cCd{{El{}{{Ej{ADj}}}}}}{{Jb{Dh{M`}}}Mb}{{{h{AGb}}}{{Ff{JbJh}}}}{Ed{{Dh{In}}}}{{{Ab{A`}}}J`}{{{Ab{A`}}}ABh}{AGd{{Dh{Ch}}}}{{ABjEdc}ABj{{ADb{Nh}}}}{{M`M`}M`}{EdIn}{{{h{{Jd{c}}}}{h{AAn}}}AAjAGf}{{{h{{Jd{c}}}}{h{AAn}}}{{Dn{AAlAGh}}}AGf}{MhKb}{MhKd}{MjKf}{MhD`}{MhKh}{MhKj}{MhKl}{MjKn}{nL`}{MhCb}{MhLb}{MjLd}{MjLf}{MhLh}{MhLj}{{{Mn{Ml}}}Ll}{{{Mn{N`}}}Ln}{{{Mn{Nb}}}M`}{{{Mn{Nd}}}Mb}{EdCf}{A@`Il}{EdA@b}{Ed{{Dh{A@b}}}}1{{{h{Md}}c}{{Dn{JnAGj}}}{{ADb{Nh}}}}{{{h{Md}}AGl}Ln}{{{h{Md}}AGl}M`}{Df{{Dn{OlAGn}}}}0{{{h{{Ad{A`}}}}}{{Dn{JbAH`}}}}{{{h{{Ad{A`}}}}}{{Dn{JbJj}}}}{{{h{{Ad{A`}}}}}{{Dn{KbFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KdFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KfFn}}}}{{{h{{Ad{A`}}}}}{{Dn{D`Fn}}}}{{{h{{Ad{A`}}}}}{{Dn{KhFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KjFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KlFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KnFn}}}}{{{h{{Ad{A`}}}}}{{Dn{L`Fn}}}}{{{h{{Ad{A`}}}}}{{Dn{CbFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LbFn}}}}{{{h{{Ad{c}}}}}A@j{{ADb{{Ad{A`}}}}}}{{{h{{Ad{A`}}}}}{{Dn{AAjAH`}}}}{{{h{{Ad{A`}}}}}{{Dn{AAjAHb}}}}{{{h{{Ad{A`}}}}}{{Dn{LdFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LfFn}}}}{{{h{{Ad{A`}}}}}{{Dn{AAlJj}}}}{{{h{{Ad{A`}}}}c}{{Dn{AAnJj}}}{{AHd{ABf}}}}{{{h{{Ad{A`}}}}}{{Dn{LhFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LjFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LlFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LnFn}}}}{{{h{{Ad{A`}}}}}{{Dn{M`Fn}}}}{{{h{{Ad{A`}}}}}{{Dn{MbFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KbFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KdFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KfFn}}}}{{{h{{Ad{A`}}}}}{{Dn{D`Fn}}}}{{{h{{Ad{A`}}}}}{{Dn{KhFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KjFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KlFn}}}}{{{h{{Ad{A`}}}}}{{Dn{KnFn}}}}{{{h{{Ad{A`}}}}}{{Dn{L`Fn}}}}{{{h{{Ad{A`}}}}}{{Dn{CbFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LbFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LdFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LfFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LhFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LjFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LlFn}}}}{{{h{{Ad{A`}}}}}{{Dn{LnFn}}}}{{{h{{Ad{A`}}}}}{{Dn{M`Fn}}}}{{{h{{Ad{A`}}}}}{{Dn{MbFn}}}}{Df{{Dn{ABbAHf}}}}{{{h{G`}}}{{Dn{A@l}}}}{{{h{G`}}}{{Dn{Cf}}}}{{{h{G`}}}{{Dn{Il}}}}{{{h{G`}}}{{Dn{A@b}}}}{{{h{G`}}}{{Dn{JbJj}}}}{{{h{G`}}}{{Dn{In}}}}{{{h{G`}}}{{Dn{K`}}}}{{{h{G`}}}{{Dn{{Jn{Nj}}AHh}}}}{{{h{G`}}}{{Dn{Kb}}}}{{{h{G`}}}{{Dn{Kd}}}}{{{h{G`}}}{{Dn{Kf}}}}{{{h{G`}}}{{Dn{D`}}}}{{{h{G`}}}{{Dn{Kh}}}}{{{h{G`}}}{{Dn{Kj}}}}{{{h{G`}}}{{Dn{Kl}}}}{{{h{G`}}}{{Dn{AAb}}}}{{{h{G`}}}{{Dn{Kn}}}}{{{h{G`}}}{{Dn{L`}}}}{{{h{G`}}}{{Dn{Cb}}}}{{{h{G`}}}{{Dn{Lb}}}}{{{h{G`}}}{{Dn{AAd}}}}{{{h{G`}}}{{Dn{Ol}}}}{{{h{G`}}}{{Dn{AAjAHj}}}}{{{h{G`}}}{{Dn{Ld}}}}{{{h{G`}}}{{Dn{Lf}}}}{{{h{G`}}}{{Dn{AAl}}}}{{{h{G`}}}{{Dn{AAnAHl}}}}{{{h{G`}}}{{Dn{Lh}}}}{{{h{G`}}}{{Dn{Lj}}}}{{{h{G`}}}{{Dn{Ll}}}}{{{h{G`}}}{{Dn{AB`}}}}{{{h{G`}}}{{Dn{ABb}}}}{{{h{G`}}}{{Dn{Ch}}}}{{{h{G`}}}{{Dn{ABl}}}}{{{h{G`}}}{{Dn{Ln}}}}{{{h{G`}}}{{Dn{M`}}}}{{{h{G`}}}{{Dn{Mb}}}}{{{h{G`}}A@l}{{Dn{CfAFh}}}}{{{h{G`}}A@l}{{Dn{IlAFh}}}}{{{h{G`}}}{{Dn{CfAHn}}}}{{{h{G`}}}{{Dn{IlAHn}}}}{{{h{G`}}}{{Dn{OlAI`}}}}{{{h{G`}}}{{Dn{J`AI`}}}}{{{h{G`}}}{{Dn{ABhAI`}}}}{{{h{G`}}}{{Dn{ABjAI`}}}}{Cn{{Dn{ABlABn}}}}{Ed{{Dh{In}}}}{EdIn}0{{{h{G`}}}{{Dn{AAnAHl}}}}1{{AA`c}Jn{{AHd{A@n}}}}2{HjIn}{cAAn{{AHd{ABf}}}}{{{h{A@l}}{h{Ahc}}}BfGf}{{{h{Cf}}{h{Ahc}}}BfGf}{{{h{Il}}{h{Ahc}}}BfGf}{{{h{A@b}}{h{Ahc}}}BfGf}{{{h{Jb}}{h{Ahc}}}BfGf}{{{h{In}}{h{Ahc}}}BfGf}{{{h{K`}}{h{Ahc}}}BfGf}{{{h{A@n}}{h{Ahc}}}BfGf}{{{h{{Jn{c}}}}{h{Ahe}}}Bf{GhNl}Gf}{{{h{Kb}}{h{Ahc}}}BfGf}{{{h{Kd}}{h{Ahc}}}BfGf}{{{h{Kf}}{h{Ahc}}}BfGf}{{{h{D`}}{h{Ahc}}}BfGf}{{{h{Kh}}{h{Ahc}}}BfGf}{{{h{Kj}}{h{Ahc}}}BfGf}{{{h{Kl}}{h{Ahc}}}BfGf}{{{h{Md}}{h{Ahc}}}BfGf}{{{h{Cd}}{h{Ahc}}}BfGf}{{{h{AA`}}{h{Ahc}}}BfGf}{{{h{AAb}}{h{Ahc}}}BfGf}{{{h{Kn}}{h{Ahc}}}BfGf}{{{h{L`}}{h{Ahc}}}BfGf}{{{h{Cb}}{h{Ahc}}}BfGf}{{{h{Lb}}{h{Ahc}}}BfGf}{{{h{AAd}}{h{Ahc}}}BfGf}{{{h{Nn}}{h{Ahc}}}BfGf}{{{h{Ol}}{h{Ahc}}}BfGf}{{{h{AAf}}{h{Ahc}}}BfGf}{{{h{Cn}}{h{Ahc}}}BfGf}{{{h{A@j}}{h{Ahc}}}BfGf}{{{h{AAj}}{h{Ahc}}}BfGf}{{{h{Ld}}{h{Ahc}}}BfGf}{{{h{Lf}}{h{Ahc}}}BfGf}{{{h{AAl}}{h{Ahc}}}BfGf}{{{h{Lh}}{h{Ahc}}}BfGf}{{{h{Lj}}{h{Ahc}}}BfGf}{{{h{Ml}}{h{Ahc}}}BfGf}{{{h{Ll}}{h{Ahc}}}BfGf}{{{h{AB`}}{h{Ahc}}}BfGf}{{{h{ABb}}{h{Ahc}}}BfGf}{{{h{ABf}}{h{Ahc}}}BfGf}{{{h{Ch}}{h{Ahc}}}BfGf}{{{h{J`}}{h{Ahc}}}BfGf}{{{h{ABh}}{h{Ahc}}}BfGf}{{{h{ABj}}{h{Ahc}}}BfGf}{{{h{ABl}}{h{Ahc}}}BfGf}{{{h{N`}}{h{Ahc}}}BfGf}{{{h{Ln}}{h{Ahc}}}BfGf}{{{h{Nb}}{h{Ahc}}}BfGf}{{{h{M`}}{h{Ahc}}}BfGf}{{{h{Nd}}{h{Ahc}}}BfGf}{{{h{Mb}}{h{Ahc}}}BfGf}```{{{h{Kb}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Kd}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Kf}}c}h{{Gj{{Ad{A`}}}}}}{{{h{D`}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Kh}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Kj}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Kl}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Md}}{AIb{Hj}}}h}{{{h{Md}}{AId{Hj}}}h}{{{h{Md}}{AIf{Hj}}}h}{{{h{Md}}{AIh{Hj}}}h}{{{h{Md}}{Ff{{AIj{Hj}}{AIj{Hj}}}}}h}{{{h{Md}}AIl}h}{{{h{Md}}{AIn{Hj}}}h}{{{h{Kn}}c}h{{Gj{{Ad{A`}}}}}}{{{h{L`}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Cb}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Lb}}c}h{{Gj{{Ad{A`}}}}}}{{{h{A@j}}Hj}h}{{{h{Ld}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Lf}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AAn}}AIl}{{h{{Ad{A`}}}}}}{{{h{Lh}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Lj}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Ll}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Ln}}c}h{{Gj{{Ad{A`}}}}}}{{{h{M`}}c}h{{Gj{{Ad{A`}}}}}}{{{h{Mb}}c}h{{Gj{{Ad{A`}}}}}}````{{{h{Md}}}AJ`}0{{{h{Md}}}AJb}0{ce{}{}}0000000000000000000000000000000000000000000000000000000{Cd{{AJd{Md}}}}{Cd{{ADn{A`}}}}{{{h{A@j}}}}{{{AJd{Md}}}Cd}{{{Jn{c}}}{{Jn{Nj}}}Nl}{{{h{Cn}}AJfAJh}Ef}{{{h{Cn}}}Ef}{{{h{Md}}}Ef}{{{h{A@j}}}Ef}2{{{h{Ol}}}Ef}03{{{h{ABf}}}Ef}{{{h{ABh}}D`}Ef}4{IlEf}{{{h{AAd}}}Ef}66666{{{h{AA`}}}Ef}70702775{{{h{Jn}}{h{AAj}}}Ef}{{{h{Jn}}{h{Jb}}}Ef}7{{{h{Jn}}}Ef}8{{{h{AAj}}}Ef}{{{h{{Jn{Nj}}}}Ch}Ef}<{{{h{Jb}}}Ef}{{{h{A@j}}}AJj}{{{h{ABl}}}{{`{{Gn{}{{Ej{{Dn{{h{AAf}}ABn}}}}}}}}}}`{{{h{A@j}}}{{Dh{{h{{Ad{A`}}}}}}}}{{{h{Nn}}}In}{{{h{Md}}}Hj}{{{h{A@j}}}Hj}`{J`ADd}{ChAGd}{{{h{Jn}}{h{Md}}}Ef}{{{h{ABh}}}ABh}{{{h{ABh}}c}ABh{{ADb{Nh}}}}1`11{{{h{Md}}}Cf}{CdAAf}{{{h{Md}}A@b}Cf}{{CdA@b}AAf}{{CfEd}}{{IlA@`}}{{A@bIn}}{{InA@b}}{{InEd}}{{{h{AhCf}}Ed}Bf}{{{h{AhIl}}A@`}Bf}{{{h{AhIn}}Ed}Bf}{Il}``{{}{{h{Md}}}}{{}Cd}{{AAb{h{{Ad{A`}}}}}{{Dn{AA`AJl}}}}{{CbDf}AAd}{{}A@j}{cAAj{{AHd{AEf}}}}{{AJnc}AAn{{AHd{ABf}}}}{cCd{{ADb{Nf}}}}{{{h{AAj}}}Cd}{{{h{Ld}}}Cd}{{{h{Kn}}}Cd}{{{h{{Jd{c}}}}Jb{Dh{M`}}}CdJl}{ACjCd}{{{h{Lf}}}Cd}{{{h{L`}}}Cd}98{{{h{AA`}}}Cd}{{{h{A@j}}Hj}{{Dh{{h{{Ad{A`}}}}}}}}{{{h{Cn}}}Mh}{{}AAd}```{{{h{Md}}}{{Dh{AAj}}}}{{ce}Jn{{AHd{Ld}}}{{AHd{ABf}}}}{{{h{Md}}c}{{Dn{JnAK`}}}{{AHd{ABf}}}}{{Knc}Jn{{AHd{ABf}}}}{{{h{AAl}}c}Jn{{AHd{ABf}}}}{{{h{Md}}c}Jn{{AHd{ABf}}}}{{{h{{Jd{c}}}}Jb{Dh{M`}}e}JnJl{{AHd{A@n}}}}{{{h{{Jd{c}}}}Jb{Dh{M`}}}AA`Jl}{{{h{AKb}}}A@j}{{ACjc}Jn{{AHd{A@n}}}}{ACjAA`}{{{h{AAl}}c}Jn{{AHd{A@n}}}}{{{h{AAl}}}AA`}{{{h{AKd}}{h{AEf}}}A@j}{{{h{Md}}}{{Dh{Cd}}}}{LfCd}{{{h{AAj}}}{{Dn{CdAGh}}}}{{{h{AAl}}}Cd}{{{h{Md}}c}Jn{{AHd{A@n}}}}{{{h{Md}}}AA`}{Ch{{h{Nh}}}}`{{{h{Cf}}{h{Cf}}}{{Dh{Bh}}}}{{{h{Il}}{h{Il}}}{{Dh{Bh}}}}{{{h{A@b}}{h{A@b}}}{{Dh{Bh}}}}{{{h{Jb}}{h{Jb}}}{{Dh{Bh}}}}{{{h{In}}{h{In}}}{{Dh{Bh}}}}{{{h{K`}}{h{K`}}}{{Dh{Bh}}}}{{{h{A@n}}{h{A@n}}}{{Dh{Bh}}}}{{{h{{Jn{c}}}}{h{{Jn{c}}}}}{{Dh{Bh}}}{HlNl}}{{{h{Kb}}{h{Kb}}}{{Dh{Bh}}}}{{{h{Kd}}{h{Kd}}}{{Dh{Bh}}}}{{{h{Kf}}{h{Kf}}}{{Dh{Bh}}}}{{{h{D`}}{h{D`}}}{{Dh{Bh}}}}{{{h{Kh}}{h{Kh}}}{{Dh{Bh}}}}{{{h{Kj}}{h{Kj}}}{{Dh{Bh}}}}{{{h{Kl}}{h{Kl}}}{{Dh{Bh}}}}{{{h{Md}}{h{Md}}}{{Dh{Bh}}}}{{{h{Md}}{h{Cd}}}{{Dh{Bh}}}}{{{h{Cd}}{h{Md}}}{{Dh{Bh}}}}{{{h{Cd}}{h{Cd}}}{{Dh{Bh}}}}{{{h{AA`}}{h{AA`}}}{{Dh{Bh}}}}{{{h{AAb}}{h{AAb}}}{{Dh{Bh}}}}{{{h{Kn}}{h{Kn}}}{{Dh{Bh}}}}{{{h{L`}}{h{L`}}}{{Dh{Bh}}}}{{{h{Cb}}{h{Cb}}}{{Dh{Bh}}}}{{{h{Lb}}{h{Lb}}}{{Dh{Bh}}}}{{{h{AAd}}{h{AAd}}}{{Dh{Bh}}}}{{{h{Nn}}{h{Nn}}}{{Dh{Bh}}}}{{{h{Ol}}{h{Ol}}}{{Dh{Bh}}}}{{{h{AAf}}{h{AAf}}}{{Dh{Bh}}}}{{{h{Cn}}{h{Cn}}}{{Dh{Bh}}}}{{{h{A@j}}{h{A@j}}}{{Dh{Bh}}}}{{{h{AAh}}{h{AAh}}}{{Dh{Bh}}}}{{{h{AAj}}{h{AAj}}}{{Dh{Bh}}}}{{{h{Ld}}{h{Ld}}}{{Dh{Bh}}}}{{{h{Lf}}{h{Lf}}}{{Dh{Bh}}}}{{{h{AAl}}{h{AAl}}}{{Dh{Bh}}}}{{{h{Lh}}{h{Lh}}}{{Dh{Bh}}}}{{{h{Lj}}{h{Lj}}}{{Dh{Bh}}}}{{{h{Ml}}{h{Ml}}}{{Dh{Bh}}}}{{{h{Ll}}{h{Ll}}}{{Dh{Bh}}}}{{{h{AB`}}{h{AB`}}}{{Dh{Bh}}}}{{{h{ABf}}{h{ABf}}}{{Dh{Bh}}}}{{{h{Ch}}{h{Ch}}}{{Dh{Bh}}}}{{{h{J`}}{h{J`}}}{{Dh{Bh}}}}{{{h{ABh}}{h{ABh}}}{{Dh{Bh}}}}{{{h{ABj}}{h{ABj}}}{{Dh{Bh}}}}{{{h{N`}}{h{N`}}}{{Dh{Bh}}}}{{{h{Ln}}{h{Ln}}}{{Dh{Bh}}}}{{{h{Nb}}{h{Nb}}}{{Dh{Bh}}}}{{{h{M`}}{h{M`}}}{{Dh{Bh}}}}{{{h{Nd}}{h{Nd}}}{{Dh{Bh}}}}{{{h{Mb}}{h{Mb}}}{{Dh{Bh}}}}`{{IlIl}{{Dh{Il}}}}``{{{h{AA`}}}{{h{Nf}}}}`{{{h{c}}{h{e}}}Ef{}{}}{{{h{c}}h}Ef{}}0{{{h{c}}{h{Mj}}}{{Dh{AAj}}}{}}0{{{h{c}}{h{{Ff{MjLn}}}}}{{Dh{{Ff{JbHj}}}}}{}}{{{h{c}}{h{Mj}}}{{Dh{Jb}}}{}}33{{{h{c}}}{{Dh{{h{{AKh{AKf{Ff{CdAGl}}}}}}}}}{}}{{{h{c}}{h{e}}}{{Dh{Hj}}}{}{}}{{{h{c}}{h{e}}{h{Ln}}}{{Dh{Hj}}}{}{}}`{{{h{Jn}}}{{Dh{Ld}}}}{{{h{AAj}}}Ld}{{{h{AAl}}}Ld}{{{h{Jb}}Jh}AEf}{{{h{AAn}}{h{{Jd{c}}}}}AAjAGf}{{{h{AhA@j}}c}Bf{{ADb{{Ad{A`}}}}}}{{{h{AhA@j}}{h{AKd}}}Bf}{{{h{AhCd}}ADj}Bf}0{{{h{AhCd}}A@d}Bf}{{{h{AhCd}}c}Bf{{ADb{Nf}}}}{{{h{Ahc}}}{{Dn{AAjACf}}}{ACbACd}}{{{h{Ahc}}}{{Dn{AAlACf}}}{ACbACd}}{{{h{Md}}}{{Dh{{h{Md}}}}}}{{CfEd}Cf}{{IlA@`}Il}{{{h{AhCf}}Ed}Bf}{{{h{AhIl}}A@`}Bf}{{{Jn{Nj}}Ch}{{Dn{JnAHh}}}}{{{h{AhCd}}Hj}Bf}0{In{{Dh{In}}}}{{{h{AhCd}}}Bf}{{{h{Jn}}}{{Dh{Kn}}}}{{{h{Md}}}Kn}{{{h{Jn}}}Cd}`{{{h{Cn}}}{{`{{Gn{}{{Ej{Hj}}}}}}}}`{{{h{A@j}}}{{Dh{{h{{Ad{A`}}}}}}}}{{{h{Nn}}}In}`{{CfcACl}DnHn}{{IlcACl}DnHn}101010{{{h{Cf}}c}DnHn}{{{h{A@b}}c}DnHn}{{{h{Jb}}c}DnHn}{{{h{Jb}}}{{Ab{A`}}}}{{{h{In}}c}DnHn}{{{h{{Jn{c}}}}e}DnNlHn}{{{h{Kb}}c}DnHn}{{{h{Kd}}c}DnHn}{{{h{Kf}}c}DnHn}{{{h{D`}}c}DnHn}{{{h{Kh}}c}DnHn}{{{h{Kj}}c}DnHn}{{{h{Kl}}c}DnHn}{{{h{O`}}c}DnHn}{{{h{A@d}}c}DnHn}{{{h{Md}}c}DnHn}{{{h{Cd}}c}DnHn}{{{h{Kn}}c}DnHn}{{{h{L`}}c}DnHn}{{{h{Cb}}c}DnHn}{{{h{Lb}}c}DnHn}{{{h{AAd}}c}DnHn}{{{h{Nn}}c}DnHn}{{{h{Ol}}c}DnHn}{{{h{AAf}}c}DnHn}{{{h{Cn}}c}DnHn}{{{h{A@j}}c}DnHn}{{{h{AAj}}c}DnHn}{{{h{Ld}}c}DnHn}{{{h{Lf}}c}DnHn}{{{h{AAl}}c}DnHn}{{{h{AAn}}c}DnHn}{{{h{Lh}}c}DnHn}{{{h{Lj}}c}DnHn}{{{h{Ll}}c}DnHn}{{{h{AB`}}c}DnHn}{{{h{ABb}}c}DnHn}{{{h{Ch}}c}DnHn}{{{h{J`}}c}DnHn}{{{h{ABh}}c}DnHn}{{{h{ABj}}c}DnHn}{{{h{ABl}}}{{ADn{A`}}}}{{{h{ABl}}c}DnHn}{{{h{Ln}}c}DnHn}{{{h{M`}}c}DnHn}{{{h{Mb}}c}DnHn}{{{h{ABl}}}If}{{{h{ABl}}{h{Ahc}}}{{Dn{HjACf}}}ACh}`{{{h{ABl}}Hj{h{Ah{AKj{c}}}}}{{Dn{{Ff{AKlABb}}AKn}}}{{Dj{Cn}}}}{{{h{ABl}}Hj{h{Ah{AKj{c}}}}{Dh{Ln}}}{{Dn{AL`ALb}}}{{Dj{Cn}}}}{{{h{AhABl}}{h{c}}{h{{Jd{e}}}}}{{Dn{{AKh{HjALd}}{Ff{{AKh{HjALd}}{AKh{HjAKn}}}}}}}ALf{AGfJl}}`{IlA@`}{{{h{AAf}}}Hj}{{{h{A@j}}}Hj}{{{h{AAh}}}Hj}{{{h{ABl}}Hj}{{Dn{{h{AAf}}AKn}}}}{{CfCf}}{{IlIl}}{{InIn}}{{J`J`}J`}{{{h{AhCf}}Cf}Bf}{{{h{AhIl}}Il}Bf}{{{h{AhIn}}In}Bf}{cCf{{Gn{}{{Ej{Cf}}}}}}{cIl{{Gn{}{{Ej{Il}}}}}}{cIn{{Gn{}{{Ej{{h{In}}}}}}}}{cIn{{Gn{}{{Ej{In}}}}}}{{Jb{h{{Jd{c}}}}{Dh{M`}}}{{Ff{ACjJh}}}Jl}`{{{h{A@j}}}{{Dh{{h{{Ad{A`}}}}}}}}0{{{h{A@j}}}{{Dh{{h{Md}}}}}}{{{h{Md}}}Ln}2{{{h{Jn}}}ALh}{{{h{Md}}}If}{J`{{Ab{A`}}}}{ABh{{Ab{A`}}}}{CfADd}{IlADd}{Kb}{Kd}{Kf}{D`}{Kh}{Kj}{Kl}{Kn}{L`}{Cb}{Lb}{Ld}{Lf}{Lh}{Lj}{Ll}{Ln}{M`}{Mb}{{{h{Md}}}{{ADn{A`}}}}{AAj{{ADn{A`}}}}{{{h{AAl}}}{{Ab{A`}}}}{AAn{{ADn{A`}}}}{ABhABj}{ABjDf}{OlDf}{Ch{{h{G`}}}}{AAbALj}{{CfA@l}ADd}{{IlA@l}ADd}{{{h{Mj}}}Mj}0{{{h{ALl}}}ALl}0{{{h{Md}}}If}{InEd}{J`{{Ab{A`}}}}{ABh{{Ab{A`}}}}{AAbA`}{{{h{c}}}e{}{}}00000000000000000{{{h{Md}}}}11111111111111111111111111111111111111{{{h{Md}}}Cd}{{{h{Md}}{h{{Jd{c}}}}Jb}CdJl}1{{{h{Jb}}}AAj}{{{h{AAj}}}AAj}{{{h{Jn}}}If}{KbMh}{KdMh}{KfMj}{D`Mh}{KhMh}{KjMh}{KlMh}{KnMj}{L`n}{CbMh}{LbMh}{LdMj}{LfMj}{LhMh}{LjMh}{Ll{{Mn{Ml}}}}{Ln{{Mn{N`}}}}{M`{{Mn{Nb}}}}{Mb{{Mn{Nd}}}}{{{h{Ol}}}{{Dh{On}}}}{{{h{ALn}}}ALn}0{CfEd}{IlA@`}{A@bEd}00{MbJf}{{{h{n}}}n}0{Cf{{Dn{IlAM`}}}}{AAjAMb}{{{h{c}}}If{}}00000000000000000000000000000000000000000{{CfA@l}If}{{IlA@l}If}10{J`ABh}{ABbDf}{A@dA`}{Il{{Dn{CfAM`}}}}{InEd}0{{{h{A@j}}}{{ADn{{ADn{A`}}}}}}{AAnIf}{ABhJ`}3{{{h{Jb}}}Jb}{{{h{Cn}}c}Hj{{Hf{{h{AAd}}}{{Hd{{Dh{AAf}}}}}}}}{{{h{O`}}}Hj}{{{h{Nn}}}Hj}{{{h{Cn}}}Hj}{c{{Dn{e}}}{}{}}{Il{{Dn{Cf}}}}11{Cf{{Dn{Il}}}}{If{{Dn{A@b}}}}3{{{AJd{G`}}}{{Dn{A@b}}}}{{{h{G`}}}{{Dn{A@b}}}}5{If{{Dn{In}}}}{{{AJd{G`}}}{{Dn{In}}}}7{{{h{G`}}}{{Dn{In}}}}88888888888888{ADj{{Dn{AAb}}}}{ALj{{Dn{AAb}}}}:{A@d{{Dn{AAb}}}}{A`{{Dn{AAb}}}}<<<<<<{{{AJd{G`}}}{{Dn{Ol}}}}{If{{Dn{Ol}}}}>{{{h{G`}}}{{Dn{Ol}}}}???????{AAj{{Dn{AAl}}}}{c{{Dn{e}}}{}{}}000000000{AGd{{Dn{Ch}}}}1{Oh{{Dn{Ch}}}}222222222222222222222222222222222222222222222222222222222222222222{{{h{Jb}}{h{{Jd{c}}}}{h{Jb}}JhJf}EfJl}{{{h{Cn}}Hj}{{Dn{{h{Nn}}AMd}}}}{{{h{Cn}}Hj}{{Dn{{h{AAf}}AMf}}}}`{{{h{Cn}}}Cb}``{{{h{c}}}Ij{}}00000000000000000000000000000000000000000000000000000000{ACl{{h{G`}}}}0{{CfCf}Cf}{{IlIl}Il}10`{IlCf}`{{{h{AhABl}}Hj{h{{Cl{AMh}}}}}{{Dn{BfAMj}}}}{{{h{AhABl}}Hj{h{{Cl{AMh}}}}}{{Dn{BfAMl}}}}`{{{h{Jb}}{h{{Jd{c}}}}{h{AKl}}{h{AMn}}}{{Dn{BfJj}}}Jl}{{{h{AAj}}{h{{Jd{c}}}}{h{AKl}}{h{AKd}}}{{Dn{BfJj}}}Jl}{{{h{AAl}}{h{{Jd{c}}}}{h{AKl}}{h{AKd}}}{{Dn{BfJj}}}Jl}{{{h{AA`}}}AAb}```{{{h{Cn}}}Hj}{ce{}{}}0000000000000000000000000000000000000000000000000000000{{{h{O`}}}In}{{{h{AAf}}}In}{{{h{Cn}}}In}{HjCd}`{{{h{Jn}}}{{Dh{AA`}}}}{{{h{O`}}}{{Dh{Kj}}}}{{{h{A@j}}}{{Dh{{h{Md}}}}}}{{{h{Md}}}{{Dh{AAb}}}}{{{h{AAj}}}{{Dn{LfAGh}}}}{{{h{AAl}}}Lf}{{{h{AAj}}{h{Ahc}}}{{Dn{BfACf}}}{AChACd}}{{{h{AAl}}{h{Ahc}}}{{Dn{BfACf}}}{AChACd}}{{{h{Md}}}L`}{{{h{Cn}}}Lb}``````````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000{{{h{AGj}}}AGj}{{{h{AK`}}}AK`}{{{h{AN`}}}AN`}{{{h{AHh}}}AHh}{{{h{ANb}}}ANb}{{{h{ANd}}}ANd}{{{h{ANf}}}ANf}{{{h{ANh}}}ANh}{{{h{ANj}}}ANj}{{{h{ANl}}}ANl}{{{h{Nj}}}Nj}{{{h{ALh}}}ALh}{{{h{c}}{h{Ahe}}}Bf{}{}}00000000000{{{h{ANl}}{h{ANl}}}Bh}{{{h{Nj}}{h{Nj}}}Bh}{{{h{ALh}}{h{ALh}}}Bh}{{{h{AGj}}{h{AGj}}}Ef}{{{h{AK`}}{h{AK`}}}Ef}{{{h{AN`}}{h{AN`}}}Ef}{{{h{AHh}}{h{AHh}}}Ef}{{{h{ANb}}{h{ANb}}}Ef}{{{h{ANd}}{h{ANd}}}Ef}{{{h{ANf}}{h{ANf}}}Ef}{{{h{ANh}}{h{ANh}}}Ef}{{{h{ANj}}{h{ANj}}}Ef}{{{h{ANl}}{h{ANl}}}Ef}{{{h{Nj}}{h{Nj}}}Ef}{{{h{ALh}}{h{ALh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000000000000000000000`{{{h{AGj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AK`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AN`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AHh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Nj}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{ALh}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}{ANnAGj}{AO`AGj}{AJlAGj}3{AO`AK`}4{AObAHh}{ANnAHh}{AOdAHh}{ANjAHh}{AO`AHh}{ANbAHh}{ANhAHh}{ANfAHh}{AJlAHh}={ANdAHh}>>>>>>>>{{{h{ANl}}{h{Ahc}}}BfGf}{{{h{Nj}}{h{Ahc}}}BfGf}{{{h{ALh}}{h{Ahc}}}BfGf}{ce{}{}}00000000000{{{h{ANf}}}Hj}{{{h{ANj}}}A`}{{{h{ANh}}}Hj}{{{h{ANl}}{h{ANl}}}{{Dh{Bh}}}}{{{h{Nj}}{h{Nj}}}{{Dh{Bh}}}}{{{h{ALh}}{h{ALh}}}{{Dh{Bh}}}}{{{h{AGj}}}{{Dh{{h{AOf}}}}}}{{{h{AK`}}}{{Dh{{h{AOf}}}}}}{{{h{AN`}}}{{Dh{{h{AOf}}}}}}{{{h{AHh}}}{{Dh{{h{AOf}}}}}}{{{h{ANb}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}00000000000{{{h{c}}}If{}}00000000{c{{Dn{e}}}{}{}}00000000000000000000000{{{h{c}}}Ij{}}00000000000????????????`````````````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{AOh{{Dh{c}}}{}}{{{h{AFh}}}AFh}{{{h{ADf}}}ADf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{AFh}}{h{AFh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AFh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ADf}}{h{AhEn}}}{{Dn{BfF`}}}}0{AOjAFh}{AOlAFh}{AOnAFh}{AM`AFh}{cc{}}{B@`AFh}{AO`AFh}2{ce{}{}}0`{ADfADf}{{{h{AFh}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}066````{{cACl}{{Dn{B@b}}}E`}0{{B@bcACl}DnHn}{{B@dcACl}DnHn}10{ACl{{h{G`}}}}{c{{Dn{e}}}E`B@b}`{{{h{c}}e}DnB@bHn}{c{{Dn{{Dh{e}}}}}E`B@d}{{{h{{Dh{c}}}}e}DnB@dHn}3`210```````{{If{h{G`}}}If}{{{h{AhIf}}{h{G`}}}Bf}{{{h{{ADn{ce}}}}}{{h{e}}}{}B@f}{{{h{Ah{ADn{ce}}}}{h{Ah{ADn{ce}}}}}Bf{}B@f}{{{h{If}}}{{h{{Ad{A`}}}}}}{{{h{{ADn{A`}}}}}}{{{h{Ah{ADn{ce}}}}}{{h{Ah{ADn{ce}}}}}{}B@f}{{{h{Ah{ADn{ce}}}}}{{h{Ah{Ad{c}}}}}{}B@f}{{{h{AhIf}}}{{h{AhG`}}}}{{{h{Ah{ADn{ce}}}}}{}{}B@f}21{{{h{AhIf}}}{{h{Ah{ADn{A`}}}}}}{{{h{{ADn{ce}}}}}{}{}B@f}{{{h{{ADn{ce}}}}}{{h{{ADn{ce}}}}}{}B@f}{{{h{{ADn{ce}}}}}{{h{{Ad{c}}}}}{}B@f}9{{{h{If}}}{{h{B@h}}}}{{{h{If}}}{{h{B@j}}}}{{{h{If}}}{{h{G`}}}}30{{{h{c}}}{{h{e}}}{}{}}04010{{{h{Ahc}}}{{h{Ahe}}}{}{}}0;00:{{{h{{ADn{ce}}}}}Hj{}B@f}{{{h{If}}}Hj}{{{h{Ah{ADn{ce}}}}}Bf{}B@f}{{{h{AhIf}}}Bf}{{{h{AOb}}}AOb}{{{h{B@l}}}B@l}{{{h{{ADn{ce}}}}}{{ADn{ce}}}Al{B@fAl}}{{{h{If}}}If}{{{h{Ah{ADn{ce}}}}{h{{ADn{ce}}}}}BfAl{B@fAl}}{{{h{AhIf}}{h{If}}}Bf}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{{ADn{ce}}}}{h{{ADn{ce}}}}}BhBjB@f}{{{h{If}}{h{If}}}Bh}{Bl{{Dn{{ADn{A`}}B@n}}}}{Bl{{Dn{IfB@n}}}}{{{h{Ahc}}}{{Dn{IfAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Kd}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Kb}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Ed}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{{ADn{A`}}}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Nn}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{BA`}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{BAb}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{AAf}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{D`}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{A`}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{AAh}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Kh}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{BAd}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Cn}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Ln}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{{Ff{DfBAf}}}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{Fl}}AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{{ADn{BAh}}AC`}}}{ACbACd}}{{{h{{ADn{BAd}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{BAh}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{{ADn{A`}}}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Cn}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{{Ff{DfBAf}}}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Nn}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Kd}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{AAh}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{BAb}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{BA`}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{D`}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Fl}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Ed}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Kh}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Ln}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{Kb}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{AAf}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{ADn{A`}}}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{If}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AhIf}}{h{G`}}}Bf}{{{h{G`}}}{{Dn{{ADn{A`}}B@l}}}}{{{h{G`}}}{{Dn{{ADn{A`}}AOb}}}}{{{h{Ah{ADn{ce}}}}}BfEhB@f}{{{h{Ah{ADn{ce}}}}g}Bf{}B@f{{Hf{{h{Ahc}}{h{Ahc}}}{{Hd{Ef}}}}}}{{{h{Ah{ADn{ce}}}}i}Bf{}B@fEh{{Hf{{h{Ahc}}}{{Hd{g}}}}}}{{}{{ADn{c}}}{}}{{}If}{{{h{{ADn{ce}}}}}{{h{{Ad{c}}}}}{}B@f}{{{h{If}}}{{h{G`}}}}{{{h{Ah{ADn{ce}}}}}{{h{Ah{Ad{c}}}}}{}B@f}{{{h{AhIf}}}{{h{AhG`}}}}{c{{Dn{{ADn{e}}}}}E`Eb}{c{{Dn{If}}}E`}{{{h{Ah{ADn{ce}}}}g}{{BAj{ce}}}{}B@f{{Hh{Hj}}}}{{{h{AhIf}}c}BAl{{Hh{Hj}}}}{{{h{Ah{ADn{ce}}}}}Bf{}B@f}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{{h{{Ad{A`}}}}}If}0{{{h{AhEn}}{h{{Ad{A`}}}}}{{Dn{BfF`}}}}{{{h{AOb}}{h{AOb}}}Ef}{{{h{B@l}}{h{B@l}}}Ef}{{{h{{ADn{eg}}}}{h{{Ab{c}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{ADn{ci}}}}}Ef{}{{Eh{c}}}B@fB@f}{{{h{{ADn{eg}}}}{h{{h{{Ab{c}}}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{h{{Ad{c}}}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{Ad{c}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{h{Ah{Ad{c}}}}}}}Ef{}{{Eh{c}}}B@f}{{{h{If}}{h{{h{G`}}}}}Ef}{{{h{If}}{h{{AEj{G`}}}}}Ef}{{{h{If}}{h{BBd}}}Ef}{{{h{If}}{h{G`}}}Ef}{{{h{If}}{h{If}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000`{{{h{Ah{ADn{ce}}}}g}Bf{}B@f{{El{}{{Ej{c}}}}}}{{{h{Ah{ADn{ce}}}}g}BfBBfB@f{{El{}{{Ej{{h{c}}}}}}}}{{{h{AhIf}}c}Bf{{El{}{{Ej{If}}}}}}{{{h{AhIf}}c}Bf{{El{}{{Ej{{h{G`}}}}}}}}{{{h{AhIf}}c}Bf{{El{}{{Ej{{h{BBh}}}}}}}}{{{h{AhIf}}c}Bf{{El{}{{Ej{BBh}}}}}}{{{h{AhIf}}c}Bf{{El{}{{Ej{{AEj{G`}}}}}}}}{{{h{AhIf}}c}Bf{{El{}{{Ej{{AJd{G`}}}}}}}}{{{h{Ah{ADn{ce}}}}{h{{Ad{c}}}}}BfAlB@f}{{{h{Ah{ADn{ce}}}}g}BfAlB@f{{Hh{Hj}}}}{{{h{AhIf}}c}Bf{{Hh{Hj}}}}{{{h{Ah{ADn{ce}}}}{h{c}}}BfBBfB@f}{{{h{Ah{ADn{ce}}}}c}Bf{}B@f}{{{h{AhIf}}{h{BBh}}}Bf}{{{h{AhIf}}{AEj{G`}}}Bf}{{{h{AhIf}}{h{G`}}}Bf}{{{h{AhIf}}If}Bf}{{{h{AhIf}}BBh}Bf}{{{h{Ah{ADn{ce}}}}Hj}BfBBfB@f}{{{h{Ah{ADn{ce}}}}Hj}Bf{}B@f}{{{h{AhIf}}Hj}Bf}0{{{h{Ah{ADn{ce}}}}g}{{BBj{cge}}}{}B@f{{Hf{{h{Ahc}}}{{Hd{Ef}}}}}}{{{h{Ah{ADn{A`c}}}}}{{Dn{BfBBl}}}B@f}{{{h{Ah{ADn{A`}}}}}{{Dn{BfACf}}}}{{{h{AOb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{B@l}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{ADn{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}FbB@f}{{{h{If}}{h{AhEn}}}{{Dn{BfF`}}}}0{B@lAOb}{cc{}}{BBnAOb}{AO`AOb}{BC`AOb}3{BCb{{ADn{BCd}}}}{{{Ab{c}}}{{ADn{c}}}{}}{BCf{{ADn{A`}}}}{{{h{{Ab{c}}}}}{{ADn{c}}}Al}{Cd{{ADn{A`}}}}8{BCh{{ADn{M`}}}}{{{h{Ah{Ad{c}}}}}{{ADn{c}}}Al}{{{AEj{{Ad{c}}}}}{{ADn{c}}}{}}{{{BCj{ce}}}{{ADn{ce}}}{}B@f}{If{{ADn{A`}}}}{{{h{{Ad{c}}}}}{{ADn{c}}}Al}{{{AJd{{Ad{c}}e}}}{{ADn{ce}}}{}B@f}{{{h{G`}}}{{ADn{A`}}}}{BCl{{ADn{A`}}}}{{{h{Ah{Ab{c}}}}}{{ADn{c}}}Al}{{{BCn{ce}}}{{ADn{ce}}}{}B@f}{{{AJd{G`}}}If}{{{h{AhG`}}}If}{{{AEj{G`}}}If}{BBhIf}{{{h{If}}}If}{{{h{G`}}}If}{cc{}}{{{h{G`}}}{{Dn{{ADn{A`}}}}}}{e{{ADn{c}}}{}{{El{}{{Ej{c}}}}}}{cIf{{El{}{{Ej{{h{BBh}}}}}}}}{cIf{{El{}{{Ej{BBh}}}}}}{cIf{{El{}{{Ej{{AEj{G`}}}}}}}}{cIf{{El{}{{Ej{{AJd{G`}}}}}}}}{cIf{{El{}{{Ej{If}}}}}}{cIf{{El{}{{Ej{{h{G`}}}}}}}}{{HjHj}{{ADn{c}}}{}}{{A`HjHj}If}{{HjHjc}{{ADn{ec}}}B@f{}}{{{h{G`}}}{{Dn{If}}}}{{{h{{Ad{AEn}}}}}{{Dn{IfBD`}}}}{{{h{{Ad{AEn}}}}}If}{{{h{{Ad{A`}}}}}{{Dn{IfBD`}}}}{{{h{{Ad{A`}}}}}If}10{{{ADn{A`}}}{{Dn{IfBDb}}}}{{{h{{Ad{A`}}}}}{{AEj{G`}}}}{{{ADn{A`}}}If}{{{h{{ADn{ce}}}}{h{Ahg}}}BfGhB@fGf}{{{h{If}}{h{Ahc}}}BfGf}{{{h{{ADn{A`}}}}}Hj}{{{h{{ADn{ce}}}}g}h{}B@f{{Gj{{Ad{c}}}}}}{{{h{If}}c}h{{Gj{G`}}}}{{{h{Ah{ADn{ce}}}}g}{{h{Ah}}}{}B@f{{Gj{{Ad{c}}}}}}{{{h{AhIf}}c}{{h{Ah}}}{{Gj{G`}}}}{{{h{Ah{ADn{ce}}}}Hjc}Bf{}B@f}{{{h{AhIf}}HjBBh}Bf}{{{h{AhIf}}Hj{h{G`}}}Bf}{ce{}{}}000{{{ADn{Cj}}}BDd}{{{ADn{ce}}}{{AJd{{Ad{c}}e}}}{}B@f}{If{{AJd{G`}}}}{If{{ADn{A`}}}}{c{{Dn{BCbBDf}}}{}}{If{{Dn{BCbBDf}}}}{{{ADn{e}}}{}BDh{{BDj{c}}}}{If{{BDl{c}}}BDh}{{{ADn{{Ab{c}}e}}}{{ADn{ce}}}{}B@f}{{{h{Ah{ADn{ce}}}}}{}{}B@f}{{{ADn{ce}}}{}{}B@f}{{{h{{ADn{ce}}}}}{}{}B@f}{{{ADn{ce}}}{{Ff{HjHj}}}{}B@f}{If{{Ff{A`HjHj}}}}{{{ADn{ce}}}{{Ff{HjHje}}}{}B@f}{{{h{If}}{h{G`}}}}{{{h{B@l}}}A`}{{{h{If}}{h{G`}}}Ef}{{{h{{ADn{c}}}}}Ef{}}{{{h{{ADn{ce}}}}}Ef{}B@f}{{{h{If}}}Ef}33{{{h{{ADn{A`c}}}}}EfB@f}{{{ADn{ce}}}{{h{Ah{Ad{c}}}}}{}B@f}{If{{h{AhG`}}}}{{{h{{ADn{ce}}}}}Hj{}B@f}{{{h{If}}}Hj}{{{h{Ah{ADn{c}}}}{ADn{c}}}Bf{}}{{{h{{ADn{eg}}}}{h{{h{Ah{Ad{c}}}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{Ab{c}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{Ad{c}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{ADn{ci}}}}}Ef{}{{Eh{c}}}B@fB@f}{{{h{{ADn{eg}}}}{h{{h{{Ad{c}}}}}}}Ef{}{{Eh{c}}}B@f}{{{h{{ADn{eg}}}}{h{{h{{Ab{c}}}}}}}Ef{}{{Eh{c}}}B@f}?{{{h{If}}{h{{h{G`}}}}}Ef}{{{h{If}}{h{{AEj{G`}}}}}Ef}{{}{{ADn{c}}}{}}{{}If}{c{{ADn{ec}}}B@f{}}{{{h{{ADn{ce}}}}{h{{ADn{cg}}}}}{{Dh{Bh}}}HlB@fB@f}{{{h{If}}{h{If}}}{{Dh{Bh}}}}{{{h{Ah{ADn{ce}}}}}{{Dh{c}}}{}B@f}{{{h{AhIf}}}{{Dh{BBh}}}}{{{h{Ah{ADn{ce}}}}g}{{Dh{c}}}{}B@f{{BDn{{h{Ahc}}}{{Hd{Ef}}}}}}{{{h{Ah{ADn{ce}}}}c}Bf{}B@f}{{{h{AhIf}}BBh}Bf}{{{h{AhIf}}{h{G`}}}Bf}{{{h{Ah{ADn{ce}}}}c}{{Dn{Bfc}}}{}B@f}{{{h{Ah{ADn{ce}}}}Hj}c{}B@f}{{{h{AhIf}}Hj}BBh}{{{h{AhIf}}c}BfBE`}{{{h{AhIf}}c{h{G`}}}Bf{{Hh{Hj}}}}{{{h{Ah{ADn{ce}}}}Hj}Bf{}B@f}{{{h{AhIf}}Hj}Bf}10{{{h{Ah{ADn{ce}}}}Hjc}BfAlB@f}{{{h{Ah{ADn{ce}}}}Hjg}Bf{}B@f{{Hf{}{{Hd{c}}}}}}{{{h{Ah{ADn{ce}}}}g}Bf{}B@f{{Hf{{h{c}}}{{Hd{Ef}}}}}}{{{h{AhIf}}c}Bf{{Hf{BBh}{{Hd{Ef}}}}}}{{{h{Ah{ADn{ce}}}}g}Bf{}B@f{{Hf{{h{Ahc}}}{{Hd{Ef}}}}}}{{{h{{ADn{c}}}}e}DnI`Hn}{{{h{If}}c}DnHn}887{{{h{Ah{ADn{ce}}}}}Bf{}B@f}{{{h{AhIf}}}Bf}{{{h{AOb}}}{{Dh{{h{AOf}}}}}}{{{h{Ah{ADn{ce}}}}}{{h{Ah{Ad{{BEb{c}}}}}}}{}B@f}{{{h{Ah{ADn{ce}}}}gi}{{BEd{e}}}{}B@f{{Hh{Hj}}}{{El{}{{Ej{c}}}}}}{{{h{Ah{ADn{ce}}}}}{{Ff{{h{Ah{Ad{c}}}}{h{Ah{Ad{{BEb{c}}}}}}}}}{}B@f}{{{h{Ah{ADn{ce}}}}Hj}{{ADn{ce}}}{}{AlB@f}}{{{h{AhIf}}Hj}If}{{{h{If}}{h{G`}}}{{Dh{{h{G`}}}}}}0{{{h{Ah{ADn{ce}}}}Hj}c{}B@f}{{{h{c}}}e{}{}}000{{{h{If}}}{{Dn{{BEh{BEf}}BBl}}}}{{{h{{ADn{A`}}}}}{{Dn{IbBEj}}}}{{{h{If}}}{{Dn{IbBEj}}}}{{{h{c}}}If{}}00{{{h{Ah{ADn{ce}}}}Hj}Bf{}B@f}{{{h{AhIf}}Hj}Bf}{c{{Dn{e}}}{}{}}0000000{{{h{Ah{ADn{ce}}}}Hj}{{Dn{BfBEl}}}{}B@f}{{{h{AhIf}}Hj}{{Dn{BfBEl}}}}10{Hj{{Dn{{ADn{c}}BEl}}}{}}{Hj{{Dn{IfBEl}}}}{{Hjc}{{Dn{{ADn{ec}}BEl}}}B@f{}}{{{h{c}}}Ij{}}000{ce{}{}}000{Hj{{ADn{c}}}{}}{HjIf}{{Hjc}{{ADn{ec}}}B@f{}}{{{h{Ah{ADn{A`}}}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{Ah{ADn{A`c}}}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}B@f}{{{h{Ah{ADn{A`c}}}}{h{{Ad{A`}}}}}{{Dn{BfBBl}}}B@f}{{{h{AhIf}}BBh}{{Dn{BfF`}}}}{{{h{AhIf}}{h{G`}}}{{Dn{BfF`}}}}{{{h{Ah{ADn{A`c}}}}{h{{Ad{BEn}}}}}{{Dn{HjBBl}}}B@f}```````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BC`}}}BC`}{{{h{BBn}}}BBn}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{BC`}}{h{BC`}}}Ef}{{{h{BBn}}{h{BBn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{BC`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BBn}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{{{h{BC`}}}{{Ff{DfDf}}}}{ce{}{}}0{{{h{BBn}}}Hj}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}055``````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{BF`}}}BF`}{{{h{BFb}}}BFb}{{{h{BFd}}}BFd}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}}{{h{c}}}BFlBFn}{c{{Dn{{ADn{A`}}BFb}}}{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g}{{Dn{{ADn{A`}}BFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{c{h{e}}}{{Dn{{ADn{A`}}BFb}}}{{ADb{{Ad{A`}}}}}BFj}{{c{h{Ah{Ad{A`}}}}{h{e}}}{{Dn{HjBFd}}}{{ADb{{Ad{A`}}}}}BFj}{{c{h{Ah{ADn{A`}}}}{h{e}}}{{Dn{BfBFb}}}{{ADb{{Ad{A`}}}}}BFj}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBFd}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{ADn{A`}}}}}{{Dn{BfBFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{HjHj}`{cIf{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g}IfBFlBFn{{ADb{{Ad{A`}}}}}}{{c{h{e}}}If{{ADb{{Ad{A`}}}}}BFj}{{c{h{Ah{Ad{A`}}}}{h{e}}}{{Dn{HjBF`}}}{{ADb{{Ad{A`}}}}}BFj}{{c{h{AhIf}}{h{e}}}Bf{{ADb{{Ad{A`}}}}}BFj}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBF`}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{AhIf}}}BfBFlBFn{{ADb{{Ad{A`}}}}}}{{HjEf}{{Dh{Hj}}}}`{{{h{BF`}}{h{BF`}}}Ef}{{{h{BFb}}{h{BFb}}}Ef}{{{h{BFd}}{h{BFd}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{BF`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BFb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BFd}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{BFbBFd}1{ce{}{}}00``{{{h{BFd}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}00{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00555`````````````{{{h{BG`}}}{{h{G`}}}}{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BG`}}}BG`}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{BG`}}{h{BG`}}}Ef}{{{h{BGb}}{h{BGb}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{BG`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BGb}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{ce{}{}}0{{{h{G`}}}{{Dn{BG`BGb}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}{{{h{G`}}}{{Dn{BG`}}}}111{{{h{c}}}Ij{}}066`{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{BGd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}BFj}:9{{{h{{Ad{A`}}}}{h{c}}}{{BGd{c}}}BFj}7664:````````````33332222{{{h{BGf}}}BGf}{{{h{BGh}}}BGh}{{{h{BGj}}}BGj}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}}{{h{c}}}BFlBFn}{{{h{BGf}}}h}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g}{{Dn{{ADn{A`}}BFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBFd}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{ADn{A`}}}}}{{Dn{BfBFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{BFn}}}Hj}{{}BGh}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g}IfBFlBFn{{ADb{{Ad{A`}}}}}}{{{h{BFl}}}Ef}{{{h{BGh}}}Ef}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBF`}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{AhIf}}}BfBFlBFn{{ADb{{Ad{A`}}}}}}{{{h{BGj}}{h{BGj}}}Ef}{{{h{BGl}}{h{BGl}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{BGf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BGh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BGj}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BGl}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}000`{ce{}{}}000{{{h{BG`}}BGh}BGf}?{{{h{c}}}e{}{}}00{c{{Dn{e}}}{}{}}0000000{{{h{c}}}Ij{}}0004444{{BGhEf}BGh}{{BGhBGj}BGh}1```````````````{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}}{{h{c}}}BFlBFn}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g}{{Dn{{ADn{A`}}BFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBFd}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{ADn{A`}}}}}{{Dn{BfBFb}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g}IfBFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{Ah{Ad{A`}}}}}{{Dn{HjBF`}}}BFlBFn{{ADb{{Ad{A`}}}}}}{{{h{{BFj{}{{BFf{c}}{BFh{e}}}}}}g{h{AhIf}}}BfBFlBFn{{ADb{{Ad{A`}}}}}}`{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{BGn{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}BFjBH`}{cc{}}{ce{}{}}{{{BGn{ce}}}eBFjBH`}{{c{h{e}}}{{BGn{ec}}}BH`BFj}{{{h{Ah{BGn{ce}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjBBl}}}BFjBH`}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}5```9988{{{h{AhBHb}}{h{G`}}}Bf}{{{h{Ah{BHd{ce}}}}}BfBFjBHf}{{{h{Ah{BHd{ce}}}}}{{Dn{eBBl}}}BFjBHf}{{{h{Ah{BHd{ce}}}}}{{Dn{BfBBl}}}BFjBHf}{{{h{Ah{BHh{ce}}}}}{{Dn{BfBBl}}}BFjBHb}{{{h{{BHd{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}BFjBHf}<<{{c{h{e}}}{{BHh{ec}}}BHbBFj}<<{{{BHd{ce}}}eBFjBHf}{{{BHh{ce}}}eBFjBHb}{{c{h{e}}}{{BHd{ec}}}BHfBFj}{{{h{c}}}{{BHh{cIf}}}BFj}<<<<;;{ce{}{}}0{{{h{Ah{BHd{ce}}}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}BFjBHf}{{{h{Ah{BHh{ce}}}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}BFjBHb}``````````````````````````````````````````````````````{{{h{ALj}}ALj}ALj}{{ALj{h{ALj}}}ALj}{{ALjALj}ALj}{{{h{ALj}}{h{ALj}}}ALj}{{{h{AhALj}}ALj}Bf}{{{h{BHj}}}{{h{{Ad{A`}}}}}}{{{h{ALj}}}{{h{A`}}}}{{{h{BHj}}}{{h{G`}}}}{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000{{{h{BHj}}}BHl}{BHn{{BI`{BHn}}}}{{{h{BHj}}}BIb}{{{h{ALj}}}ALj}{{{h{BHj}}}BHj}{{{h{BId}}}BId}{{{h{BIf}}}BIf}{{{h{BIh}}}BIh}{{{h{BIj}}}BIj}{{{h{BIl}}}BIl}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{BHj}}{h{BHj}}}Bh}{{{h{BId}}{h{BId}}}Bh}{{{h{BIf}}{h{BIf}}}Bh}{{{h{BIh}}{h{BIh}}}Bh}{{{h{G`}}}{{Dn{{Ff{BHj{ADn{A`}}}}BIj}}}}{{{h{ALj}}{h{ALj}}}ALj}{{{h{ALj}}ALj}ALj}{{ALjALj}ALj}{{ALj{h{ALj}}}ALj}{{{h{AhALj}}ALj}Bf}{{BHj{h{{Ad{A`}}}}}{{Dn{IfBIl}}}}0{{{h{Ahc}}BHj{h{{Ad{A`}}}}}{{Dn{BfBIl}}}AEd}{{{h{Ahc}}BHj{h{{Ad{A`}}}}}{{Dn{BfBIn}}}BHf}10210{{BHj{h{{Ad{A`}}}}}{{Dn{HjBJ`}}}}{{{h{ALj}}{h{ALj}}}Ef}{{{h{BHj}}{h{BHj}}}Ef}{{{h{BId}}{h{BId}}}Ef}{{{h{BIf}}{h{BIf}}}Ef}{{{h{BIh}}{h{BIh}}}Ef}{{{h{BIj}}{h{BIj}}}Ef}{{{h{BIl}}{h{BIl}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000000000{BJb{{BJd{BJb}}}}{{{h{ALj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BHj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BIj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BIl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BIn}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{AAbALj}1111{BJfBIj}22{BJ`BIl}{F`BIl}{BJ`BIn}5{BBlBIn}{BBh{{Dn{ALjBJh}}}}{A`ALj}{{{h{ALj}}{h{Ahc}}}BfGf}{{{h{BHj}}{h{Ahc}}}BfGf}{{{h{BId}}{h{Ahc}}}BfGf}{{{h{BIf}}{h{Ahc}}}BfGf}{{{h{BIh}}{h{Ahc}}}BfGf}`{ce{}{}}0000000{{{h{BHj}}}Ef}0000{{}{{`{{Gn{}{{Ej{ALj}}}}}}}}{{{h{BHj}}}Hj}{{{h{BHj}}}BJj}{{{h{BHj}}}BJl}{{ALjALj}ALj}{{{h{ALj}}ALj}ALj}{{ALj{h{ALj}}}ALj}{{{h{ALj}}{h{ALj}}}ALj}{{{h{AhALj}}ALj}Bf}{{{h{G`}}}{{Dn{BHjBJn}}}}{{{h{G`}}}BHj}{{{h{BHj}}{h{BHj}}}{{Dh{Bh}}}}{{{h{BId}}{h{BId}}}{{Dh{Bh}}}}{{{h{BIf}}{h{BIf}}}{{Dh{Bh}}}}{{{h{BIh}}{h{BIh}}}{{Dh{Bh}}}}`{{}Bf}`{{{h{BIj}}}{{Dh{{h{AOf}}}}}}{{{h{BIl}}}{{Dh{{h{AOf}}}}}}{{{h{BIn}}}{{Dh{{h{AOf}}}}}}>;=<:{ALjBBh}{{{h{BHj}}}If}{{{h{c}}}e{}{}}000000{{{h{c}}}If{}}0000{ALjA`}{BB`{{Dn{ALj}}}}{c{{Dn{e}}}{}{}}{A@`{{Dn{ALj}}}}{BBb{{Dn{ALj}}}}{AD`{{Dn{ALj}}}}{BK`{{Dn{ALj}}}}{BAn{{Dn{ALj}}}}{AEn{{Dn{ALj}}}}{Df{{Dn{ALj}}}}{A`{{Dn{ALj}}}}{Ed{{Dn{ALj}}}}999999999999999{{{h{c}}}Ij{}}0000000{ce{}{}}0000000{{BJb{h{BHj}}}{{BKb{BJbc}}}BKd}``````````````````````````{{BKfBKf}BKf}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{BKh{c}}}}}{{BKh{c}}}{AlBKd}}{{{h{BKf}}}BKf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{}{{BKh{c}}}BKd}{{{h{{BKh{c}}}}{h{{BKh{c}}}}}Ef{EhBKd}}{{{h{BKf}}{h{BKf}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{{BKh{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbBKd}}{{{h{BKf}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00{{{h{Ah{BKh{c}}}}ALj}BfBKd}{{{h{Ah{BKh{c}}}}BHj}BfBKd}{{{h{Ah{BKh{c}}}}}BfBKd}{ce{}{}}00{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}1{{{h{AhBKj}}HjA`}A`}{{{h{AhBKf}}HjA`}A`}{{{h{BHj}}}BKl}>{{{h{AhBKl}}}{{Dh{ALj}}}}{{{h{{BKh{c}}}}}hBKd}{{}Bf}{{{h{BKl}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{c}}}e{}{}}0{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00{{{h{BKj}}Hj}A`}{{{h{BKf}}Hj}A`}>>>``````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000000000{{{h{BKn}}}BL`}{{{h{BLb}}}BL`}{{{h{BLd}}}BLd}{{{h{BLf}}}BLf}{{{h{BJf}}}BJf}{{{h{BLh}}}BLh}{{{h{BLj}}}BLj}{{{h{BJ`}}}BJ`}{{{h{BLl}}}BLl}{{{h{BLn}}}BLn}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000`{{{h{BM`}}}{{h{{Ad{A`}}}}}}{{{h{BKn}}}{{h{{Ad{A`}}}}}}{{{h{BLb}}}{{h{{Ad{A`}}}}}}`{{{h{BLd}}{h{BLd}}}Ef}{{{h{BLf}}{h{BLf}}}Ef}{{{h{BJf}}{h{BJf}}}Ef}{{{h{BLh}}{h{BLh}}}Ef}{{{h{BLj}}{h{BLj}}}Ef}{{{h{BJ`}}{h{BJ`}}}Ef}{{{h{BLl}}{h{BLl}}}Ef}{{{h{BLn}}{h{BLn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000000000{{{h{BKn}}}BMb}{{{h{BM`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BKn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BLb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BLd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BLf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BJf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BLh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BLj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BJ`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BLl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BLn}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}00000{BJfBLd}1{BLnBLd}{BLjBLd}{BMdBLd}{BLjBLf}5{BJfBLf}6{BJnBJf}{BLhBJf}888{BJ`BLl}99{{{h{BM`}}}Ef}{{{h{BLb}}}Ef}{{{h{BM`}}}BHj}{{{h{BKn}}}BHj}{{{h{BLb}}}BHj}{ce{}{}}0000000000000{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}00111{{{h{BL`}}}Hj}{{{h{BMb}}}Hj}{{{h{G`}}}{{Dn{BM`BJf}}}}{{{h{G`}}}{{Dn{BKnBLf}}}}{{{h{G`}}}{{Dn{BLbBLd}}}}0{{{h{AhBL`}}}{{Dh{A`}}}}{{{h{AhBMf}}}{{Dh{ALj}}}}{{{h{AhBMb}}}{{Dh{ALj}}}}{BM`BKn}{{{h{AhBM`}}}{{Dh{ALj}}}}{{{h{AhBKn}}}{{Dh{ALj}}}}{{{h{BL`}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BMf}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BMb}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BLd}}}{{Dh{{h{AOf}}}}}}{{{h{BLf}}}{{Dh{{h{AOf}}}}}}{{{h{BJf}}}{{Dh{{h{AOf}}}}}}{{{h{BLh}}}{{Dh{{h{AOf}}}}}}{{{h{BLj}}}{{Dh{{h{AOf}}}}}}{{{h{BJ`}}}{{Dh{{h{AOf}}}}}}{{{h{BLl}}}{{Dh{{h{AOf}}}}}}{{{h{BLn}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0000000{{{h{c}}}If{}}0000000{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}00{c{{Dn{e}}}{}{}}000000000000000000000000000{{{h{c}}}Ij{}}0000000000000{BM`{{Dn{BKnBLj}}}}{{{h{BM`}}}{{Dn{BfBLj}}}}{BKn{{Dn{BLbBLd}}}}{{{h{BKn}}}{{Dn{BfBLn}}}}{{{h{BKn}}ALj}{{Dn{BfBMd}}}}{ce{}{}}0000000000000{{{h{BM`}}}{{Dh{ALj}}}}{{{h{BKn}}}{{Dh{ALj}}}}{{{h{BLb}}}ALj}`````{{{h{c}}}{{h{e}}}{}{}}0000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000{{{BKb{ce}}}{{BMh{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{BKb{ce}}}{{BMj{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{{BKb{ce}}}}}{{BKb{ce}}}{Al{Gn{}{{Ej{ALj}}}}}{AlBKd}}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{{BKb{ce}}}}{h{{BKb{ce}}}}}Ef{Eh{Gn{}{{Ej{ALj}}}}}{EhBKd}}{{{h{c}}{h{e}}}Ef{}{}}0{{{BKb{ce}}}{{BMl{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{cc{}}0000====={c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}000>>>>{{{Dh{ALj}}c}{{BMn{c}}}{{Gn{}{{Ej{ALj}}}}}}{{{h{BHj}}{BMn{c}}}{{BMj{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{BMj{ce}}}{{BMh{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{BHj}}{BMn{c}}}{{BMl{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{c{h{BHj}}}{{BKb{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{Ah{BMn{c}}}}}{{Dh{ALj}}}{{Gn{}{{Ej{ALj}}}}}}{{{h{Ah{BMj{ce}}}}}{{Dh{BBh}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{Ah{BMh{ce}}}}}{{Dh{A`}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{Ah{BMl{ce}}}}}{{Dh{ALj}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{{BMn{c}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{ALj}}}}}}{{{h{{BMj{ce}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{{BMh{ce}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{{BMl{ce}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{c}}}e{}{}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}000{c{{Dn{e}}}{}{}}000000000{{{h{c}}}Ij{}}0000{ce{}{}}0000{{{BKb{ce}}ALj}{{BKb{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}```````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BJh}}}BJh}{{{h{BN`}}}BN`}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{BJh}}{h{BJh}}}Ef}{{{h{BN`}}{h{BN`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{BJh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BN`}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{BNbBN`}1{AO`BN`}>>{{{h{BJh}}}{{Dh{{h{AOf}}}}}}{{{h{BN`}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0{ce{}{}}0``````````````{{{h{c}}}{{h{e}}}{}{}}0000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000{{{h{BJn}}}BJn}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{BJn}}{h{BJn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{BJn}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}000088888{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}0009999{{{h{BHl}}}Hj}{{{h{BIb}}}Hj}{{{h{BJj}}}Hj}{{{h{BJl}}}Hj}{{{h{AhBHl}}}{{Dh{A`}}}}{{{h{AhBIb}}}{{Dh{BBh}}}}{{{h{AhBJj}}}{{Dh{A`}}}}{{{h{AhBJl}}}{{Dh{BBh}}}}{{{h{AhBHl}}}Dh}{{{h{AhBIb}}}Dh}{{{h{AhBJj}}}Dh}{{{h{AhBJl}}}Dh}{{{h{BHl}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BIb}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BJj}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BJl}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{BJn}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}000{c{{Dn{e}}}{}{}}000000000{{{h{c}}}Ij{}}0000{ce{}{}}0000`````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{BHn{{BI`{BHn}}}}{{{h{{BI`{c}}}}}{{BI`{c}}}{Al{Gn{}{{Ej{A`}}}}}}{{{h{{BJd{c}}}}}{{BJd{c}}}{Al{Gn{}{{Ej{ALj}}}}}}{{{h{{BNd{ce}}}}}{{BNd{ce}}}{Al{Gn{}{{Ej{ALj}}}}}{AlBKd}}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{{BI`{c}}}}{h{{BI`{c}}}}}Ef{Eh{Gn{}{{Ej{A`}}}}}}{{{h{{BJd{c}}}}{h{{BJd{c}}}}}Ef{Eh{Gn{}{{Ej{ALj}}}}}}{{{h{{BNd{ce}}}}{h{{BNd{ce}}}}}Ef{Eh{Gn{}{{Ej{ALj}}}}}{EhBKd}}{{{h{c}}{h{e}}}Ef{}{}}00000{BJb{{BJd{BJb}}}}{cc{}}00==={c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}00>>>{{{h{{BI`{c}}}}}Hj{{Gn{}{{Ej{A`}}}}BNf}}{{{h{{BJd{c}}}}}Hj{{Gn{}{{Ej{ALj}}}}BNf}}{c{{BNd{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{BHjc}{{BNd{ce}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{Ah{BI`{c}}}}}{{Dh{ALj}}}{{Gn{}{{Ej{A`}}}}}}{{{h{Ah{BJd{c}}}}}{{Dh{A`}}}{{Gn{}{{Ej{ALj}}}}}}{{{h{Ah{BNd{ce}}}}}{{Dh{ALj}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{{BI`{c}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{A`}}}}}}{{{h{{BJd{c}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{ALj}}}}}}{{{h{{BNd{ce}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{ALj}}}}}BKd}{{{h{c}}}e{}{}}00{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}00{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00{ce{}{}}00{{BJb{h{BHj}}}{{BKb{BJbc}}}BKd}````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BNh}}}BNh}{{{h{BMd}}}BMd}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{BNh}}{h{BNh}}}Ef}{{{h{BMd}}{h{BMd}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{BNh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BMd}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0<<{{HjALj}Ef}{ALjEf}{{{h{BNh}}}{{Dh{{h{AOf}}}}}}{{{h{BMd}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0{{HjALj}{{Dn{BfBMd}}}}{ALj{{Dn{BfBNh}}}}{ce{}{}}0````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{AOd}}}AOd}{{{h{BNj}}}BNj}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{G`}}}{{Dn{{Ff{BHjALj{ADn{A`}}}}AOd}}}}{{BHjALj{h{{Ad{A`}}}}}{{Dn{IfBNj}}}}{{{h{Ahc}}BHjALj{h{{Ad{A`}}}}}{{Dn{BfF`}}}AEd}{{{h{Ahc}}BHjALj{h{{Ad{A`}}}}}{{Dn{BfBBl}}}BHf}1010{{BHj{h{{Ad{A`}}}}}{{Dn{IfBNj}}}}0{{BHjALj{h{{Ad{A`}}}}}{{Dn{HjBLl}}}}{{{h{AOd}}{h{AOd}}}Ef}{{{h{BNj}}{h{BNj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{AOd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BNj}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{BLdAOd}{F`BNj}2{BNhBNj}{BLlBNj}{BMdBNj}{ce{}{}}0{{{h{AOd}}}{{Dh{{h{AOf}}}}}}{{{h{BNj}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}066`````````{{{h{BAd}}}{{h{{Ab{A`}}}}}}{{{h{AhBAd}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhBAd}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhBAd}}}A`}{{{h{BAd}}}A`}{{{h{BA`}}}{{h{Cn}}}}5{{{h{BAd}}}{{h{{Ad{A`}}}}}}``{{{h{c}}}{{h{e}}}{}{}}00710000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00670000{{{h{Fl}}Ed}{{Ff{EdEd}}}}{{{h{BNl}}}BNl}{{{h{BA`}}}BA`}{{{h{BAd}}}BAd}{{{h{BNn}}}BNn}{{{h{BO`}}}BO`}{{{h{BOb}}}BOb}{{{h{BOd}}}BOd}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{BA`}}{h{BA`}}}Bh}{{{h{BAd}}{h{BAd}}}Bh}{{{h{BNn}}{h{BNn}}}Bh}{{{h{BO`}}{h{BO`}}}Bh}{{{h{BOd}}{h{BOd}}}Bh}{{{h{Ahc}}}{{Dn{BA`AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{BAdAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{BNnAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{BO`AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{BOdAC`}}}{ACbACd}}20{{{h{BA`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{BAd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{BNn}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{BO`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{BOd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{}BAd}{c{{Dn{BAd}}}E`}{{{h{BNl}}{h{BNl}}}Ef}{{{h{BA`}}{h{BA`}}}Ef}{{{h{BAd}}{h{BAd}}}Ef}{{{h{BNn}}{h{BNn}}}Ef}{{{h{BO`}}{h{BO`}}}Ef}{{{h{BOb}}{h{BOb}}}Ef}{{{h{BOd}}{h{BOd}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000000000{{{h{BNl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BA`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BAd}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{BNn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BO`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BOb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BOd}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}{AO`BNl}1{{{h{{Ab{A`}}}}}BAd}{{{Ab{A`}}}BAd}33333{{{h{O`}}EdDf{h{{Ad{Hj}}}}}{{Dn{BNnBNl}}}}{{{h{G`}}}{{Dn{BAdBOf}}}}{{{h{BO`}}{h{O`}}}{{Dn{BOdBOb}}}}{{{h{G`}}}{{Dn{BAd}}}}{{{h{BA`}}{h{Ahc}}}BfGf}{{{h{BAd}}{h{Ahc}}}BfGf}{{{h{BNn}}{h{Ahc}}}BfGf}{{{h{BO`}}{h{Ahc}}}BfGf}{{{h{BOd}}{h{Ahc}}}BfGf}``{{{h{BAd}}c}h{}}`{ce{}{}}000000{{{h{BAd}}}Ef}{{{h{BAd}}}Hj}`{{{h{BA`}}{h{BA`}}}{{Dh{Bh}}}}{{{h{BAd}}{h{BAd}}}{{Dh{Bh}}}}{{{h{BNn}}{h{BNn}}}{{Dh{Bh}}}}{{{h{BO`}}{h{BO`}}}{{Dh{Bh}}}}{{{h{BOd}}{h{BOd}}}{{Dh{Bh}}}}`{{{h{BAd}}c}DnHn}`{{{h{BNl}}}{{Dh{{h{AOf}}}}}}{{{h{BOb}}}{{Dh{{h{AOf}}}}}}{BAd{{Ab{A`}}}}{{{h{c}}}e{}{}}000000{{{h{c}}}If{}}00`{c{{Dn{e}}}{}{}}0{{{h{{Ad{A`}}}}}{{Dn{BAd}}}}111111111111`{{{h{c}}}Ij{}}000000{ce{}{}}000000{{{h{c}}{Ff{EdEd}}}BAd{{ADb{{Ad{A`}}}}}}````````````{{{h{Ah{BOh{c}}}}{h{{Ad{A`}}}}}BfACh}{{{h{Ah{BOj{c}}}}{h{{Ad{A`}}}}}BfACh}{{{h{Ah{BOh{c}}}}g}{{Dn{BfBOl}}}ACh{{Dj{Md}}}{{AFf{{h{AAd}}}{{Hd{{Dn{eBOl}}}}}}}}{{{h{Ah{BOh{c}}}}}BfACh}{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000{{{h{BOn}}}BOn}{{{h{c}}{h{Ahe}}}Bf{}{}}`{{{h{BOn}}{h{BOn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{BOn}}{h{Kd}}}Kd}{{{h{Ah{BOh{c}}}}}{{Dn{HjACf}}}ACh}{{{h{Ah{BOj{c}}}}}{{Dn{HjACf}}}ACh}{{{h{Ah{C@`{c}}}}}{{Dn{HjACf}}}ACh}{{{h{BOl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BOn}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}000000{AO`BOl}{ACfBOl}2{ce{}{}}0000000{{{h{C@b}}{h{Ahc}}e}{{Dn{EfBOl}}}{ACbACd}Gn}{{{h{C@d}}{h{Ahc}}e}{{Dn{EfBOl}}}{ACbACd}Gn}{{{h{BOn}}{h{D`}}c}{{Dn{EfBOl}}}Gn}210{{{h{Ahc}}{h{O`}}}{{BOh{c}}}ACh}{{{h{D`}}}C@b}{{EdEdEdA`}C@d}{{{h{Ahc}}EdEdEdA`}{{BOj{c}}}ACh}{{{h{Ahc}}}{{C@f{c}}}{ACbACd}}{{{h{Ahc}}}{{C@`{c}}}ACh}{{{h{{Ad{A`}}}}}BOn}{{{h{O`}}e}{{Dn{BOnBOl}}}{{Dj{Md}}}{{AFf{{h{AAd}}}{{Hd{{Dn{cBOl}}}}}}}}{{{h{Ah{C@f{c}}}}A`}{{Dn{EdACf}}}{ACbACd}}{{{h{BOl}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000000000000000{{{h{c}}}Ij{}}0000000{ce{}{}}0000000{{{h{Ah{C@`{c}}}}EdA`}{{Dn{HjACf}}}ACh}`````````````````````````````{{{h{C@h}}}{{h{{Ab{A`}}}}}}{{{h{C@j}}}{{h{{Ab{A`}}}}}}{{{h{AhC@h}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhC@h}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhC@j}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhC@j}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhC@h}}}A`}{{{h{AhC@j}}}A`}{{{h{C@h}}}A`}{{{h{C@j}}}A`}9{{{h{C@h}}}{{h{{Ad{A`}}}}}}{{{h{C@j}}}{{h{{Ad{A`}}}}}}:{{{h{BCd}}}{{h{{Ad{BCd}}}}}}{{{h{BCb}}}{{h{{Ad{BCd}}}}}}{{{h{c}}}{{h{e}}}{}{}}04>3=0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}<=0;0:000000{{}Ef}0``````{{{h{BCb}}BCd}BCb}``````{{{h{BCb}}BCd}C@l}{{{h{AEh}}{h{{Jd{c}}}}BCd}{{Dn{AEhBDf}}}Jl}{{{h{AEh}}BCd}{{Dn{{Ff{AJnC@h}}BDf}}}}{{{h{C@h}}}C@h}{{{h{C@j}}}C@j}{{{h{C@n}}}C@n}{{{h{AEh}}}AEh}{{{h{BCd}}}BCd}{{{h{BCb}}}BCb}{{{h{BDf}}}BDf}{{{h{CA`}}}CA`}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000{{{h{C@h}}{h{C@h}}}Bh}{{{h{C@j}}{h{C@j}}}Bh}{{{h{AEh}}{h{AEh}}}Bh}{{{h{BCd}}{h{BCd}}}Bh}{{{h{BCb}}{h{BCb}}}Bh}{{{h{{Ad{A`}}}}}{{Dn{C@nBDf}}}}{{{h{{Ad{A`}}}}}{{Dn{AEhBDf}}}}{{}C@j}{{}BCb}``````{{{h{C@n}}{h{{Jd{c}}}}{h{e}}}{{Dn{C@nBDf}}}AGf{{ADb{{Ad{BCd}}}}}}{{{h{AEh}}{h{{Jd{c}}}}{h{e}}}{{Dn{AEhBDf}}}Jl{{ADb{{Ad{BCd}}}}}}{c{{Dn{C@h}}}E`}{c{{Dn{C@j}}}E`}{c{{Dn{C@n}}}E`}{c{{Dn{AEh}}}E`}{c{{Dn{BCd}}}E`}{c{{Dn{BCb}}}E`}{{{h{C@n}}}{{Ab{A`}}}}{{{h{AEh}}}{{Ab{A`}}}}{{{h{C@h}}{h{C@h}}}Ef}{{{h{C@j}}{h{C@j}}}Ef}{{{h{C@n}}{h{C@n}}}Ef}{{{h{AEh}}{h{AEh}}}Ef}{{{h{BCd}}{h{BCd}}}Ef}{{{h{BCb}}{h{BCb}}}Ef}{{{h{BDf}}{h{BDf}}}Ef}{{{h{CA`}}{h{CA`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000000000{{{h{BCb}}c}BCb{{ADb{{Ad{BCd}}}}}}{{{h{C@n}}{h{{Jd{c}}}}}C@jAGf}{{{h{AEh}}}C@j}{{{h{C@h}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{C@j}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{C@n}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AEh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BCd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BCb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BDf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CA`}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{{{Ab{A`}}}C@h}1{{{h{{Ab{A`}}}}}C@h}{{{h{{Ab{A`}}}}}C@j}3{{{Ab{A`}}}C@j}44{DfBCd}5{{{h{{Ad{BCd}}}}}BCb}{{{ADn{BCd}}}BCb}77{CA`BDf}{AObBDf}{JjBDf}{AO`BDf};{Df{{Dn{BCdBDf}}}}{{{h{G`}}}{{Dn{C@hBOf}}}}{{{h{G`}}}{{Dn{C@jBOf}}}}{cBCb{{El{}{{Ej{BCd}}}}}}3{{{h{{Jd{c}}}}{h{C@n}}}AEhAGf}{{{h{G`}}}{{Dn{C@h}}}}{{{h{G`}}}{{Dn{C@j}}}}{{{h{G`}}}{{Dn{C@nBDf}}}}{{{h{G`}}}{{Dn{AEhBDf}}}}{{{h{G`}}}{{Dn{BCdBDf}}}}{{{h{G`}}}{{Dn{BCbBDf}}}}{{{h{C@n}}CAb{h{{Jd{c}}}}}{{Dn{{Dh{AAn}}}}}AGf}{{{h{BCb}}}C@l}{{{h{C@h}}{h{Ahc}}}BfGf}{{{h{C@j}}{h{Ahc}}}BfGf}{{{h{AEh}}{h{Ahc}}}BfGf}{{{h{BCd}}{h{Ahc}}}BfGf}{{{h{BCb}}{h{Ahc}}}BfGf}{{{h{C@n}}{h{{Jd{c}}}}}KfAGf}{{{h{AEh}}}Kf}{BCd{{Dn{BCdBDf}}}}{{{h{C@h}}c}h{}}{{{h{C@j}}c}h{}}{{{h{BCb}}c}h{}}{ce{}{}}00000000{{BCbBCd}BCb}{CAd{{Dn{BCbBDf}}}}{c{{Dn{BCbBDf}}}{}}{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}4{{{h{BCb}}}}{{{h{CA`}}}Hj}{{{h{C@h}}}Ef}{{{h{C@j}}}Ef}{{{h{BCb}}}Ef}{{{h{BCd}}}Ef}10{{{h{C@h}}}Hj}{{{h{C@j}}}Hj}{{{h{BCb}}}Hj}{{}BCb}``````{{c{h{{Ad{A`}}}}}{{Dn{C@nBDf}}}{{AHd{ABf}}}}{{{h{AhC@l}}}Dh}{{{h{BCb}}}C@l}``````{{{h{C@h}}{h{C@h}}}{{Dh{Bh}}}}{{{h{C@j}}{h{C@j}}}{{Dh{Bh}}}}{{{h{AEh}}{h{AEh}}}{{Dh{Bh}}}}{{{h{BCd}}{h{BCd}}}{{Dh{Bh}}}}{{{h{BCb}}{h{BCb}}}{{Dh{Bh}}}}``````{{{h{C@h}}c}DnHn}{{{h{C@j}}c}DnHn}{{{h{C@n}}c}DnHn}{{{h{AEh}}c}DnHn}{{{h{BCd}}c}DnHn}{{{h{BCb}}c}DnHn}{{{h{BDf}}}{{Dh{{h{AOf}}}}}}{{{h{BCb}}BCd}C@l}{C@h{{Ab{A`}}}}{C@j{{Ab{A`}}}}{{C@n{h{{Jd{c}}}}}AGbAGf}{{{h{c}}}e{}{}}0000000{C@nAAn}{AEhAAl}{{{h{c}}}If{}}0000000{{{h{BCb}}}{{ADn{Df}}}}{AEhJb}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}0{{{h{{Ad{A`}}}}}{{Dn{C@h}}}}1{{{h{{Ad{A`}}}}}{{Dn{C@j}}}}222222222222222{{{h{c}}}Ij{}}00000000{ce{}{}}00000000{{{h{C@n}}{h{{Jd{c}}}}}C@jAGf}{{{h{AEh}}{h{{Jd{c}}}}}C@jAGf}`````````````````````````````````{{{h{Fl}}}D`}{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{Fl}}}Fl}{{{h{CAf}}}CAf}{{{h{Ob}}}Ob}{{{h{CAh}}}CAh}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{Fl}}{h{Fl}}}Bh}{{{h{CAf}}{h{CAf}}}Bh}{{{h{Ahc}}}{{Dn{FlAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{CAfAC`}}}{ACbACd}}1{{{h{Fl}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{CAf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{}CAf}{c{{Dn{Fl}}}E`}{c{{Dn{CAf}}}E`}{{{h{Fl}}c}AD`{{ADb{Nh}}}}{{{h{Fl}}}ADd}{{{h{Fl}}{h{Fl}}}Ef}{{{h{CAf}}{h{CAf}}}Ef}{{{h{Ob}}{h{Ob}}}Ef}{{{h{CAh}}{h{CAh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000{{{h{Fl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{CAf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Ob}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CAh}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}00{AO`Ob}{AO`CAh}2{BB`CAf}{{{h{Fl}}{h{Ahc}}}BfGf}{{{h{CAf}}{h{Ahc}}}BfGf}`{ce{}{}}000{{{h{CAf}}A`}Ef}``{{{h{Fl}}{h{Fl}}}{{Dh{Bh}}}}{{{h{CAf}}{h{CAf}}}{{Dh{Bh}}}}`{{{h{Fl}}c}DnHn}{{{h{CAf}}c}DnHn}{{{h{Ob}}}{{Dh{{h{AOf}}}}}}{{{h{CAh}}}{{Dh{{h{AOf}}}}}}{{{h{Fl}}}ABh}`{CAfBB`}{{{h{c}}}e{}{}}000{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}0000000`{{{h{c}}}Ij{}}000{{{h{Fl}}ABh}{{Dn{D`CAh}}}}`>>>>{{{h{Fl}}}J`}````````````````````{{{h{Oh}}}{{h{{Ab{A`}}}}}}{{{h{AhOh}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhOh}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhOh}}}A`}{{{h{Oh}}}A`}{{{h{Oh}}}{{h{{Ad{A`}}}}}}550{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}56{{{h{Oh}}}Oh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Oh}}{h{Oh}}}Bh}{c{{Dn{Oh}}}E`}{{{h{Oh}}{h{Oh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{Oh}}{h{AhEn}}}{{Dn{BfF`}}}}000{cc{}}{{{h{{Ab{A`}}}}}Oh}{{{Ab{A`}}}Oh}{D`Oh}{{{h{G`}}}{{Dn{OhBOf}}}}{{{h{G`}}}{{Dn{Oh}}}}{cO`{{ADb{Nh}}}}{{{h{Oh}}{h{Ahc}}}BfGf}{{{h{Oh}}c}h{}}{ce{}{}}{{{h{Oh}}}Ef}{{{h{Oh}}}Hj}{{{h{Oh}}{h{Oh}}}{{Dh{Bh}}}}{{{h{Oh}}c}DnHn}{Oh{{Ab{A`}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}{{{h{{Ad{A`}}}}}{{Dn{Oh}}}}1{{{h{c}}}Ij{}}{cOh{{ADb{Nh}}}}{ChOh}<```````````````````{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{c}}Oj}Ef{}}{{{h{Oj}}Oj}Ef}{{{h{c}}On}Ef{}}{{{h{AJf}}}AJf}{{{h{CAj}}}CAj}{{{h{AJh}}}AJh}{{{h{CAl}}}CAl}{{{h{CAn}}}CAn}{{{h{Oj}}}Oj}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{AJf}}{h{AJf}}}Bh}{{{h{AJh}}{h{AJh}}}Bh}{{{h{Ahc}}}{{Dn{OjAC`}}}{ACbACd}}{{{h{Oj}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{c{{Dn{AJf}}}E`}{c{{Dn{AJh}}}E`}{c{{Dn{Oj}}}E`}{{{h{AJf}}{h{AJf}}}Ef}{{{h{CAj}}{h{CAj}}}Ef}{{{h{AJh}}{h{AJh}}}Ef}{{{h{CAl}}{h{CAl}}}Ef}{{{h{CAn}}{h{CAn}}}Ef}{{{h{Oj}}{h{Oj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000000000{{{h{AJf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CAj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AJh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CAl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CAn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Oj}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{CB`CAj}1{CB`CAl}222{CBbOj}{AJhOj}{AJfOj}{Df{{Dn{AJfCAn}}}}{Df{{Dn{AJhCAn}}}}{DfOj}{Df{{Dn{OjCAn}}}}{{{h{G`}}}{{Dn{AJfCAj}}}}{{{h{G`}}}{{Dn{AJhCAl}}}}{{{h{G`}}}{{Dn{OjAG`}}}}{{{h{G`}}}{{Dn{AJf}}}}{{{h{G`}}}{{Dn{AJh}}}}{{{h{G`}}}{{Dn{Oj}}}}6{{{h{G`}}}{{Dn{OjAI`}}}}{{{h{AJf}}{h{Ahc}}}BfGf}{{{h{AJh}}{h{Ahc}}}BfGf}{{{h{Oj}}{h{Ahc}}}BfGf}{ce{}{}}00000{{{h{Oj}}}Ef}0{{{h{Oj}}Oj}Ef}0{{{h{Oj}}AJfAJh}Ef}{{{h{AJf}}{h{AJf}}}{{Dh{Bh}}}}{{{h{AJh}}{h{AJh}}}{{Dh{Bh}}}}{{{h{Oj}}{h{Oj}}}{{Dh{Bh}}}}{{{h{c}}{h{e}}}Ef{}{}}{{{h{c}}h}Ef{}}0{{{h{c}}{h{Mj}}}{{Dh{AAj}}}{}}0{{{h{c}}{h{{Ff{MjLn}}}}}{{Dh{{Ff{JbHj}}}}}{}}{{{h{c}}{h{Mj}}}{{Dh{Jb}}}{}}33{{{h{c}}}{{Dh{{h{{AKh{AKf{Ff{CdAGl}}}}}}}}}{}}{{{h{c}}{h{e}}}{{Dh{Hj}}}{}{}}{{{h{c}}{h{e}}{h{Ln}}}{{Dh{Hj}}}{}{}}{{{h{AJf}}c}DnHn}{{{h{AJh}}c}DnHn}{{{h{Oj}}c}DnHn}{{{h{CAj}}}{{Dh{{h{AOf}}}}}}{{{h{CAl}}}{{Dh{{h{AOf}}}}}}{{{h{CAn}}}{{Dh{{h{AOf}}}}}}{AJfDf}{AJhDf}{OjDf}{{{h{c}}}e{}{}}00000{{{h{c}}}If{}}00000{c{{Dn{e}}}{}{}}{If{{Dn{AJf}}}}{{{h{G`}}}{{Dn{AJf}}}}{{{AJd{G`}}}{{Dn{AJf}}}}33{{{AJd{G`}}}{{Dn{AJh}}}}{If{{Dn{AJh}}}}{{{h{G`}}}{{Dn{AJh}}}}66{{{h{G`}}}{{Dn{Oj}}}}7{If{{Dn{Oj}}}}{{{AJd{G`}}}{{Dn{Oj}}}}999999{{{h{c}}}Ij{}}00000{ce{}{}}00000`````````````````{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{c}}Oj}Ef{}}{{{h{c}}On}Ef{}}{{{h{On}}On}Ef}{{{h{CBd}}}CBd}{{{h{CBf}}}CBf}{{{h{AGn}}}AGn}{{{h{On}}}On}{{{h{CBh}}}CBh}{{{h{CBj}}}CBj}{{{h{CBl}}}CBl}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{CBd}}{h{CBd}}}Bh}{{{h{CBf}}{h{CBf}}}Bh}{{}CBd}{{}CBf}{c{{Dn{CBd}}}E`}{c{{Dn{CBf}}}E`}{c{{Dn{On}}}E`}{{{h{CBh}}}Df}{{{h{CBd}}{h{CBd}}}Ef}{{{h{CBf}}{h{CBf}}}Ef}{{{h{AGn}}{h{AGn}}}Ef}{{{h{On}}{h{On}}}Ef}{{{h{CBh}}{h{CBh}}}Ef}{{{h{CBj}}{h{CBj}}}Ef}{{{h{CBl}}{h{CBl}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000000000{{{h{CBd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CBf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AGn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{On}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CBh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CBj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CBl}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{AEnCBd}111{CBdOn}{AElOn}{CBfOn}444{AEnCBf}{AEnOn}{Df{{Dn{OnCBh}}}}61{Df{{Dn{CBfAGn}}}}{Df{{Dn{OnAGn}}}}10{Ol{{Dn{OnCBh}}}}{{{h{G`}}}{{Dn{CBd}}}}{{{h{G`}}}{{Dn{CBf}}}}{{{h{CBd}}{h{Ahc}}}BfGf}{{{h{CBf}}{h{Ahc}}}BfGf}{{{h{On}}{h{Ahc}}}BfGf}``{ce{}{}}000000{{{h{On}}}Ef}0{{{h{On}}On}Ef}{{{h{On}}Ol}Ef}1{{{h{On}}CBdCBf}Ef}{{{h{On}}CBd}{{Dn{EfCBj}}}}{{{h{On}}CBf}{{Dn{EfCBl}}}}{DfAGn}{{{h{CBd}}{h{CBd}}}{{Dh{Bh}}}}{{{h{CBf}}{h{CBf}}}{{Dh{Bh}}}}{{{h{On}}{h{On}}}{{Dh{Bh}}}}{{{h{c}}{h{e}}}Ef{}{}}{{{h{c}}h}Ef{}}0{{{h{c}}{h{Mj}}}{{Dh{AAj}}}{}}0{{{h{c}}{h{{Ff{MjLn}}}}}{{Dh{{Ff{JbHj}}}}}{}}{{{h{c}}{h{Mj}}}{{Dh{Jb}}}{}}33{{{h{c}}}{{Dh{{h{{AKh{AKf{Ff{CdAGl}}}}}}}}}{}}{{{h{c}}{h{e}}}{{Dh{Hj}}}{}{}}{{{h{c}}{h{e}}{h{Ln}}}{{Dh{Hj}}}{}{}}{{{h{CBd}}c}DnHn}{{{h{CBf}}c}DnHn}{{{h{On}}c}DnHn}``{{{h{CBd}}}Df}{{{h{CBf}}}Df}{{{h{On}}}Df}{{{h{c}}}e{}{}}000000{{{h{On}}}Ol}{{{h{c}}}If{}}000000{{{h{G`}}}{{Dn{CBd}}}}{c{{Dn{e}}}{}{}}{If{{Dn{CBd}}}}{{{AJd{G`}}}{{Dn{CBd}}}}2{If{{Dn{CBf}}}}{{{h{G`}}}{{Dn{CBf}}}}{{{AJd{G`}}}{{Dn{CBf}}}}55{Ol{{Dn{OnCBh}}}}6666666666{{{h{c}}}Ij{}}000000{CBdAEn}{CBfAEn}{ce{}{}}000000``````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{A@f}}}A@f}{{{h{A@h}}}A@h}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{A@f}}{h{A@f}}}Bh}{{{h{A@f}}{h{A@f}}}Ef}{{{h{A@h}}{h{A@h}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{A@f}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{A@h}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}0{{{h{A@f}}{h{Ahc}}}BfGf}=={{{h{A@f}}{h{A@f}}}{{Dh{Bh}}}}{{{h{c}}}e{}{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0{ce{}{}}0`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{h{Od}}}{{h{{Ad{A`}}}}}}{{{h{Nf}}}{{h{{Ad{A`}}}}}}{{{h{AhNf}}}{{h{AhNf}}}}{{{h{AhNf}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhBCf}}}{{h{AhNf}}}}10{{{h{BCf}}}{{h{Nf}}}}4{{{h{Nf}}}{{h{Nf}}}}1{{{h{Od}}}{{h{Md}}}}{{{h{AJb}}}{{h{Md}}}}{{{h{AJ`}}}{{h{Md}}}}{{{h{c}}}{{h{e}}}{}{}}000000500{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000700{{{h{BCf}}}Hj}{{{h{AhBCf}}}Bf}{{{h{Od}}}Od}{{{h{ADj}}}ADj}{{{h{AJb}}}AJb}{{{h{AJ`}}}AJ`}{{{h{BCf}}}BCf}{{{h{CBn}}}CBn}{{{h{CC`}}}CC`}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{Nf}}{h{Nf}}}Bh}{{{h{BCf}}{h{BCf}}}Bh}{{}Od}{{}BCf}{{{h{BCf}}}h}{{{h{AhBCf}}}{{h{Ah}}}}{{}{{h{Nf}}}}{{{h{Od}}{h{Od}}}Ef}{{{h{ADj}}{h{ADj}}}Ef}{{{h{Nf}}{h{Nf}}}Ef}{{{h{BCf}}{h{BCf}}}Ef}{{{h{CBn}}{h{CBn}}}Ef}{{{h{CC`}}{h{CC`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000000000{{{h{AhBCf}}{h{{Ad{A`}}}}}{{Dn{BfCBn}}}}{{{h{Od}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ADj}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AJb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AJ`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Nf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BCf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{CBn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CC`}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{{{ADn{A`}}}Od}1111{{{h{{Ab{A`}}}}}{{h{Nf}}}}{{{h{Ah{Ab{A`}}}}}{{h{AhNf}}}}10010101110000010001111011111101011000010010000100001100111100101001000110101011010100111010001100100000000001110101101111111011111011011100010001101110{{{Ab{A`}}}BCf}{{{h{{Ab{A`}}}}}BCf}51011101000011001001{L`BCf}12112222121112112212222212122122221212121222122{LdBCf}22332323232{KnBCf}44333333343434444333443333334433333433443{LfBCf}454555444554544554455555545444554499{CCbCC`}{AO`CC`}{{{h{Nf}}{h{Ahc}}}BfGf}{{{h{BCf}}{h{Ahc}}}BfGf}{{{h{Nf}}{AId{Hj}}}h}{{{h{Nf}}{Ff{{AIj{Hj}}{AIj{Hj}}}}}h}{{{h{Nf}}{AIh{Hj}}}h}{{{h{Nf}}AIl}h}{{{h{Nf}}Hj}h}{{{h{Nf}}{AIb{Hj}}}h}{{{h{Nf}}{AIf{Hj}}}h}{{{h{Nf}}{AIn{Hj}}}h}{{{h{CCd}}}Hj}{{{h{CBn}}}Hj}{ce{}{}}0000000{Od{{ADn{A`}}}}{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}00222{OdCd}{{{h{Od}}}Ef}{{{h{Nf}}}Ef}{{{h{BCf}}}Ef}{{{h{Od}}}Hj}{{{h{Nf}}}Hj}{{{h{BCf}}}Hj}{{}Od}{{}BCf}{{{h{AhOf}}}Dh}{{{h{AhAJb}}}{{Dh{{Dn{ADjCC`}}}}}}{{{h{AhAJ`}}}Dh}2{{{h{AhOf}}Hj}Dh}{{{h{AhAJ`}}Hj}Dh}1{{{h{ADj}}}{{Dh{A@d}}}}{{{h{Nf}}{h{Nf}}}{{Dh{Bh}}}}{{{h{BCf}}{h{BCf}}}{{Dh{Bh}}}}{{{h{AhBCf}}}{{Dh{A`}}}}{{{h{AhBCf}}A`}{{Dn{BfCBn}}}}{{{h{ADj}}}{{Dh{{h{Nf}}}}}}{{OdA@`}Od}{{Od{h{AAj}}}Od}{{OdOj}Od}{{OdA@d}Od}{{OdOl}Od}{{Odc}Od{{ADb{Nf}}}}{OdOd}{{Od{h{Jb}}}Od}{{{h{{Ad{A`}}}}}Ef}{{{h{{Ad{A`}}}}}{{Dn{A@`CC`}}}}0{{{h{AhBCf}}Hj}A`}{{{h{AhBCf}}Hj}Bf}{{{h{ADj}}}{{Dh{A@`}}}}{{{h{Of}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{AJb}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{AJ`}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{CBn}}}{{Dh{{h{AOf}}}}}}{{{h{CC`}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}000{{{h{Nf}}}}111{{{h{c}}}If{}}00{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}00:{c{{Dn{e}}}{}{}}0000{{{h{{Ad{A`}}}}}{{Dn{{h{Nf}}}}}}{{{h{Ah{Ad{A`}}}}}{{Dn{{h{AhNf}}}}}}{{{ADn{A`}}}{{Dn{BCf}}}}33333333333{{{h{c}}}Ij{}}00000000{ce{}{}}0000000{HjBCf}``{{{h{Ah{Ab{A`}}}}A@`}Hj}``````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{AJl}}}AJl}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{AJl}}{h{AJl}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AJl}}{h{AhEn}}}{{Dn{BfF`}}}}0{AO`AJl}{cc{}};{{{h{AJl}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}{ce{}{}}`````````````````````````>>>==={{{h{CCf}}}CCf}{{{h{CCh}}}CCh}{{{h{ANn}}}ANn}>>>{{{h{CCf}}{h{CCf}}}Ef}{{{h{CCh}}{h{CCh}}}Ef}{{{h{ANn}}{h{ANn}}}Ef}??????{{{h{CCf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CCh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{ANn}}{h{AhEn}}}{{Dn{BfF`}}}}0{CCjCCf}{AO`CCf}{cc{}}{ANnCCf}{AO`CCh}2{ANnCCh}3???{{{h{ANn}}}A`}{{{h{CCf}}}{{Dh{{h{AOf}}}}}}{{{h{CCh}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}00{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00{ce{}{}}00`````````````````````````{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{CCl}}}CCl}{{{h{AMd}}}AMd}{{{h{AMf}}}AMf}{{{h{CCn}}}CCn}{{{h{CD`}}}CD`}{{{h{CDb}}}CDb}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{CD`}}{h{CD`}}}Bh}{{{h{Ahc}}}{{Dn{CD`AC`}}}{ACbACd}}{{{h{CD`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{c{{Dn{CD`}}}E`}{{A@bInCf}{{Dh{Il}}}}{{{h{CCl}}{h{CCl}}}Ef}{{{h{AMd}}{h{AMd}}}Ef}{{{h{AMf}}{h{AMf}}}Ef}{{{h{CCn}}{h{CCn}}}Ef}{{{h{CD`}}{h{CD`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000{{{h{CCl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AMd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AMf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CCn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CD`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CDb}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}{AO`CCl}{CCnAMd}2{CCnAMf}3333{{Hj{h{{Ad{Hj}}}}}CDb}{HjCDb}0{{{h{CD`}}{h{Ahc}}}BfGf}``{ce{}{}}00000{{{h{CD`}}}Ef}``{{Hjc}CDbEl}{BB`CD`}`{{{h{CD`}}{h{CD`}}}{{Dh{Bh}}}}{{ce}In{{El{}{{Ej{CDb}}}}}{{El{}{{Ej{Hj}}}}}}{{{h{{Ad{CDb}}}}{h{{Ad{Hj}}}}}In}````{{{h{CD`}}c}DnHn}{{{h{CCl}}}{{Dh{{h{AOf}}}}}}{{{h{AMd}}}{{Dh{{h{AOf}}}}}}{{{h{AMf}}}{{Dh{{h{AOf}}}}}}{{{h{CCn}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}00000{{{h{c}}}If{}}0000{c{{Dn{e}}}{}{}}00000000000`{{{h{c}}}Ij{}}00000```??????{{{h{CDb}}}In}`````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{cc{}}{ce{}{}}{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}1{{{h{AhAJj}}}Dh}{{{h{AJj}}}{{Ff{Hj{Dh{Hj}}}}}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}::94`````````````````{{{h{Nh}}}{{h{Nh}}}}````8877{{{h{Nh}}}Nh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Ahc}}}{{Dn{CDdAC`}}}{ACbACd}}0{{{h{CDf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{Ad{A`}}}}}{{Dn{cAC`}}}CDd}{{{h{{Ad{A`}}}}}{{Dn{{Ff{cHj}}AC`}}}CDd}{{{h{Nh}}}Ed}{{{h{AhCDh}}Ef}{{Dn{BfACf}}}}{{{h{AhCDh}}BAn}{{Dn{BfACf}}}}{{{h{AhCDh}}BB`}{{Dn{BfACf}}}}{{{h{AhCDh}}A@`}{{Dn{BfACf}}}}{{{h{AhCDh}}BBb}{{Dn{BfACf}}}}{{{h{AhCDh}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}}{{{h{AhCDh}}AEn}{{Dn{BfACf}}}}{{{h{AhCDh}}Df}{{Dn{BfACf}}}}{{{h{AhCDh}}Ed}{{Dn{BfACf}}}}{{{h{AhCDh}}A`}{{Dn{BfACf}}}}`{{{h{Nh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{{CDj{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}0{cc{}}{ChNh}{{{h{Ch}}}Nh}{Ch{{h{Nh}}}}{{{h{Ch}}}{{h{Nh}}}}4{AO`{{CDj{c}}}{}}{ce{}{}}0{{{CDj{c}}}eCDlBDh}```6`````{{{h{AhCDn}}}{{Dn{EfAC`}}}}{{{h{AhCDn}}}{{Dn{BAnAC`}}}}{{{h{AhCDn}}}{{Dn{BB`AC`}}}}{{{h{AhCDn}}}{{Dn{A@`AC`}}}}{{{h{AhCDn}}}{{Dn{BBbAC`}}}}{{{h{AhCDn}}{h{Ah{Ad{A`}}}}}{{Dn{BfAC`}}}}{{{h{AhCDn}}}{{Dn{AEnAC`}}}}{{{h{AhCDn}}}{{Dn{DfAC`}}}}{{{h{AhCDn}}}{{Dn{EdAC`}}}}{{{h{AhCDn}}}{{Dn{A`AC`}}}}``{{{h{c}}}{{ADn{A`}}}{CDfACd}}{{{h{{CDj{c}}}}}{{Dh{{h{AOf}}}}}Fb}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0{ce{}{}}0`````````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{CE`}}}{{Ab{A`}}}}{{{h{CE`}}}CE`}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Ahc}}}{{Dn{CDdAC`}}}{ACbACd}}0{{{h{Ahc}}}{{Dn{CE`AC`}}}{ACbACd}}{{{h{CDf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{CE`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{CE`}}}{{h{{Ad{A`}}}}}}{{{h{{Ad{A`}}}}}{{Dn{cAC`}}}CDd}{{{h{G`}}}{{Dn{cCEb}}}CDd}{{{h{{Ad{A`}}}}}{{Dn{{Ff{cHj}}AC`}}}CDd}{{{h{AhCDh}}Ef}{{Dn{BfACf}}}}{{{h{AhCDh}}BAn}{{Dn{BfACf}}}}{{{h{AhCDh}}BB`}{{Dn{BfACf}}}}{{{h{AhCDh}}A@`}{{Dn{BfACf}}}}{{{h{AhCDh}}BBb}{{Dn{BfACf}}}}{{{h{AhCDh}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}}{{{h{AhCDh}}AEn}{{Dn{BfACf}}}}{{{h{AhCDh}}Df}{{Dn{BfACf}}}}{{{h{AhCDh}}Ed}{{Dn{BfACf}}}}{{{h{AhCDh}}A`}{{Dn{BfACf}}}}{{{h{CE`}}{h{CE`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AC`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CEb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CE`}}{h{AhEn}}}{{Dn{BfF`}}}}{ACfAC`}{AO`AC`}{cc{}}0{CEdCEb}1{ce{}{}}00{CE`{{ADn{A`}}}}{{{ADn{A`}}}CE`}{{{h{AhCDn}}}{{Dn{EfAC`}}}}{{{h{AhCDn}}}{{Dn{BAnAC`}}}}{{{h{AhCDn}}}{{Dn{BB`AC`}}}}{{{h{AhCDn}}}{{Dn{A@`AC`}}}}{{{h{AhCDn}}}{{Dn{BBbAC`}}}}{{{h{AhCDn}}{h{Ah{Ad{A`}}}}}{{Dn{BfAC`}}}}{{{h{AhCDn}}}{{Dn{AEnAC`}}}}{{{h{AhCDn}}}{{Dn{DfAC`}}}}{{{h{AhCDn}}}{{Dn{EdAC`}}}}{{{h{AhCDn}}}{{Dn{A`AC`}}}}{{{h{c}}}{{ADn{A`}}}{CDfACd}}{{{h{c}}}If{CDfACd}}{{{h{AC`}}}{{Dh{{h{AOf}}}}}}{{{h{CEb}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00{ce{}{}}00``````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{}{{CEf{c}}}CEh}{c{{Dn{e}}}E`CDd}{{{h{AhCEj}}{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfF`}}}AEd}{{{h{AhCEj}}{h{Ahc}}}{{Dn{BfF`}}}AEd}{cc{}}0{{{h{G`}}}{{Dn{ce}}}{}{}}{{{h{G`}}}Dn}`99{CDlcBDh}{{{h{c}}e}DnCDfHn}====<<;;```````::::::999999{{{h{CEl}}}CEl}{{{h{CEn}}}CEn}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Ah{CF`{c}}}}{h{Ahe}}{h{{Ad{A`}}}}}{{Dn{BfF`}}}CEhAEd}{{{h{CEl}}{h{CEl}}}Ef}{{{h{CEn}}{h{CEn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{Ah{CF`{c}}}}{h{Ahe}}}{{Dn{BfF`}}}CEhAEd}{{{h{CEl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{CEn}}{h{AhEn}}}{{Dn{BfF`}}}}>>>{{{CEf{c}}}{{CF`{c}}}CEh}???{ce{}{}}00000{CElcBDh}{CEncBDh}{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}3{{{h{AhCFb}}}Dh}{{{h{c}}}e{}{}}0{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}00000000000{{{h{c}}}Ij{}}00000888888```````{{{h{AhCFd}}}{{h{Ah{Ad{A`}}}}}}{{{h{CFd}}}{{h{Nf}}}}{{{h{CFd}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}010{{{h{Ahc}}}{{h{Ahe}}}{}{}}400{{{h{AKd}}}AKd}{{{h{CFd}}}CFd}{{{h{CFf}}}CFf}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{CFd}}}h}{{{h{AhCFd}}}{{h{Ah}}}}{c{{Dn{AKd}}}E`}{{{h{AKd}}{h{AKd}}}Ef}{{{h{CFd}}{h{CFd}}}Ef}{{{h{CFf}}{h{CFf}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{AKd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CFd}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{CFf}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{JjCFf}{AFnCFf}{AO`CFf}3{AHfCFf}{{{h{{Ad{A`}}}}}{{Dn{AKdCFf}}}}{{{h{G`}}}{{Dn{AKd}}}}{{{h{AKd}}{h{Ahc}}}BfGf}{{{h{CFd}}{h{Ahc}}}BfGf}{ce{}{}}00{{{h{CFd}}}}{{{h{CFd}}}{{CFh{A`}}}}{{{h{AKd}}}CFd}{{{h{AKd}}c}DnHn}{{{h{AKd}}{h{Ahc}}}{{Dn{BfACf}}}{AChACd}}{CFjAKd}``{{{h{CFf}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}00{AKd{{ADn{A`}}}}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00<<<{{{h{CFd}}{h{Ahc}}}{{Dn{BfACf}}}{AChACd}}`````````{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{AG`}}}AG`}{{{h{AI`}}}AI`}{{{h{CFl}}}CFl}{{{h{CFn}}}CFn}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{AG`}}{h{AG`}}}Ef}{{{h{AI`}}{h{AI`}}}Ef}{{{h{CFl}}{h{CFl}}}Ef}{{{h{CFn}}{h{CFn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000{{{h{AG`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AI`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CFl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CFn}}{h{AhEn}}}{{Dn{BfF`}}}}0{CCjAG`}{cc{}}{CFlAG`}{CFnAI`}{CCjAI`}333{ce{}{}}000{{{h{AG`}}}{{Dh{{h{AOf}}}}}}{{{h{AI`}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}000{{{h{c}}}If{}}000{c{{Dn{e}}}{}{}}0000000{{{h{c}}}Ij{}}0006666```````````````````{{}{{CGd{}{{CG`{c}}{CGb{e}}}}}CGf{CGhBBf}}{{{h{{CGd{}{{CG`{c}}{CGb{e}}}}}}}{{h{e}}}CGf{CGhBBf}}``{{}c{}}{c{{CGd{}{{CG`{e}}{CGb{c}}}}}{CGhBBf}CGf}{c{{CGd{}{{CG`{c}}{CGb{e}}}}}CGf{CGhBBf}}{{{h{{Ad{A`}}}}}{{Dn{{CGd{}{{CG`{c}}{CGb{e}}}}Fn}}}CGf{CGhBBf}}{{{h{{Ad{A`}}}}}{{CGd{}{{CG`{c}}{CGb{e}}}}}CGf{CGhBBf}}`{e{{CGd{}{{CG`{g}}{CGb{i}}}}}{{ADb{{Ad{A`}}}}}{{El{}{{Ej{c}}}}}CGf{CGhBBf}}```{{{h{Ah{CGf{}{{CGj{c}}}}}}{h{{Ad{A`}}}}}Bf{}}{{{h{{CGf{}{{CGj{c}}}}}}}c{}}{{{h{{CGf{}{{CGj{c}}}}}}}Hj{}}````````````{{{CGd{}{{CG`{c}}{CGb{e}}}}}eCGf{CGhBBf}}{{{h{{Ad{A`}}}}{h{{Ad{A`}}}}}Ef}`{{}Mj}{{{h{Mj}}}h}{{{h{Mj}}}{{h{{Ad{A`}}}}}}{{{h{Mj}}}{{h{{Ab{A`}}}}}}1{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{Mj}}}Mj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Mj}}{h{Mj}}}Bh}{c{{Dn{Mj}}}E`}{{}}{{{h{Mj}}{h{Mj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{Mj}}{h{AhEn}}}{{Dn{BfF`}}}}000{LfMj}{LdMj}{cc{}}{KfMj}{KnMj}{{}Mj}{{{h{Ah{Ab{A`}}}}}{{h{AhMj}}}}{{{h{{Ab{A`}}}}}{{h{Mj}}}}{ADhMj}{{{h{{Ad{A`}}}}}{{Dn{MjFn}}}}0{{{h{G`}}}{{Dn{Mj}}}}{{{h{Mj}}{h{Ahc}}}BfGf}{{{h{Mj}}c}h{{Gj{{Ad{A`}}}}}}{ce{}{}}{MjBDd}{{{h{Mj}}{h{Mj}}}{{Dh{Bh}}}}{{{h{Mj}}c}DnHn}{Mj}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}8``````````````````{{{CGn{}{{CGl{c}}}}CH`{h{AhIf}}}Bf{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}}c{CHbFbCHdCHf}}{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000`{{{h{AFn}}}AFn}{{{h{CHh}}}CHh}{{{h{CEd}}}CEd}{{{h{BOf}}}BOf}{{{h{CH`}}}CH`}{{{h{c}}{h{Ahe}}}Bf{}{}}0000{{}CH`}`{{{h{AFn}}{h{AFn}}}Ef}{{{h{CHh}}{h{CHh}}}Ef}{{{h{CEd}}{h{CEd}}}Ef}{{{h{BOf}}{h{BOf}}}Ef}{{{h{CH`}}{h{CH`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000`{{{h{AFn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CHh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CEd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BOf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CH`}}{h{AhEn}}}{{Dn{BfF`}}}}`{cc{}}00{CHhAFn}{CEdAFn}22{CHhBOf}3{CHjBOf}4{{{h{G`}}}{{Dn{{CGh{}{{Gb{c}}}}c}}}{FbCHb}}{c{{CHl{c}}}{{Gn{}{{Ej{{Ab{A`}}}}}}}}{{{h{CH`}}{h{Ahc}}}BfGf}{{{CGn{}{{CGl{c}}}}}Hj{CHbFbCHdCHf}}`{ce{}{}}000000{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}011{{{h{CHh}}}A`}{{{h{{CHn{c}}}}}Hj{{BNf{}{{Ej{A`}}}}Gn}}{{{h{CEd}}}Hj}{{{h{G`}}}{{Dn{{CHl{CI`}}CEd}}}}{c{{CHn{c}}}{{Gn{}{{Ej{A`}}}}}}{{{h{Ah{CHl{c}}}}}Dh{{Gn{}{{Ej{{Ab{A`}}}}}}}}{{{h{Ah{CHn{c}}}}}{{Dh{BBh}}}{{Gn{}{{Ej{A`}}}}}}{{{h{Ah{CHl{c}}}}}Dh{{Gn{}{{Ej{{Ab{A`}}}}}}CIb}}{{{h{Ah{CHn{c}}}}}{{Dh{BBh}}}{{CIb{}{{Ej{A`}}}}Gn}}{{{h{Ah{CHl{c}}}}Hj}Dh{{Gn{}{{Ej{{Ab{A`}}}}}}}}{{{h{Ah{CHl{c}}}}Hj}Dh{{Gn{}{{Ej{{Ab{A`}}}}}}CIb}}``{{{h{Ah{CHl{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjBBl}}}{{Gn{}{{Ej{{Ab{A`}}}}}}CId}}{{{h{{CHl{c}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{{Ab{A`}}}}}}}}{{{h{{CHn{c}}}}}{{Ff{Hj{Dh{Hj}}}}}{{Gn{}{{Ej{A`}}}}}}{{{h{AFn}}}{{Dh{{h{AOf}}}}}}{{{h{CHh}}}{{Dh{{h{AOf}}}}}}{{{h{CEd}}}{{Dh{{h{AOf}}}}}}{{{h{BOf}}}{{Dh{{h{AOf}}}}}}`{{{CGn{}{{CGl{c}}}}CH`}If{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}}If{CHbFbCHdCHf}}{{{h{c}}}e{}{}}0000{{{h{c}}}If{}}0002{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}0{c{{Dn{e}}}{}{}}0000000000000{{{h{c}}}Ij{}}000000{ce{}{}}000000``{{{h{CIf}}}{{h{G`}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{AhCIf}}}Bf}{{}CIf}{cc{}}6{{{h{CIf}}}Ef}2{{{h{AhCIf}}A`CH`}Bf}{{{h{AhCIf}}cCH`}BfEl}{{{h{AhCIf}}{h{{Ad{A`}}}}CH`}{{h{{Ad{A`}}}}}}{{{h{CIf}}}Hj}==<;````{{{CGn{}{{CGl{c}}}}CH`{h{AhIf}}}Bf{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}}c{CHbFbCHdCHf}};;::{{{h{CIh}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{CIj}}{h{AhEn}}}{{Dn{BfF`}}}}000`99{{{CGn{}{{CGl{c}}}}}Hj{CHbFbCHdCHf}}`{ce{}{}}0{{{CGn{}{{CGl{c}}}}CH`}If{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}}If{CHbFbCHdCHf}}{{{h{c}}}If{}}01{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}055`````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{CHj}}}CHj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{CHj}}{h{CHj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0`{{{h{CHj}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}=`{{{h{CHj}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}<;;:?````````{{{h{G`}}}{{Dn{{CGh{}{{Gb{c}}}}c}}}{FbCHb}}````{{{CGn{}{{CGl{c}}}}CH`{h{AhIf}}}Bf{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}}c{CHbFbCHdCHf}}2{{{CGn{}{{CGl{c}}}}}Hj{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}CH`}If{CHbFbCHdCHf}}{{{CGn{}{{CGl{c}}}}}If{CHbFbCHdCHf}}0```?>8`{ce{}{}}`{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}2``{{}ALn}{{{h{ALn}}}h}{{{h{ALn}}}{{h{{Ad{A`}}}}}}{{{h{ALn}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}20{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{ALn}}}ALn}{{{h{CIl}}}CIl}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{ALn}}{h{ALn}}}Bh}{{}CIl}{c{{Dn{ALn}}}E`}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{}}{{{h{ALn}}{h{ALn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhCIl}}}{{Dn{BfACf}}}}{{{h{AhCIl}}}{{Dn{BfBBl}}}}{{{h{ALn}}{h{AhEn}}}{{Dn{BfF`}}}}000{cc{}}0{{}ALn}{{{h{Ah{Ab{A`}}}}}{{h{AhALn}}}}{{{h{{Ab{A`}}}}}{{h{ALn}}}}{CIlALn}{{{h{{Ad{A`}}}}}{{Dn{ALnFn}}}}0{{{h{G`}}}{{Dn{ALn}}}}{{{h{ALn}}{h{Ahc}}}BfGf}{{{h{ALn}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhCIl}}{h{{Ad{A`}}}}}Bf}{ce{}{}}0{ALnBDd}{{{h{CIl}}}{{Ab{A`}}}}{{{h{CIl}}}Hj}{{{h{ALn}}{h{ALn}}}{{Dh{Bh}}}}{{{h{ALn}}c}DnHn}{ALn}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0::{{{h{AhCIl}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{AhCIl}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}}````````````````{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ai}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}I`I`{{El{}{{Ej{{Ff{AeAg}}}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ae}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}El}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{CHbACd}}`{c{{Dn{Eb}}}E`}{{{E`{}{{Gb{c}}}}e}{{Dn{c}}}BDhCKn}0000{{{E`{}{{Gb{c}}}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}{{Dn{c}}}BDhCKn}1111111111{{{E`{}{{Gb{c}}}}{h{G`}}e}{{Dn{c}}}BDhCKn}22221{{{E`{}{{Gb{c}}}}Hje}{{Dn{c}}}BDhCKn}{{{E`{}{{Gb{c}}}}{h{G`}}Hje}{{Dn{c}}}BDhCKn}4444442`{{{h{{E`{}{{Gb{c}}}}}}}EfBDh}{{{h{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}}}}Ef{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}`{{{h{I`}}c}DnHn}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ef}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{{Ad{A`}}}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BBh}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}CL`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}ADd}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BK`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BAn}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BB`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}A@`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BBb}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{Dh{Hj}}}{{Dn{oe}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{Dh{Hj}}}{{Dn{ge}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Hj}{{Dn{Aae}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}Hj}{{Dn{Ace}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Hj}{{Dn{ie}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Hj}{{Dn{ke}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}Hj}{{Dn{me}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}AD`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}AEn}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Df}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ed}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}A`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}=:{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}``````````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{AOf}}}{{Dh{{h{AOf}}}}}}{{{h{CLb}}}CLb}{{{h{CLd}}}CLd}{{{h{c}}{h{Ahe}}}Bf{}{}}0{cBDhCHb}{{}CLb}{{{h{AOf}}}{{h{G`}}}}{{{CLh{}{{CLf{c}}}}e}{{Dn{c}}}{}E`}{c{{Dn{Eb}}}E`}{c{{Dn{CLb}}}E`}{{{E`{}{{Gb{c}}}}e}{{Dn{c}}}BDhCKn}0000{{{E`{}{{Gb{c}}}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}{{Dn{c}}}BDhCKn}1111111111{{{E`{}{{Gb{c}}}}{h{G`}}e}{{Dn{c}}}BDhCKn}22221{{{E`{}{{Gb{c}}}}Hje}{{Dn{c}}}BDhCKn}{{{E`{}{{Gb{c}}}}{h{G`}}Hje}{{Dn{c}}}BDhCKn}4444442{{{h{G`}}}BDh}{{{h{CLb}}{h{CLb}}}Ef}{{{h{CLd}}{h{CLd}}}Ef}{{{h{{CKn{}{{CLf{c}}}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{CLb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{CLj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{c}}{h{AhEn}}}{{Dn{BfF`}}}{}}2{{{h{CLd}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{ce{}{}}0{{{BDj{}{{CLl{c}}}}}c{{E`{}{{Gb{e}}}}}BDh}{{Hj{h{CLj}}}BDh}{{CLd{h{CLj}}}BDh}0{{{h{{E`{}{{Gb{c}}}}}}}EfBDh}={{{CLn{}{{Gb{c}}}}}{{Dn{ec}}}BDhEb}{{{CLn{}{{Gb{c}}}}e}{{Dn{c}}}BDhCLh}{{{h{Ah{CM`{}{{Gb{c}}}}}}}{{Dn{{Dh{e}}c}}}BDhEb}{{{h{Ah{CM`{}{{Gb{c}}}}}}e}{{Dn{Dhc}}}BDhCLh}{{{h{Ah{CMb{}{{Gb{c}}}}}}}{{Dn{{Dh{{Ff{eg}}}}c}}}BDhEbEb}{{{h{Ah{CMb{}{{Gb{c}}}}}}eg}{{Dn{{Dh{Ff}}c}}}BDhCLhCLh}{{{h{Ah{CMb{}{{Gb{c}}}}}}}{{Dn{{Dh{e}}c}}}BDhEb}{{{h{Ah{CMb{}{{Gb{c}}}}}}e}{{Dn{Dhc}}}BDhCLh}{{{h{Ah{CMb{}{{Gb{c}}}}}}}{{Dn{ec}}}BDhEb}{{{h{Ah{CMb{}{{Gb{c}}}}}}e}{{Dn{c}}}BDhCLh}{{{h{AOf}}{h{AhCMd}}}Bf}{{{h{{CM`{}{{Gb{c}}}}}}}{{Dh{Hj}}}BDh}{{{h{{CMb{}{{Gb{c}}}}}}}{{Dh{Hj}}}BDh}{{{h{AOf}}}{{Dh{{h{AOf}}}}}}{{{CLn{}{{Gb{c}}}}{h{{Ad{{h{G`}}}}}}e}{{Dn{c}}}BDhCKn}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{CLn{}{{Gb{c}}}}Hje}{{Dn{c}}}BDhCKn}{{{h{c}}}Ij{}}0{{{CLn{}{{Gb{c}}}}}{{Dn{Bfc}}}BDh}{{{h{G`}}{h{{Ad{{h{G`}}}}}}}BDh}0`{{{CMh{}{{Gb{c}}{CMf{e}}}}}{{Dn{{Ff{ge}}c}}}BDh{{CLn{}{{Gb{c}}}}}Eb}{{{CMh{}{{Gb{c}}{CMf{e}}}}g}{{Dn{{Ff{e}}c}}}BDh{{CLn{}{{Gb{c}}}}}CLh}{{{CKn{}{{CLf{c}}}}Ef}{{Dn{ce}}}{}BDh}{{CLbEf}{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}{h{{Ad{A`}}}}}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}{h{G`}}}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}{ADn{A`}}}{{Dn{ce}}}{}BDh}2{{CLb{h{{Ad{A`}}}}}{{Dn{c}}}BDh}{{{CKn{}{{CLf{c}}}}BBh}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}e}{{Dn{c}}}{}CMh}{{CLbc}DnCMh}{{{CKn{}{{CLf{c}}}}CL`}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}ADd}{{Dn{ce}}}{}BDh}{{CLbADd}{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}BK`}{{Dn{ce}}}{}BDh}{{CLbBK`}{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}BAn}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}BB`}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}A@`}{{Dn{ce}}}{}BDh}{{CLbA@`}{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}BBb}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}e}{{Dn{c}}}{}CMb}{{CLbc}DnCMb}{{{CKn{}{{CLf{c}}}}e}{{Dn{c}}}{}E`}{{CLbc}DnE`}{{{CKn{}{{CLf{c}}}}}{{Dn{ce}}}{}BDh}{CLb{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}e}{{Dn{c}}}{}CM`}{{CLbc}DnCM`}54{{{CKn{}{{CLf{c}}}}{h{G`}}}{{Dn{ce}}}{}BDh}{{CLb{h{G`}}}{{Dn{c}}}BDh}{{{CKn{}{{CLf{c}}}}If}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}AD`}{{Dn{ce}}}{}BDh}{{CLbAD`}{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}AEn}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}Df}{{Dn{ce}}}{}BDh}{{{CKn{}{{CLf{c}}}}Ed}{{Dn{ce}}}{}BDh}{{CLbEd}{{Dn{c}}}{}}{{{CKn{}{{CLf{c}}}}A`}{{Dn{ce}}}{}BDh}=<{ce{}{}}0`````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0000000000000000000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000000000000000000000000{{{h{{CMj{c}}}}}{{CMj{c}}}{}}{{{h{{CMl{c}}}}}{{CMl{c}}}{}}{{{h{{CMn{c}}}}}{{CMn{c}}}{}}{{{h{{CN`{c}}}}}{{CN`{c}}}{}}{{{h{{BDl{c}}}}}{{BDl{c}}}{}}{{{h{{CNb{c}}}}}{{CNb{c}}}{}}{{{h{{CNd{c}}}}}{{CNd{c}}}{}}{{{h{{CNf{c}}}}}{{CNf{c}}}{}}{{{h{{CNh{ce}}}}}{{CNh{ce}}}{GnAl}{}}{{{h{CNj}}}CNj}{{{h{{CNl{c}}}}}{{CNl{c}}}{}}{{{h{{CNn{c}}}}}{{CNn{c}}}{}}{{{h{{CO`{c}}}}}{{CO`{c}}}{}}{{{h{{COb{c}}}}}{{COb{c}}}{}}{{{h{{COd{c}}}}}{{COd{c}}}{}}{{{h{{COf{c}}}}}{{COf{c}}}{}}{{{h{{COh{c}}}}}{{COh{c}}}{}}{{{h{{COj{c}}}}}{{COj{c}}}{}}{{{h{{COl{c}}}}}{{COl{c}}}{}}{{{h{{COn{c}}}}}{{COn{c}}}{}}{{{h{{D@`{c}}}}}{{D@`{c}}}{}}{{{h{{D@b{c}}}}}{{D@b{c}}}{}}{{{h{{D@d{c}}}}}{{D@d{c}}}{}}{{{h{{D@f{c}}}}}{{D@f{c}}}{}}{{{h{{D@h{c}}}}}{{D@h{c}}}{}}{{{h{{D@j{ce}}}}}{{D@j{ce}}}AlAl}{{{h{{D@l{c}}}}}{{D@l{c}}}Al}{{{h{{D@n{c}}}}}{{D@n{c}}}Al}{{{h{{DA`{c}}}}}{{DA`{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000000000000000000000{cCNjCHb}0{{{h{CNj}}}{{h{G`}}}}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CMl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CMn{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CN`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{BDl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNb{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNd{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNf{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNh{ce}}{h{G`}}{h{{Ad{{h{G`}}}}}}g}DnGnBDhCKn}{{{CNl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNn{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CO`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COb{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COd{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COf{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COh{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COj{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COn{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@b{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@d{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@f{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@h{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@j{gc}}{h{G`}}{h{{Ad{{h{G`}}}}}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnCM`CKn}{{{D@n{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnCMbCKn}{{{DA`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}{h{G`}}e}DnBDhCKn}{{{CMl{c}}{h{G`}}e}DnBDhCKn}{{{CMn{c}}{h{G`}}e}DnBDhCKn}{{{CN`{c}}{h{G`}}e}DnBDhCKn}{{{BDl{c}}{h{G`}}e}DnBDhCKn}{{{CNb{c}}{h{G`}}e}DnBDhCKn}{{{CNd{c}}{h{G`}}e}DnBDhCKn}{{{CNf{c}}{h{G`}}e}DnBDhCKn}{{{CNh{ce}}{h{G`}}g}DnGnBDhCKn}{{{CNl{c}}{h{G`}}e}DnBDhCKn}{{{CNn{c}}{h{G`}}e}DnBDhCKn}{{{CO`{c}}{h{G`}}e}DnBDhCKn}{{{COb{c}}{h{G`}}e}DnBDhCKn}{{{COd{c}}{h{G`}}e}DnBDhCKn}{{{COf{c}}{h{G`}}e}DnBDhCKn}{{{COh{c}}{h{G`}}e}DnBDhCKn}{{{COj{c}}{h{G`}}e}DnBDhCKn}{{{COl{c}}{h{G`}}e}DnBDhCKn}{{{COn{c}}{h{G`}}e}DnBDhCKn}{{{D@`{c}}{h{G`}}e}DnBDhCKn}{{{D@b{c}}{h{G`}}e}DnBDhCKn}{{{D@d{c}}{h{G`}}e}DnBDhCKn}{{{D@f{c}}{h{G`}}e}DnBDhCKn}{{{D@h{c}}{h{G`}}e}DnBDhCKn}{{{D@j{gc}}{h{G`}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}{h{G`}}e}DnCM`CKn}{{{D@n{c}}{h{G`}}e}DnCMbCKn}{{{DA`{c}}{h{G`}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CMl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CMn{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CN`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{BDl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNb{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNd{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNf{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNh{ce}}{h{G`}}{h{{Ad{{h{G`}}}}}}g}DnGnBDhCKn}{{{CNl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CNn{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{CO`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COb{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COd{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COf{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COh{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COj{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COl{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{COn{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@b{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@d{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@f{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@h{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnBDhCKn}{{{D@j{gc}}{h{G`}}{h{{Ad{{h{G`}}}}}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnCM`CKn}{{{D@n{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnCMbCKn}{{{DA`{c}}{h{G`}}{h{{Ad{{h{G`}}}}}}e}DnCMhCKn}{{{CMj{c}}Hje}DnBDhCKn}{{{CMl{c}}Hje}DnBDhCKn}{{{CMn{c}}Hje}DnBDhCKn}{{{CN`{c}}Hje}DnBDhCKn}{{{BDl{c}}Hje}DnBDhCKn}{{{CNb{c}}Hje}DnBDhCKn}{{{CNd{c}}Hje}DnBDhCKn}{{{CNf{c}}Hje}DnBDhCKn}{{{CNh{ce}}Hjg}DnGnBDhCKn}{{{CNl{c}}Hje}DnBDhCKn}{{{CNn{c}}Hje}DnBDhCKn}{{{CO`{c}}Hje}DnBDhCKn}{{{COb{c}}Hje}DnBDhCKn}{{{COd{c}}Hje}DnBDhCKn}{{{COf{c}}Hje}DnBDhCKn}{{{COh{c}}Hje}DnBDhCKn}{{{COj{c}}Hje}DnBDhCKn}{{{COl{c}}Hje}DnBDhCKn}{{{COn{c}}Hje}DnBDhCKn}{{{D@`{c}}Hje}DnBDhCKn}{{{D@b{c}}Hje}DnBDhCKn}{{{D@d{c}}Hje}DnBDhCKn}{{{D@f{c}}Hje}DnBDhCKn}{{{D@h{c}}Hje}DnBDhCKn}{{{D@j{gc}}Hji}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}Hje}DnCM`CKn}{{{D@n{c}}Hje}DnCMbCKn}{{{DA`{c}}Hje}DnCMhCKn}{{{CMj{c}}{h{G`}}Hje}DnBDhCKn}{{{CMl{c}}{h{G`}}Hje}DnBDhCKn}{{{CMn{c}}{h{G`}}Hje}DnBDhCKn}{{{CN`{c}}{h{G`}}Hje}DnBDhCKn}{{{BDl{c}}{h{G`}}Hje}DnBDhCKn}{{{CNb{c}}{h{G`}}Hje}DnBDhCKn}{{{CNd{c}}{h{G`}}Hje}DnBDhCKn}{{{CNf{c}}{h{G`}}Hje}DnBDhCKn}{{{CNh{ce}}{h{G`}}Hjg}DnGnBDhCKn}{{{CNl{c}}{h{G`}}Hje}DnBDhCKn}{{{CNn{c}}{h{G`}}Hje}DnBDhCKn}{{{CO`{c}}{h{G`}}Hje}DnBDhCKn}{{{COb{c}}{h{G`}}Hje}DnBDhCKn}{{{COd{c}}{h{G`}}Hje}DnBDhCKn}{{{COf{c}}{h{G`}}Hje}DnBDhCKn}{{{COh{c}}{h{G`}}Hje}DnBDhCKn}{{{COj{c}}{h{G`}}Hje}DnBDhCKn}{{{COl{c}}{h{G`}}Hje}DnBDhCKn}{{{COn{c}}{h{G`}}Hje}DnBDhCKn}{{{D@`{c}}{h{G`}}Hje}DnBDhCKn}{{{D@b{c}}{h{G`}}Hje}DnBDhCKn}{{{D@d{c}}{h{G`}}Hje}DnBDhCKn}{{{D@f{c}}{h{G`}}Hje}DnBDhCKn}{{{D@h{c}}{h{G`}}Hje}DnBDhCKn}{{{D@j{gc}}{h{G`}}Hji}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}{h{G`}}Hje}DnCM`CKn}{{{D@n{c}}{h{G`}}Hje}DnCMbCKn}{{{DA`{c}}{h{G`}}Hje}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}e}DnBDhCKn}{{{CMl{c}}e}DnBDhCKn}{{{CMn{c}}e}DnBDhCKn}{{{CN`{c}}e}DnBDhCKn}{{{BDl{c}}e}DnBDhCKn}{{{CNb{c}}e}DnBDhCKn}{{{CNd{c}}e}DnBDhCKn}{{{CNf{c}}e}DnBDhCKn}{{{CNh{ce}}g}DnGnBDhCKn}{{{CNl{c}}e}DnBDhCKn}{{{CNn{c}}e}DnBDhCKn}{{{CO`{c}}e}DnBDhCKn}{{{COb{c}}e}DnBDhCKn}{{{COd{c}}e}DnBDhCKn}{{{COf{c}}e}DnBDhCKn}{{{COh{c}}e}DnBDhCKn}{{{COj{c}}e}DnBDhCKn}{{{COl{c}}e}DnBDhCKn}{{{COn{c}}e}DnBDhCKn}{{{D@`{c}}e}DnBDhCKn}{{{D@b{c}}e}DnBDhCKn}{{{D@d{c}}e}DnBDhCKn}{{{D@f{c}}e}DnBDhCKn}{{{D@h{c}}e}DnBDhCKn}{{{D@j{gc}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}e}DnCM`CKn}{{{D@n{c}}e}DnCMbCKn}{{{DA`{c}}e}DnCMhCKn}{{{CMj{c}}{h{G`}}e}DnBDhCKn}{{{CMl{c}}{h{G`}}e}DnBDhCKn}{{{CMn{c}}{h{G`}}e}DnBDhCKn}{{{CN`{c}}{h{G`}}e}DnBDhCKn}{{{BDl{c}}{h{G`}}e}DnBDhCKn}{{{CNb{c}}{h{G`}}e}DnBDhCKn}{{{CNd{c}}{h{G`}}e}DnBDhCKn}{{{CNf{c}}{h{G`}}e}DnBDhCKn}{{{CNh{ce}}{h{G`}}g}DnGnBDhCKn}{{{CNl{c}}{h{G`}}e}DnBDhCKn}{{{CNn{c}}{h{G`}}e}DnBDhCKn}{{{CO`{c}}{h{G`}}e}DnBDhCKn}{{{COb{c}}{h{G`}}e}DnBDhCKn}{{{COd{c}}{h{G`}}e}DnBDhCKn}{{{COf{c}}{h{G`}}e}DnBDhCKn}{{{COh{c}}{h{G`}}e}DnBDhCKn}{{{COj{c}}{h{G`}}e}DnBDhCKn}{{{COl{c}}{h{G`}}e}DnBDhCKn}{{{COn{c}}{h{G`}}e}DnBDhCKn}{{{D@`{c}}{h{G`}}e}DnBDhCKn}{{{D@b{c}}{h{G`}}e}DnBDhCKn}{{{D@d{c}}{h{G`}}e}DnBDhCKn}{{{D@f{c}}{h{G`}}e}DnBDhCKn}{{{D@h{c}}{h{G`}}e}DnBDhCKn}{{{D@j{gc}}{h{G`}}i}DnBDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CKn}{{{D@l{c}}{h{G`}}e}DnCM`CKn}{{{D@n{c}}{h{G`}}e}DnCMbCKn}{{{DA`{c}}{h{G`}}e}DnCMhCKn}{{{CNh{ce}}}{{Dn{Bfe}}}GnBDh}{{{D@j{ce}}}{{Dn{Bfe}}}GnBDh}{{{h{CNj}}{h{CNj}}}Ef}{{{h{{CMj{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CMl{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CMn{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CN`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{BDl{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CNb{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CNd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CNf{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CNh{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}{GnFb}{}}{{{h{CNj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{CNl{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CNn{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{CO`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COb{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COf{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COh{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COj{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COl{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{COn{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{D@`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{D@b{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{D@d{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{D@f{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{D@h{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{}}{{{h{{D@j{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb{}}{{{h{{D@l{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{{D@n{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{{DA`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{cc{}}0000000000000000000000000000{ce{}{}}0000000000000000000000000000{{{CMj{c}}}{{CMj{c}}}BDh}{{{CMl{c}}}{{CMl{c}}}BDh}{{{CMn{c}}}{{CMn{c}}}BDh}{{{CN`{c}}}{{CN`{c}}}BDh}{{{BDl{c}}}{{BDl{c}}}BDh}{{{CNb{c}}}{{CNb{c}}}BDh}{{{CNd{c}}}{{CNd{c}}}BDh}{{{CNf{c}}}{{CNf{c}}}BDh}{{{CNh{ce}}}{{CNh{ce}}}GnBDh}{{{CNl{c}}}{{CNl{c}}}BDh}{{{CNn{c}}}{{CNn{c}}}BDh}{{{CO`{c}}}{{CO`{c}}}BDh}{{{COb{c}}}{{COb{c}}}BDh}{{{COd{c}}}{{COd{c}}}BDh}{{{COf{c}}}{{COf{c}}}BDh}{{{COh{c}}}{{COh{c}}}BDh}{{{COj{c}}}{{COj{c}}}BDh}{{{COl{c}}}{{COl{c}}}BDh}{{{COn{c}}}{{COn{c}}}BDh}{{{D@`{c}}}{{D@`{c}}}BDh}{{{D@b{c}}}{{D@b{c}}}BDh}{{{D@d{c}}}{{D@d{c}}}BDh}{{{D@f{c}}}{{D@f{c}}}BDh}{{{D@h{c}}}{{D@h{c}}}BDh}{{{D@j{gc}}}{{D@j{gc}}}BDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}}{{{D@l{c}}}{{D@l{c}}}CM`}{{{D@n{c}}}{{D@n{c}}}CMb}{{{DA`{c}}}{{DA`{c}}}CMh}{{}{{CMj{c}}}{}}{Df{{CMl{c}}}{}}{{{h{G`}}}{{CMn{c}}}{}}{{{h{G`}}}{{CN`{c}}}{}}{If{{BDl{c}}}{}}{{{AEj{G`}}}{{CNb{c}}}{}}{{{h{{Ad{A`}}}}}{{CNd{c}}}{}}{{{h{{Ad{A`}}}}}{{CNf{c}}}{}}{c{{CNh{ce}}}Gn{}}{Ef{{CNl{c}}}{}}{BBb{{CNn{c}}}{}}{BAn{{CO`{c}}}{}}{BB`{{COb{c}}}{}}{A@`{{COd{c}}}{}}{BK`{{COf{c}}}{}}{DAb{{COh{c}}}{}}{A`{{COj{c}}}{}}{AEn{{COl{c}}}{}}{Ed{{COn{c}}}{}}{AD`{{D@`{c}}}{}}{Hj{{D@b{c}}}{}}{CL`{{D@d{c}}}{}}{ADd{{D@f{c}}}{}}{BBh{{D@h{c}}}{}}{c{{D@j{ce}}}Gn{}}{c{{D@l{c}}}{}}{c{{D@n{c}}}{}}{c{{DA`{c}}}{}}{{{h{Ah{CNh{ce}}}}g}{{Dn{Dh}}}GnBDhCLh}{{{h{Ah{D@j{gc}}}}i}{{Dn{Dh}}}BDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}CLh}{{{h{Ah{CNh{ce}}}}gi}{{Dn{{Dh{Ff}}}}}GnBDhCLhCLh}2{{{h{Ah{CNh{ce}}}}g}DnGnBDhCLh}{{{h{{CNh{ce}}}}}{{Dh{Hj}}}GnBDh}0{{{h{{D@j{gc}}}}}{{Dh{Hj}}}BDh{{BDj{c}}}{{Gn{}{{Ej{e}}}}}}{{{h{c}}}e{}{}}0000000000000000000000000000{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000000000000000000000000000000000000000000000000000000000{{{h{c}}}Ij{}}0000000000000000000000000000{{{CMl{c}}e}{{Dn{Ff}}}BDhCLh}{{{CMn{c}}e}{{Dn{Ff}}}BDhCLh}{{{CN`{c}}e}{{Dn{Ff}}}BDhCLh}{{{BDl{c}}e}{{Dn{Ff}}}BDhCLh}{{{CNb{c}}e}{{Dn{Ff}}}BDhCLh}{{{D@n{c}}e}{{Dn{Ff}}}CMbCLh}{ce{}{}}0000000000000000000000000000```````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{AOf}}}{{Dh{{h{AOf}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ai}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}I`I`{{El{}{{Ej{{Ff{AeAg}}}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ae}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}El}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{CHbACd}}{cCJnCHb}{{{h{AOf}}}{{h{G`}}}}{{{AJd{AOf}}}{{Dn{{AJd{c}}{AJd{AOf}}}}}AOf}00{{{h{AhAOf}}}{{Dh{{h{Ahc}}}}}AOf}00{{{h{AOf}}}{{Dh{{h{c}}}}}AOf}00{{{CK`{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{CKb{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{CKd{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{CKf{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{CKh{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{CKj{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{CKl{}{{CIn{c}}{Gb{e}}}}}{{Dn{ce}}}{}CJn}{{{DAd{ce}}}{{Dn{ce}}}{}CJn}000000{cc{}}{ce{}{}}{{{h{AOf}}}Ef}00{{{h{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}}}}Ef{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{h{AOf}}{h{AhCMd}}}Bf}{{{h{I`}}c}DnHn}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ef}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{{Ad{A`}}}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BBh}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{h{Ah{CK`{}{{CIn{c}}{Gb{e}}}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{CKb{}{{CIn{c}}{Gb{e}}}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{DAd{ce}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}0{{{h{Ah{CKh{}{{CIn{c}}{Gb{e}}}}}}{h{g}}{h{i}}}{{Dn{Bfe}}}{}CJn{I`ACd}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}CL`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}ADd}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{h{Ah{CKd{}{{CIn{c}}{Gb{e}}}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{CKf{}{{CIn{c}}{Gb{e}}}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{CKj{}{{CIn{c}}{Gb{e}}}}}}{h{G`}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{CKl{}{{CIn{c}}{Gb{e}}}}}}{h{G`}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{DAd{ce}}}}{h{G`}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}808{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BK`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BAn}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BB`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}A@`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}BBb}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{h{Ah{CKh{}{{CIn{c}}{Gb{e}}}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}>{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{Dh{Hj}}}{{Dn{oe}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{Dh{Hj}}}{{Dn{ge}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{Ae}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}{I`ACd}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Hj}{{Dn{Aae}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}Hj}{{Dn{Ace}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Hj}{{Dn{ie}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Hj}{{Dn{ke}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}Hj}{{Dn{me}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}AD`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}AEn}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Df}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}Ed}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}A`}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}=:{{{Hn{}{{CIn{c}}{Gb{e}}{CJ`{g}}{CJb{i}}{CJd{k}}{CJf{m}}{CJh{o}}{CJj{Aa}}{CJl{Ac}}}}{h{G`}}Df{h{G`}}}{{Dn{ce}}}{}CJn{{CK`{}{{CIn{c}}{Gb{e}}}}}{{CKb{}{{CIn{c}}{Gb{e}}}}}{{CKd{}{{CIn{c}}{Gb{e}}}}}{{CKf{}{{CIn{c}}{Gb{e}}}}}{{CKh{}{{CIn{c}}{Gb{e}}}}}{{CKj{}{{CIn{c}}{Gb{e}}}}}{{CKl{}{{CIn{c}}{Gb{e}}}}}}{{{h{Ah{CKh{}{{CIn{c}}{Gb{e}}}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{DAd{ce}}}}{h{g}}}{{Dn{Bfe}}}{}CJn{I`ACd}}{{{h{Ah{CKj{}{{CIn{c}}{Gb{e}}}}}}{h{G`}}}{{Dn{Bfe}}}{}CJn}{{{h{Ah{CKl{}{{CIn{c}}{Gb{e}}}}}}{h{G`}}}{{Dn{Bfe}}}{}CJn}{{{h{AOf}}}{{Dh{{h{AOf}}}}}}{{{h{AOf}}}DAf}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}{ce{}{}}```{c{{Dn{DAh}}}E`}{{{h{{Ad{A`}}}}}{{Dn{DAhFn}}}}{{{h{DAh}}c}DnHn}``{{}DAj}{{{h{DAj}}}h}{{{h{DAj}}}{{h{{Ab{A`}}}}}}{{{h{DAj}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}10{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DAj}}}DAj}{{{h{DAl}}}DAl}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DAj}}{h{DAj}}}Bh}{{}DAl}{c{{Dn{DAj}}}E`}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{}}{{{h{DAj}}{h{DAj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhDAl}}}{{Dn{BfBBl}}}}{{{h{AhDAl}}}{{Dn{BfACf}}}}{{{h{DAj}}{h{AhEn}}}{{Dn{BfF`}}}}000{cc{}}0{{}DAj}{{{h{Ah{Ab{A`}}}}}{{h{AhDAj}}}}{{{h{{Ab{A`}}}}}{{h{DAj}}}}{DAlDAj}{{{h{{Ad{A`}}}}}{{Dn{DAjFn}}}}0{{{h{G`}}}{{Dn{DAj}}}}{{{h{DAj}}{h{Ahc}}}BfGf}{{{h{DAj}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhDAl}}{h{{Ad{A`}}}}}Bf}{ce{}{}}0{{{h{DAl}}}{{Ab{A`}}}}{{{h{DAl}}}Hj}{{{h{DAj}}{h{DAj}}}{{Dh{Bh}}}}{{{h{DAj}}c}DnHn}{DAj}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}099{{{h{AhDAl}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{AhDAl}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}}```{{}n}{{{h{n}}}h}{{{h{n}}}{{h{{Ab{A`}}}}}}{{{h{n}}}{{h{{Ad{A`}}}}}}{{{h{DAn}}}{{h{{Ad{A`}}}}}}1{{{h{c}}}{{h{e}}}{}{}}010{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{n}}}n}{{{h{ADh}}}ADh}{{{h{DAn}}}DAn}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{n}}{h{n}}}Bh}{{{h{DAn}}{h{DAn}}}Bh}{{{h{Ahc}}}{{Dn{nAC`}}}{ACbACd}}{{{h{n}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{Ad{A`}}}}}n}{{}ADh}{{}DAn}{c{{Dn{n}}}E`}{c{{Dn{DAn}}}E`}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{}}{{{h{n}}{h{n}}}Ef}{{{h{DAn}}{h{DAn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{AhADh}}}{{Dn{BfBBl}}}}{{{h{AhADh}}}{{Dn{BfACf}}}}{{{h{n}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{DAn}}{h{AhEn}}}{{Dn{BfF`}}}}000{dn}{L`n}{cc{}}00{{}n}{{{Ab{A`}}}DAn}{{{h{Ah{Ab{A`}}}}}{{h{Ahn}}}}{{{h{{Ab{A`}}}}}{{h{n}}}}{ADhn}{{{h{G`}}}{{Dn{DAn}}}}{{DAnHj}ADh}{{{h{{Ad{A`}}}}}{{Dn{nFn}}}}{{{h{{Ad{A`}}}}}{{Dn{DAnFn}}}}10{{{h{G`}}}{{Dn{n}}}}4{{{h{n}}{h{Ahc}}}BfGf}{{{h{DAn}}{h{Ahc}}}BfGf}{{{h{n}}}Mh}{{{h{{Ad{A`}}}}}DAn}{{{h{n}}c}h{{Gj{{Ad{A`}}}}}}{{{h{DAn}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhADh}}{h{{Ad{A`}}}}}Bf}{ce{}{}}00{nBDd}{{{h{ADh}}}DAn}{{{h{ADh}}}Hj}{{{h{n}}{h{n}}}{{Dh{Bh}}}}{{{h{DAn}}{h{DAn}}}{{Dh{Bh}}}}{{{h{n}}c}DnHn}{{{h{DAn}}c}DnHn}{n}{DAn{{Ab{A`}}}}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00==={{{h{AhADh}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}}{{{h{AhADh}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}`{{}Mh}{{{h{Mh}}}h}{{{h{Mh}}}{{h{{Ab{A`}}}}}}{{{h{Mh}}}{{h{{Ad{A`}}}}}}0{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{Mh}}}Mh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Mh}}{h{Mh}}}Bh}{{{h{Ahc}}}{{Dn{MhAC`}}}{ACbACd}}{{{h{Mh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{c{{Dn{Mh}}}E`}{{}}{{{h{Mh}}{h{Mh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{Mh}}{h{AhEn}}}{{Dn{BfF`}}}}000{KdMh}{KhMh}{LbMh}{KjMh}{D`Mh}{KbMh}{LhMh}{LjMh}{cc{}}{CbMh}{KlMh}{ALlMh}{{}Mh}{{{h{Ah{Ab{A`}}}}}{{h{AhMh}}}}{{{h{{Ab{A`}}}}}{{h{Mh}}}}{ADhMh}{{{h{{Ad{A`}}}}}{{Dn{MhFn}}}}0{{{h{G`}}}{{Dn{Mh}}}}{{{h{Mh}}{h{Ahc}}}BfGf}{{{h{Mh}}c}h{{Gj{{Ad{A`}}}}}}{ce{}{}}{{{h{Mh}}{h{Mh}}}{{Dh{Bh}}}}{{{h{Mh}}c}DnHn}{Mh}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}7``{{}{{Mn{c}}}DB`}{{{h{{Mn{c}}}}}hDB`}{{{h{{Mn{c}}}}}{{h{{Ad{A`}}}}}DB`}{{{h{{Mn{c}}}}}{{h{{Ab{A`}}}}}DB`}1{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{Mn{c}}}}}{{Mn{c}}}DB`}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{{Mn{c}}}}{h{{Mn{c}}}}}BhDB`}8{c{{Dn{{Mn{e}}}}}E`DB`}{{}ADh}{{}}{{{h{{Mn{c}}}}{h{{Mn{c}}}}}EfDB`}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{{Mn{c}}}}{h{AhEn}}}{{Dn{BfF`}}}DB`}000{Mb{{Mn{Nd}}}}{Ln{{Mn{N`}}}}{cc{}}{Ll{{Mn{Ml}}}}{M`{{Mn{Nb}}}}{{}{{Mn{c}}}DB`}{{{h{Ah{Ab{A`}}}}}{{h{Ah{Mn{c}}}}}DB`}{{{h{{Ab{A`}}}}}{{h{{Mn{c}}}}}DB`}{ADh{{Mn{c}}}DB`}{{{h{{Ad{A`}}}}}{{Dn{{Mn{c}}Fn}}}DB`}0{{{h{G`}}}{{Dn{{Mn{c}}}}}DB`}{{{h{{Mn{c}}}}{h{Ahe}}}BfDB`Gf}{{{h{{Mn{c}}}}e}hDB`{{Gj{{Ad{A`}}}}}}{ce{}{}}{{{h{{Mn{c}}}}{h{{Mn{c}}}}}{{Dh{Bh}}}DB`}{{{h{{Mn{c}}}}e}DnDB`Hn}{{{Mn{c}}}{}DB`}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}7``{{}DBb}{{{h{DBb}}}h}{{{h{DBb}}}{{h{{Ad{A`}}}}}}{{{h{DBb}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}20{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DBb}}}DBb}{{{h{DBd}}}DBd}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DBb}}{h{DBb}}}Bh}{{}DBd}{c{{Dn{DBb}}}E`}{{}}{{{h{DBb}}{h{DBb}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{DBb}}{h{AhEn}}}{{Dn{BfF`}}}}000{cc{}}0{{}DBb}{{{h{Ah{Ab{A`}}}}}{{h{AhDBb}}}}{{{h{{Ab{A`}}}}}{{h{DBb}}}}{DBdDBb}{{{h{{Ad{A`}}}}}{{Dn{DBbFn}}}}0{{{h{G`}}}{{Dn{DBb}}}}{{{h{DBb}}{h{Ahc}}}BfGf}{{{h{DBb}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhDBd}}{h{{Ad{A`}}}}}Bf}{ce{}{}}0{{{h{DBd}}}{{Ab{A`}}}}{{{h{DBd}}}Hj}{{{h{DBb}}{h{DBb}}}{{Dh{Bh}}}}{{{h{DBb}}c}DnHn}{DBb}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}099``{{}DBf}{{{h{DBf}}}h}{{{h{DBf}}}{{h{{Ad{A`}}}}}}{{{h{DBf}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}20{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DBf}}}DBf}{{{h{DBh}}}DBh}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DBf}}{h{DBf}}}Bh}{{}DBh}{c{{Dn{DBf}}}E`}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{}}{{{h{DBf}}{h{DBf}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhDBh}}}{{Dn{BfACf}}}}{{{h{AhDBh}}}{{Dn{BfBBl}}}}{{{h{DBf}}{h{AhEn}}}{{Dn{BfF`}}}}000{cc{}}0{{}DBf}{{{h{Ah{Ab{A`}}}}}{{h{AhDBf}}}}{{{h{{Ab{A`}}}}}{{h{DBf}}}}{DBhDBf}{{{h{{Ad{A`}}}}}{{Dn{DBfFn}}}}0{{{h{G`}}}{{Dn{DBf}}}}{{{h{DBf}}{h{Ahc}}}BfGf}{{{h{DBf}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhDBh}}{h{{Ad{A`}}}}}Bf}{ce{}{}}0{{{h{DBh}}}{{Ab{A`}}}}{{{h{DBh}}}Hj}{{{h{DBf}}{h{DBf}}}{{Dh{Bh}}}}{{{h{DBf}}c}DnHn}{DBf}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}099{{{h{AhDBh}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{AhDBh}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}}``{{}DBj}{{{h{DBj}}}h}{{{h{DBj}}}{{h{{Ad{A`}}}}}}{{{h{DBj}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}20{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DBj}}}DBj}{{{h{DBl}}}DBl}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DBj}}{h{DBj}}}Bh}{{}DBl}{c{{Dn{DBj}}}E`}{{}}{{{h{DBj}}{h{DBj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{DBj}}{h{AhEn}}}{{Dn{BfF`}}}}000{cc{}}0{{}DBj}{{{h{Ah{Ab{A`}}}}}{{h{AhDBj}}}}{{{h{{Ab{A`}}}}}{{h{DBj}}}}{DBlDBj}{{{h{{Ad{A`}}}}}{{Dn{DBjFn}}}}0{{{h{G`}}}{{Dn{DBj}}}}{{{h{DBj}}{h{Ahc}}}BfGf}{{{h{DBj}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhDBl}}{h{{Ad{A`}}}}}Bf}{ce{}{}}0{{{h{DBl}}}{{Ab{A`}}}}{{{h{DBl}}}Hj}{{{h{DBj}}{h{DBj}}}{{Dh{Bh}}}}{{{h{DBj}}c}DnHn}{DBj}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}099```{{}DBn}{{{h{DBn}}}h}{{{h{DBn}}}{{h{{Ab{A`}}}}}}{{{h{DBn}}}{{h{{Ad{A`}}}}}}{{{h{DBn}}}Ed}{{{h{c}}}{{h{e}}}{}{}}200{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{DBn}}}DBn}{{{h{DC`}}}DC`}{{{h{DCb}}}DCb}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{DBn}}{h{DBn}}}Bh}{{}DCb}{c{{Dn{DBn}}}E`}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{}}{{{h{DBn}}{h{DBn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhDCb}}}{{Dn{BfACf}}}}{{{h{AhDCb}}}{{Dn{BfBBl}}}}{{{h{DBn}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{DC`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DCb}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00{{}DBn}{{{h{Ah{Ab{A`}}}}}{{h{AhDBn}}}}{{{h{{Ab{A`}}}}}{{h{DBn}}}}{DCbDBn}{DCbEd}{{{h{{Ad{A`}}}}}{{Dn{DBnFn}}}}0{{{h{G`}}}{{Dn{DBn}}}}{EdDBn}{{{h{DBn}}{h{Ahc}}}BfGf}{{EdEd{h{{Ad{A`}}}}}Ed}{{EdEd{h{{Ad{A`}}}}}DBn}{{{h{DBn}}c}h{{Gj{{Ad{A`}}}}}}{{{h{AhDCb}}{h{{Ad{A`}}}}}Bf}{ce{}{}}00{{{h{DCb}}}{{Ff{EdEd}}}}{{{h{DCb}}}DC`}{{{h{DCb}}}Hj}{{}DCb}{{{h{DBn}}{h{DBn}}}{{Dh{Bh}}}}{{{h{DBn}}c}DnHn}{DBn}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00;;;{{EdEd}DCb}{{{h{AhDCb}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{AhDCb}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}}```````````````````````````````{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{ACf}}}{{Dh{{h{AOf}}}}}}{{{h{DCd}}}DCd}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{AhACn}}Hj}Bf}{{{h{Ah{DCf{c}}}}Hj}BfDCh}0{{{h{Ah{DCj{c}}}}Hj}BfACn}0{{{h{Ah{DCl{c}}}}Hj}Bf{ACnACd}}{{{h{Ah{DCn{c}}}}Hj}Bf{{ADb{{Ad{A`}}}}}}{{{h{ACf}}}{{h{G`}}}}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}00{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}00{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}00{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}00{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}00{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}00{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}00{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}00{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}00{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}00{{{h{DCd}}{h{DCd}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhACn}}}{{Dn{{h{{Ad{A`}}}}ACf}}}}{{{h{Ah{DCf{c}}}}}{{Dn{{h{{Ad{A`}}}}BBl}}}DCh}{{{h{Ah{DCf{c}}}}}{{Dn{{h{{Ad{A`}}}}ACf}}}DCh}{{{h{Ah{DCj{c}}}}}{{Dn{{h{{Ad{A`}}}}BBl}}}ACn}{{{h{Ah{DCj{c}}}}}{{Dn{{h{{Ad{A`}}}}ACf}}}ACn}{{{h{Ah{DCl{c}}}}}{{Dn{{h{{Ad{A`}}}}ACf}}}{ACnACd}}{{{h{Ah{DCn{c}}}}}{{Dn{{h{{Ad{A`}}}}ACf}}}{{ADb{{Ad{A`}}}}}}{{{h{AhACh}}}{{Dn{BfACf}}}}{{{h{Ah{DCf{c}}}}}{{Dn{BfACf}}}BHf}{{{h{Ah{DCf{c}}}}}{{Dn{BfBBl}}}BHf}{{{h{Ah{DCj{c}}}}}{{Dn{BfBBl}}}ACh}{{{h{Ah{DCj{c}}}}}{{Dn{BfACf}}}ACh}{{{h{AhDD`}}}{{Dn{BfACf}}}}{{{h{AhDD`}}}{{Dn{BfBBl}}}}{{{h{ACf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DCd}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}0000{BBlACf}1{DCdACf}{AO`DCd}3{c{{DCf{c}}}{}}{{{h{Ahc}}}{{h{Ah{DCf{c}}}}}{}}{{{h{ACf}}}{{Dh{{h{AOf}}}}}}{{{h{DCd}}{h{Ahc}}}BfGf}`{{{h{{DCf{c}}}}}{{h{c}}}{}}{{{h{{DCj{c}}}}}{{h{c}}}{}}{{{h{{DCn{c}}}}}{{h{c}}}{{ADb{{Ad{A`}}}}}}{{{h{Ah{DCf{c}}}}}{{h{Ahc}}}{}}{{{h{Ah{DCj{c}}}}}{{h{Ahc}}}{}}{ce{}{}}000000{{{DCf{c}}}c{}}{{{DCj{c}}}c{}}{{{DCn{c}}}c{{ADb{{Ad{A`}}}}}}{{{h{ACf}}}DCd}={c{{DCj{c}}}{}}{c{{DCn{c}}}{{ADb{{Ad{A`}}}}}}{{DCdc}ACf{{AHd{{AJd{AOf}}}}}}{{{AJd{c}}}{{AJd{{DCf{c}}}}}{}}{{{AJd{c}}}{{AJd{{DCj{c}}}}}{}}{{{h{Ahc}}}{{h{Ah{DCf{c}}}}}{}}{{{h{Ahc}}}{{h{Ah{DCj{c}}}}}{}}{{{h{{DCn{c}}}}}Ed{{ADb{{Ad{A`}}}}}}{{{h{AhACb}}{h{Ah{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{Ah{DCf{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjACf}}}BH`}{{{h{Ah{DCf{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjBBl}}}BH`}{{{h{Ah{DCj{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjACf}}}ACb}{{{h{Ah{DCj{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjBBl}}}ACb}{{{h{Ah{DCl{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjACf}}}{ACbACd}}{{{h{Ah{DCn{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{HjACf}}}{{ADb{{Ad{A`}}}}}}{{{h{Ahc}}}{{Dn{EfAC`}}}{}}000{{{h{Ah{DCf{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{BfACf}}}BH`}{{{h{Ah{DCf{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{BfBBl}}}BH`}{{{h{Ah{DCj{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{BfACf}}}ACb}{{{h{Ah{DCj{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{BfBBl}}}ACb}{{{h{AhACb}}{h{Ah{Ad{A`}}}}}{{Dn{BfACf}}}}{{{h{Ahc}}}{{Dn{BAnAC`}}}{}}000{{{h{Ahc}}}{{Dn{BB`AC`}}}{}}000{{{h{Ahc}}}{{Dn{A@`AC`}}}{}}000{{{h{Ahc}}}{{Dn{BBbAC`}}}{}}000{{{h{Ahc}}{h{Ah{Ad{A`}}}}}{{Dn{BfAC`}}}{}}000{{{h{Ah{DCl{c}}}}{h{Ah{ADn{A`}}}}}{{Dn{HjACf}}}{ACbACd}}{{{h{AhACb}}{h{Ah{ADn{A`}}}}Ed}{{Dn{HjACf}}}}{{{h{Ahc}}}{{Dn{AEnAC`}}}{}}000{{{h{Ahc}}}{{Dn{DfAC`}}}{}}000{{{h{Ahc}}}{{Dn{EdAC`}}}{}}000{{{h{Ahc}}}{{Dn{A`AC`}}}{}}000{{{h{Ah{DCn{c}}}}Ed}Bf{{ADb{{Ad{A`}}}}}}{{}DD`}{{{h{ACf}}}{{Dh{{h{AOf}}}}}}{{{h{AhACb}}Ed}{{DCl{ACb}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}0000000000000{{{h{c}}}Ij{}}000000{ce{}{}}000000{{{h{AhACh}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{Ah{DCf{c}}}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}BHf}{{{h{Ah{DCf{c}}}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}BHf}{{{h{Ah{DCj{c}}}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}ACh}{{{h{Ah{DCj{c}}}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}ACh}{{{h{AhDD`}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}}{{{h{AhDD`}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}}{{{h{Ah{DCf{c}}}}{h{{Ad{A`}}}}}{{Dn{BfBBl}}}BHf}{{{h{Ah{DCf{c}}}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}BHf}{{{h{Ah{DCj{c}}}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}ACh}{{{h{Ah{DCj{c}}}}{h{{Ad{A`}}}}}{{Dn{BfBBl}}}ACh}{{{h{AhACh}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}}{{{h{AhDD`}}{h{{Ad{A`}}}}}{{Dn{BfBBl}}}}{{{h{AhDD`}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}}```````````````````````````````````````{{AGb{h{{Jd{c}}}}{h{Jf}}}{{Dn{AGbJj}}}Jl}{{{h{AGb}}}}{{{h{AhAGb}}}}{{{h{AhAGb}}}DDb}{{{h{AGb}}}DDb}{{JhJh}}{{{h{c}}}{{h{e}}}{}{}}000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000000000{{{h{{Jd{c}}}}}{{Jd{c}}}DDd}{{{h{AGb}}}AGb}{{{h{Jh}}}Jh}{{{h{AMb}}}AMb}{{{h{ACj}}}ACj}{{{h{DDf}}}DDf}{{{h{AHb}}}AHb}{{{h{AHl}}}AHl}{{{h{AHj}}}AHj}{{{h{DDh}}}DDh}{{{h{AGh}}}AGh}{{{h{DDj}}}DDj}{{{h{DDl}}}DDl}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000000{{{h{AGb}}{h{AGb}}}Bh}{{{h{Jh}}{h{Jh}}}Bh}{{{h{AMb}}{h{AMb}}}Bh}{{{h{ACj}}{h{ACj}}}Bh}{{{h{DDf}}{h{DDf}}}Bh}4``{{{h{{Jd{c}}}}}{{DE`{DDn}}}DDd}{{{DEf{}{{DEb{c}}{DEd{e}}}}}e{}{}}{AGbDDf}{JbACj}1{{}{{Jd{DEh}}}}{c{{Dn{AGb}}}E`}{c{{Dn{Jh}}}E`}{c{{Dn{ACj}}}E`}{c{{Dn{DDf}}}E`}{{{h{AGb}}}DEj}{{{h{Ah{Jd{c}}}}}BfDDd}{{{h{{Jd{c}}}}{h{{Jd{c}}}}}EfDDd}{{{h{AGb}}{h{AGb}}}Ef}{{{h{Jh}}{h{Jh}}}Ef}{{{h{AMb}}{h{AMb}}}Ef}{{{h{ACj}}{h{ACj}}}Ef}{{{h{DDf}}{h{DDf}}}Ef}{{{h{AHb}}{h{AHb}}}Ef}{{{h{AHl}}{h{AHl}}}Ef}{{{h{AHj}}{h{AHj}}}Ef}{{{h{DDh}}{h{DDh}}}Ef}{{{h{AGh}}{h{AGh}}}Ef}{{{h{DDj}}{h{DDj}}}Ef}{{{h{DDl}}{h{DDl}}}Ef};{{{h{c}}{h{e}}}Ef{}{}}0000000000000000000000000{{{h{{Jd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}DDd}{{{h{AGb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Jh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AMb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{ACj}}{h{AhEn}}}{{Dn{BfF`}}}}00{{{h{DDf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AHb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AHl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AHj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DDh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AGh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DDj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DDl}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{DDfAGb}11{DDfACj}222{JjAHb}{AO`AHb}{DDjAHl}{AO`AHl}{DDlAHl}7{AObAHl}{JjAHl}{AHbAHj}{AO`AHj};{AO`DDh}<{JjDDh}{BOfDDh}>>>{BB`{{Dn{JhDEl}}}}={{{DE`{DDn}}}{{DF`{{Jd{DEn}}}}}}{{{DE`{DDn}}}{{DF`{{Jd{DFb}}}}}}{{{DE`{DDn}}}{{DF`{{Jd{DFd}}}}}}{{{h{{Jd{c}}}}{h{{Ad{A`}}}}}{{Dn{AGbJj}}}AGf}{{{h{{Jd{c}}}}{h{G`}}}{{Dn{AGbJj}}}AGf}{{{h{{Jd{c}}}}{h{AJn}}}AGbAGf}{{{h{G`}}}{{Dn{AGb}}}}{A`{{Dn{JhDEl}}}}{{}{{Jd{c}}}DDd}{{{h{{Jd{c}}}}{h{Ahe}}}{{Ff{AJnAEf}}}AGf{DFfACd}}{{{h{AGb}}{h{Ahc}}}BfGf}{{{h{Jh}}{h{Ahc}}}BfGf}{{{h{AMb}}{h{Ahc}}}BfGf}{{{h{ACj}}{h{Ahc}}}BfGf}{{{h{DDf}}{h{Ahc}}}BfGf}``{ce{}{}}000000000000{{{h{DDl}}}A`}{{{h{DDj}}}Hj}`{{}{{Jd{DEh}}}}{{{h{{Jd{c}}}}{h{Ahe}}}AGbAGf{DFfACd}}{{{h{AhAGb}}}Bf}{{{h{AGb}}{h{AGb}}}{{Dh{Bh}}}}{{{h{Jh}}{h{Jh}}}{{Dh{Bh}}}}{{{h{AMb}}{h{AMb}}}{{Dh{Bh}}}}{{{h{ACj}}{h{ACj}}}{{Dh{Bh}}}}{{{h{DDf}}{h{DDf}}}{{Dh{Bh}}}}{{}Hj}000{{{h{Ah{Ad{DFh}}}}}{{Dn{{Jd{c}}Jj}}}{DDdDFj}}{{{h{Ah{Ad{DFh}}}}}{{Dn{{Jd{DEn}}Jj}}}}{{{h{Ah{Ad{DFh}}}}}{{Dn{{Jd{DFb}}Jj}}}}{{{h{Ah{Ad{DFh}}}}}{{Dn{{Jd{DFd}}Jj}}}}{{{h{AGb}}}AEf}{{{h{DDf}}}{{Ff{ACjJh}}}}{{{h{Ah{Jd{c}}}}{h{Ahe}}}BfDDd{DFfACd}}{{{h{{Jd{c}}}}{h{AKl}}{h{DFl}}}{{Dn{AEfJj}}}Jl}{{{h{AGb}}}{{Ab{A`}}}}{{{h{AGb}}}AJn}{{{h{Ah{Jd{c}}}}{h{{Ab{A`}}}}}BfDDd}{{{h{AGb}}c}DnHn}{{{h{Jh}}c}DnHn}{{{h{ACj}}c}DnHn}{{{h{ACj}}}{{Ab{A`}}}}{{{h{DDf}}c}DnHn}{{{h{{Jd{c}}}}{h{AKl}}{h{AJn}}}CFjAGf}{{{h{{Jd{c}}}}{h{AKl}}{h{AJn}}Hj}CFjAGf}1{{{h{{Jd{c}}}}{h{AKl}}{h{AJn}}}DFlAGf}{{{h{{Jd{c}}}}{h{AKl}}{h{AJn}}{h{{Ab{A`}}}}}DFlAGf}{{{h{{Jd{c}}}}{h{AKl}}{h{AJn}}{h{{Ab{A`}}}}}CFjAGf}{{{h{{Jd{c}}}}{h{AKl}}{h{AGb}}}AMnAGf}0{{{h{{Jd{c}}}}{h{AKl}}{h{AGb}}{h{{Ab{A`}}}}}AMnAGf}{{{h{{Jd{c}}}}{h{AKl}}{h{AGb}}{h{Ahe}}}AMnAGf{DFfDFn}}{{}{{Jd{DG`}}}}{{{h{AHb}}}{{Dh{{h{AOf}}}}}}{{{h{AHl}}}{{Dh{{h{AOf}}}}}}{{{h{AHj}}}{{Dh{{h{AOf}}}}}}{{{h{DDh}}}{{Dh{{h{AOf}}}}}}{{{h{AGh}}}{{Dh{{h{AOf}}}}}}{{{DEf{}{{DEb{c}}{DEd{e}}}}{h{{Jd{g}}}}{Dh{M`}}}c{}{}Jl}{{AGb{h{{Jd{c}}}}{Dh{M`}}}DDfJl}{JhBB`}{ACjJb}{DDfAGb}{{{h{c}}}e{}{}}000000000000{{{h{c}}}If{}}0000000{JhA`}{c{{Dn{e}}}{}{}}0{A`{{Dn{Jh}}}}{BB`{{Dn{Jh}}}}222222222222222222222222{{{h{c}}}Ij{}}000000000000{{}{{Jd{DGb}}}}{{{h{{Jd{c}}}}{h{AKl}}{h{CFj}}{h{AEf}}}{{Dn{BfJj}}}Jl}{{{h{{Jd{c}}}}{h{AMn}}{h{AKl}}{h{Jb}}}{{Dn{BfJj}}}Jl}{ce{}{}}000000000000{{{h{AGb}}}{{Ff{JbJh}}}}`````````````{{{h{DGd}}}{{h{{ADn{Ef}}}}}}{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{e{{Dh{c}}}{CGdCDf}{{Gn{}{{Ej{c}}}}}}{{{h{Ah{Ad{c}}}}}{{Dh{c}}}{CGdCDf}}{{{h{DGd}}}DGd}{{{h{AE`}}}AE`}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Ahc}}}{{Dn{DGdAC`}}}{ACbACd}}{{{h{DGd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DGd}}{h{DGd}}}Ef}{{{h{AE`}}{h{AE`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{DGd}}{h{Ah{ADn{Cb}}}}{h{Ah{ADn{Df}}}}}{{Dn{KhAE`}}}}{{{h{DGd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AE`}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{AO`AE`}1{{{h{{Ad{Cb}}}}{h{{Ad{Ef}}}}}DGd}{{{h{DGd}}}{{h{{ADn{Kh}}}}}}`{ce{}{}}0{{{h{DGd}}}Df}{{{h{AE`}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}000`{{{h{c}}}Ij{}}066````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{AFl}}}AFl}{{{h{DGf}}}DGf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{AFl}}{h{AFl}}}Ef}{{{h{DGf}}{h{DGf}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{AFl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DGf}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}0{ce{}{}}0{{{h{AFl}}}{{Dh{{h{AOf}}}}}}{{{h{DGf}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}066{c{{Dn{Ch}}}E`}{{{h{Ch}}c}DnHn}````````````````````{{{h{AhDGh}}DGh}DGh}``{{{h{AhAGd}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhAGd}}}{{h{Ah{Ad{A`}}}}}}{{{h{AGd}}}{{h{{Ab{A`}}}}}}{{{h{AGd}}}{{h{{Ad{A`}}}}}}{{DGhDGh}DGh}{{{h{AhDGh}}DGh}Bf}10{{{h{c}}}{{h{e}}}{}{}}043000{{{h{Ahc}}}{{h{Ahe}}}{}{}}007600{{{h{BAf}}}BAf}{{{h{DGh}}}DGh}{{{h{AGd}}}AGd}{{{h{DGj}}}DGj}{{{h{DGl}}}DGl}{{{h{c}}{h{Ahe}}}Bf{}{}}0000{{{h{DGh}}{h{DGh}}}Bh}{{{h{AGd}}{h{AGd}}}Bh}{{{h{Ahc}}}{{Dn{BAfAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DGhAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{AGdAC`}}}{ACbACd}}{{{h{BAf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DGh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AGd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{}DGh}{{{h{BAf}}{h{BAf}}}Ef}{{{h{DGh}}{h{DGh}}}Ef}{{{h{AGd}}{h{AGd}}}Ef}{{{h{DGj}}{h{DGj}}}Ef}{{{h{DGl}}{h{DGl}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000{{{h{BAf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DGh}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AGd}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{DGj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DGl}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{EdDGh}1{ChAGd}222{{{Ab{A`}}}AGd}{cAGd{{ADb{Nh}}}}{{{h{G`}}}{{Dn{AGd}}}}{{DGhDGh}Ef}{{{h{BAf}}{h{Ahc}}}BfGf}{{{h{DGh}}{h{Ahc}}}BfGf}{{{h{AGd}}{h{Ahc}}}BfGf}{ce{}{}}0000``````{{{h{BEf}}DGh}BAf}{{{h{DGh}}{h{DGh}}}{{Dh{Bh}}}}{{{h{AGd}}{h{AGd}}}{{Dh{Bh}}}}`{{{h{AhDGh}}DGh}DGh}`{{{h{BAf}}}{{Dn{BEfACf}}}}{{{h{DGj}}}{{Dh{{h{AOf}}}}}}{{{h{DGl}}}{{Dh{{h{AOf}}}}}}{AGd{{Ab{A`}}}}{{{h{c}}}e{}{}}0000{{{h{BAf}}}{{Dn{BBl}}}}{{{h{c}}}If{}}000{DGhEd}{c{{Dn{e}}}{}{}}000000000{{{h{c}}}Ij{}}0000>>>>>````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DGn}}}DGn}{{{h{BAh}}}BAh}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Ahc}}}{{Dn{DGnAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{BAhAC`}}}{ACbACd}}{{{h{DGn}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{BAh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DGn}}{h{DGn}}}Ef}{{{h{BAh}}{h{BAh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{DGn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{BAh}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}0{{{h{DGn}}{h{Ahc}}}BfGf}{{{h{BAh}}{h{Ahc}}}BfGf}{ce{}{}}0````{{{h{BAh}}}{{Dn{BEfACf}}}}`{{{h{c}}}e{}{}}0{{{h{BAh}}}{{Dn{BBl}}}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}055```````````````````````````````````````````{{{h{DH`}}}{{h{G`}}}}{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{DH`}}}DH`}{{{h{DHb}}}DHb}{{{h{DHd}}}DHd}{{{h{DHf}}}DHf}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{DHd}}}{{h{G`}}}}{{{h{DHf}}}{{h{G`}}}}{{{h{DHd}}}DH`}{{{h{DHf}}}DH`}{{{h{Ahc}}}{{Dn{DH`AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DHdAC`}}}{ACbACd}}0{{{h{DH`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DHd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DHf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DH`}}{h{DH`}}}Ef}{{{h{DHb}}{h{DHb}}}Ef}{{{h{DHd}}{h{DHd}}}Ef}{{{h{DHf}}{h{DHf}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000{{{h{DH`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DHb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DHd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DHf}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}000{{{h{G`}}}{{Dn{DH`}}}}{ce{}{}}000{DHdDHf}{{{h{DHd}}}{{h{AGd}}}}{{AGdDHf}DHd}{{{h{DHd}}}{{h{DHf}}}}{{{h{DHb}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}000{{{h{c}}}If{}}08{{{AJd{G`}}}{{Dn{DH`}}}}{c{{Dn{e}}}{}{}}{If{{Dn{DH`}}}}111{{{h{G`}}}{{Dn{DH`DHb}}}}2222{{{h{c}}}Ij{}}000<<<<`````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{BAb}}}BAb}{{{h{DHh}}}DHh}{{{h{DHj}}}DHj}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{BAb}}{h{BAb}}}Bh}{{{h{Ahc}}}{{Dn{BAbAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DHhAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DHjAC`}}}{ACbACd}}10{{{h{BAb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DHh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DHj}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{BAb}}{h{BAb}}}Ef}{{{h{DHh}}{h{DHh}}}Ef}{{{h{DHj}}{h{DHj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{BAb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DHh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DHj}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00{{{h{BAb}}{h{Ahc}}}BfGf}{ce{}{}}00``{{{h{BAb}}}{{Dh{{Ab{A`}}}}}}{{{ADn{D`}}D`}DHh}{{{ADn{D`}}D`}DHj}{{{h{BAb}}{h{BAb}}}{{Dh{Bh}}}}``{{{h{c}}}e{}{}}00{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00``777````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{DHl}}}DHl}{{{h{DHn}}}DHn}{{{h{DI`}}}DI`}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{Ahc}}}{{Dn{DHlAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DHnAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DI`AC`}}}{ACbACd}}20{{{h{DHl}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DHn}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DI`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}`{{{h{DHl}}{h{DHl}}}Ef}{{{h{DHn}}{h{DHn}}}Ef}{{{h{DI`}}{h{DI`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000``{{{h{DHl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DHn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DI`}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00`{ce{}{}}00{{{h{c}}}e{}{}}00{c{{Dn{e}}}{}{}}00000`{{{h{c}}}Ij{}}00333````{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{DIb}}}DIb}{{{h{DId}}}DId}{{{h{DIf}}}DIf}{{{h{DIh}}}DIh}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{DIb}}{h{DIb}}}Bh}{{{h{DId}}{h{DId}}}Bh}{{{h{DIf}}{h{DIf}}}Bh}{{{h{DIh}}{h{DIh}}}Bh}`{{{h{Ahc}}}{{Dn{DIbAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DIdAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DIfAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DIhAC`}}}{ACbACd}}3210{{{h{DIb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DId}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DIf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DIh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DIb}}{h{DIb}}}Ef}{{{h{DId}}{h{DId}}}Ef}{{{h{DIf}}{h{DIf}}}Ef}{{{h{DIh}}{h{DIh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000{{{h{DIb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DId}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DIf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DIh}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}000{{{h{DIb}}{h{Ahc}}}BfGf}{{{h{DId}}{h{Ahc}}}BfGf}{{{h{DIf}}{h{Ahc}}}BfGf}{{{h{DIh}}{h{Ahc}}}BfGf}{ce{}{}}000{{{h{DIb}}{h{DIb}}}{{Dh{Bh}}}}{{{h{DId}}{h{DId}}}{{Dh{Bh}}}}{{{h{DIf}}{h{DIf}}}{{Dh{Bh}}}}{{{h{DIh}}{h{DIh}}}{{Dh{Bh}}}}`{{{h{c}}}e{}{}}000`{c{{Dn{e}}}{}{}}0000000`{{{h{c}}}Ij{}}000`7777```````{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{DIj}}}DIj}{{{h{DIl}}}DIl}{{{h{DIn}}}DIn}{{{h{DJ`}}}DJ`}{{{h{DJb}}}DJb}{{{h{DJd}}}DJd}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{Ahc}}}{{Dn{DIjAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DIlAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DInAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DJ`AC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DJbAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DJdAC`}}}{ACbACd}}543210{{{h{DIj}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DIl}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DIn}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DJ`}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DJb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DJd}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DIj}}{h{DIj}}}Ef}{{{h{DIl}}{h{DIl}}}Ef}{{{h{DIn}}{h{DIn}}}Ef}{{{h{DJ`}}{h{DJ`}}}Ef}{{{h{DJb}}{h{DJb}}}Ef}{{{h{DJd}}{h{DJd}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000000000`````````{{{h{DIj}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DIl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DIn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DJ`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DJb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DJd}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00000{ce{}{}}00000````````{{{h{c}}}e{}{}}00000{c{{Dn{e}}}{}{}}00000000000{{{h{c}}}Ij{}}00000333333```````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00`{{{h{DJf}}}DJf}{{{h{DJh}}}DJh}{{{h{DJj}}}DJj}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{Ahc}}}{{Dn{DJfAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DJhAC`}}}{ACbACd}}{{{h{Ahc}}}{{Dn{DJjAC`}}}{ACbACd}}20{{{h{DJf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DJh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DJj}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{DJf}}{h{DJf}}}Ef}{{{h{DJh}}{h{DJh}}}Ef}{{{h{DJj}}{h{DJj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{DJf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DJh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DJj}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00`{ce{}{}}00`{{DGhA@`BAfBAfEdIfBB`}DJf}````````{{{h{c}}}e{}{}}00{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00``444`{{{h{CCj}}}{{h{DJl}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{CCj}}}CCj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{CCj}}{h{CCj}}}Ef}??{{{h{CCj}}{h{AhEn}}}{{Dn{BfF`}}}}0<{{{h{CCj}}}{{h{G`}}}}<{{{h{CCj}}}{{Dh{{h{AOf}}}}}};{{{h{c}}}If{}};;:>````````{{A@`A@`}A@`}`````````````````````````````````````````````````````````````````````````````````````````````99999999999998888888888888{{{h{DJn}}}DJn}{{{h{CAb}}}CAb}{{{h{ALd}}}ALd}{{{h{DK`}}}DK`}{{{h{DKb}}}DKb}{{{h{DKd}}}DKd}{{{h{AKn}}}AKn}{{{h{AEb}}}AEb}{{{h{DKf}}}DKf}{{{h{DKh}}}DKh}{{{h{DKj}}}DKj}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000{{{h{ALd}}{h{ALd}}}Bh}{{{h{DKb}}{h{DKb}}}Bh}{{{h{DKd}}{h{DKd}}}Bh}{{{h{DKh}}{h{DKh}}}Bh}{{{h{AhDJn}}DJn}Bf}{{{h{AhDKj}}DKj}Bf}{{}DJn}{{}DKj}{c{{Dn{DJn}}}E`}{c{{Dn{DKh}}}E`}{c{{Dn{DKj}}}E`}{DKh{{Dn{ABbAHf}}}}{{{h{DKj}}}{{Dn{ABbAHf}}}}{{{h{DJn}}{h{DJn}}}Ef}{{{h{CAb}}{h{CAb}}}Ef}{{{h{ALd}}{h{ALd}}}Ef}{{{h{DK`}}{h{DK`}}}Ef}{{{h{DKb}}{h{DKb}}}Ef}{{{h{DKd}}{h{DKd}}}Ef}{{{h{AKn}}{h{AKn}}}Ef}{{{h{AEb}}{h{AEb}}}Ef}{{{h{DKf}}{h{DKf}}}Ef}{{{h{DKh}}{h{DKh}}}Ef}{{{h{DKj}}{h{DKj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000000000000000``{{{h{ABn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DJn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{CAb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{ALd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DK`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DKb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DKd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AKn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AEb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DKf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DKl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DKh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DKj}}{h{AhEn}}}{{Dn{BfF`}}}}{AO`ABn}{AC`ABn}{FnABn}{cc{}}{ACfABn}1111{AO`DK`}{BDfDK`}33{DKnAKn}{DL`AKn}{DKfAKn}6{AO`AKn}7{AO`AEb}8{AO`DKf}{AO`DKl}:{AB`DKh};{ABbDKh}<{{{h{G`}}}{{Dn{DKh}}}}{DfDKh}{{{h{{ALf{}{{Gb{c}}}}}}CAb{h{{Jd{e}}}}}{{Dn{{Dh{AAn}}c}}}FbAGf}{{{h{DJn}}{h{Ahc}}}BfGf}{{{h{DKb}}{h{Ahc}}}BfGf}{{{h{DKd}}{h{Ahc}}}BfGf}{{{h{DKh}}{h{Ahc}}}BfGf}{{{h{DKj}}{h{Ahc}}}BfGf}```{ce{}{}}000000000000``{{{h{ALd}}{h{ALd}}}{{Dh{Bh}}}}{{{h{DKb}}{h{DKb}}}{{Dh{Bh}}}}{{{h{DKd}}{h{DKd}}}{{Dh{Bh}}}}{{{h{DKh}}{h{DKh}}}{{Dh{Bh}}}}`````````{{{h{DJn}}c}DnHn}{{{h{DKh}}c}DnHn}{{{h{DKj}}c}DnHn}``{{{h{DKb}}}DKd}{{{h{ABn}}}{{Dh{{h{AOf}}}}}}{{{h{DK`}}}{{Dh{{h{AOf}}}}}}{{{h{AKn}}}{{Dh{{h{AOf}}}}}}{{{h{AEb}}}{{Dh{{h{AOf}}}}}}{{{h{DKf}}}{{Dh{{h{AOf}}}}}}{{{h{DKl}}}{{Dh{{h{AOf}}}}}}`````````{DKh{{Dn{AB`AFj}}}}{{{h{DKj}}}{{Dn{AB`AFj}}}}{{{h{c}}}e{}{}}0000000000{{{h{c}}}If{}}000000{DKhDf}{c{{Dn{e}}}{}{}}0000000000000000000000000{{{h{c}}}Ij{}}000000000000````{{{h{AhDJn}}{h{{Cl{AMh}}}}}{{Dn{{Cl{AAj}}DLb}}}}{{{h{AhDKj}}{h{{Cl{AMh}}}}}{{Dn{{Cl{AAj}}DLb}}}}`{ce{}{}}000000000000`````````````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{DLd{c}}}}}{{DLd{c}}}{AlBBf{DLf{A`}}{AHd{A`}}}}{{{h{DLh}}}DLh}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{{DLd{c}}}}{h{{DLd{c}}}}}Bh{BjBBf{DLf{A`}}{AHd{A`}}}}{{{h{DLh}}{h{DLh}}}Bh}{{{h{Ahc}}}{{Dn{{DLd{e}}AC`}}}{ACbACd}{BBf{DLf{A`}}{AHd{A`}}}}{{{h{{DLd{c}}}}{h{Ahe}}}{{Dn{HjACf}}}{BBf{DLf{A`}}{AHd{A`}}}{AChACd}}{c{{Dn{{DLd{e}}}}}E`{BBf{DLf{A`}}{AHd{A`}}Eb}}{c{{Dn{DLj}}}E`}{c{{Dn{DLh}}}E`}{{{h{{DLd{c}}}}{h{{DLd{c}}}}}Ef{EhBBf{DLf{A`}}{AHd{A`}}}}{{{h{DLj}}{h{DLj}}}Ef}{{{h{DLh}}{h{DLh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{{DLd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbBBf{DLf{A`}}{AHd{A`}}}}{{{h{DLj}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DLh}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}00{{{h{{DLd{c}}}}{h{Ahe}}}Bf{GhBBf{DLf{A`}}{AHd{A`}}}Gf}{{{h{DLh}}{h{Ahc}}}BfGf}{ce{}{}}00```{{{h{{DLd{c}}}}{h{{DLd{c}}}}}{{Dh{Bh}}}{HlBBf{DLf{A`}}{AHd{A`}}}}{{{h{DLh}}{h{DLh}}}{{Dh{Bh}}}}`{{{h{{DLd{c}}}}e}Dn{BBf{DLf{A`}}{AHd{A`}}I`}Hn}{{{h{DLj}}c}DnHn}{{{h{DLh}}c}DnHn}`{{{h{{DLd{c}}}}}DLh{BBf{DLf{A`}}{AHd{A`}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}{DLh{{Dn{{DLd{c}}}}}{BBf{DLf{A`}}{AHd{A`}}}}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00``;;;````````````````````````````````````````{{AEf{h{{Jd{c}}}}{h{Jf}}}{{Dn{AEfJj}}}Jl}{{AJn{h{Jf}}}{{Dn{AJnJj}}}}{{{h{AJn}}}}{{{h{AEf}}}}{{{h{AKl}}}}{{{h{AhAJn}}}}{{{h{AhAEf}}}}{{{h{AhAKl}}}}{{{h{AhAEf}}}DLl}{{{h{AEf}}}DLl}{{{h{AJn}}}{{h{{Ab{A`}}}}}}{{{h{AKl}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000{{{h{DFb}}}DFb}{{{h{DFd}}}DFd}{{{h{DEn}}}DEn}{{{h{DG`}}}DG`}{{{h{DGb}}}DGb}{{{h{DEh}}}DEh}{{{h{AJn}}}AJn}{{{h{AEf}}}AEf}{{{h{DEl}}}DEl}{{{h{Jf}}}Jf}{{{h{AKl}}}AKl}{{{h{Jj}}}Jj}{{{h{c}}{h{Ahe}}}Bf{}{}}00000000000{{{h{DFb}}{h{DFb}}}Bh}{{{h{DFd}}{h{DFd}}}Bh}{{{h{DEn}}{h{DEn}}}Bh}{{{h{DG`}}{h{DG`}}}Bh}{{{h{DGb}}{h{DGb}}}Bh}{{{h{DEh}}{h{DEh}}}Bh}{{{h{AEf}}{h{AEf}}}Bh}{{{h{DEl}}{h{DEl}}}Bh}{{{h{Jf}}{h{Jf}}}Bh}{{{h{AKl}}{h{AKl}}}Bh}{{{h{Jj}}{h{Jj}}}Bh}4{{{h{AEf}}{h{AEf}}}{{Dn{AEfJj}}}}{{{h{{Ad{{h{AEf}}}}}}}{{Dn{AEfJj}}}}`{{A`Hj}Bf}000000{c{{Dn{AJn}}}E`}{c{{Dn{AEf}}}E`}{{{h{AJn}}}DEj}```{{{h{DFb}}{h{DFb}}}Ef}{{{h{DFd}}{h{DFd}}}Ef}{{{h{DEn}}{h{DEn}}}Ef}{{{h{DG`}}{h{DG`}}}Ef}{{{h{DGb}}{h{DGb}}}Ef}{{{h{DEh}}{h{DEh}}}Ef}{{{h{AJn}}{h{AJn}}}Ef}{{{h{AEf}}{h{AEf}}}Ef}{{{h{DEl}}{h{DEl}}}Ef}{{{h{Jf}}{h{Jf}}}Ef}{{{h{AKl}}{h{AKl}}}Ef}{{{h{Jj}}{h{Jj}}}Ef}4{{{h{c}}{h{e}}}Ef{}{}}00000000000000000000000{{{h{DFb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DFd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DEn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DG`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DGb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DEh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AJn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AEf}}{h{AhEn}}}{{Dn{BfF`}}}}00{{{h{DEl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{Jf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AKl}}{h{AhEn}}}{{Dn{BfF`}}}}00{{{h{Jj}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}00000{{{h{AGb}}}AJn}{cAJnDLn}2{AGbAJn}{DLlAEf}{AGbAEf}5{{{h{AGb}}}AEf}66{AJnJf}{LjAKl}{LhAKl}{LlAKl}:{cAKlDLn};{DElJj}{{{Ab{A`}}}{{Dn{JfDM`}}}}{{{Ab{A`}}}AKl}{{{h{{Ad{A`}}}}}{{Dn{AKlJj}}}}{DMbAEf}?:3{{{h{{Jd{c}}}}{h{AJn}}}AEfAGf}{{{h{{Ad{A`}}}}}{{Dn{AJnJj}}}}{{{h{{Ad{A`}}}}}{{Dn{AEfJj}}}}4{{{h{G`}}}{{Dn{AJnJj}}}}{{{h{G`}}}{{Dn{AEfJj}}}}{{JbJh}AEf}{{{h{DFb}}{h{Ahc}}}BfGf}{{{h{DFd}}{h{Ahc}}}BfGf}{{{h{DEn}}{h{Ahc}}}BfGf}{{{h{DG`}}{h{Ahc}}}BfGf}{{{h{DGb}}{h{Ahc}}}BfGf}{{{h{DEh}}{h{Ahc}}}BfGf}{{{h{AEf}}{h{Ahc}}}BfGf}{{{h{DEl}}{h{Ahc}}}BfGf}{{{h{Jf}}{h{Ahc}}}BfGf}{{{h{AKl}}{h{Ahc}}}BfGf}{{{h{Jj}}{h{Ahc}}}BfGf}``{{{h{AJn}}c}h{}}{{{h{Jf}}c}h{}}{{{h{AKl}}c}h{}}{ce{}{}}00000000000{DLn{{Ab{A`}}}}{{{h{AJn}}{h{{Jd{c}}}}}AGbAGf}{{AJn{h{Jf}}}{{Dn{AJnJj}}}}{{AEf{h{{Jd{c}}}}{h{Jf}}}{{Dn{AEfJj}}}Jl}{AJnAJn}{{AEf{h{{Jd{c}}}}}AEfJl}{{{h{Ahc}}}AJn{DFfACd}}{{{h{AhAJn}}}Bf}{{{h{AhJf}}}Bf}{{{h{DFb}}{h{DFb}}}{{Dh{Bh}}}}{{{h{DFd}}{h{DFd}}}{{Dh{Bh}}}}{{{h{DEn}}{h{DEn}}}{{Dh{Bh}}}}{{{h{DG`}}{h{DG`}}}{{Dh{Bh}}}}{{{h{DGb}}{h{DGb}}}{{Dh{Bh}}}}{{{h{DEh}}{h{DEh}}}{{Dh{Bh}}}}{{{h{AEf}}{h{AEf}}}{{Dh{Bh}}}}{{{h{DEl}}{h{DEl}}}{{Dh{Bh}}}}{{{h{Jf}}{h{Jf}}}{{Dh{Bh}}}}{{{h{AKl}}{h{AKl}}}{{Dh{Bh}}}}{{{h{Jj}}{h{Jj}}}{{Dh{Bh}}}}{{{h{AJn}}{h{{Jd{c}}}}}AEfAGf}{{}Jf}{cJfDFf}``{{{h{AJn}}}{{Ab{A`}}}}{{{h{AJn}}c}DnHn}{{{h{AEf}}c}DnHn}{{{h{AEf}}}{{Ab{A`}}}}0{{{h{Jj}}}{{Dh{{h{AOf}}}}}}{Jf{{Ab{A`}}}}{{{h{Mj}}}Mj}{{{h{ALl}}}ALl}2{{{h{c}}}e{}{}}00000000000{{{h{AEf}}}AAj}{{{h{ALn}}}ALn}{{{h{n}}}n}{{{h{c}}}If{}}000{c{{Dn{e}}}{}{}}00000000000000000000000{{{h{c}}}Ij{}}00000000000{{{h{AEf}}{h{{Jd{c}}}}{h{AKl}}{h{CFj}}}{{Dn{BfJj}}}Jl}{ce{}{}}00000000000{{{h{AJn}}{h{{Jd{c}}}}}{{Ff{JbJh}}}AGf}{{{h{AEf}}}{{Ff{JbJh}}}}`````````````````{{{h{DMd}}}{{h{{Ad{A`}}}}}}0{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DMd}}}DMd}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DMd}}{h{DMd}}}Bh}{c{{Dn{DMd}}}E`}{{{h{DMd}}}DEj}{{{h{DMd}}{h{DMd}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{DMd}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}{{{Ab{A`}}}DMd}{{{h{{Ad{A`}}}}}{{Dn{DMdJj}}}}{{{h{G`}}}{{Dn{DMdJj}}}}{{{h{DMd}}{h{Ahc}}}BfGf}{ce{}{}}{{{h{AEf}}{h{AJn}}}DMd}{{{h{AhDMd}}}Bf}{{{h{DMd}}{h{DMd}}}{{Dh{Bh}}}}{{{h{DMd}}}{{Ab{A`}}}}{{{h{DMd}}c}DnHn}{{{h{AEf}}{h{AJn}}}{{Ab{A`}}}}{{{h{c}}}e{}{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}9````{{{h{DFl}}}}{{{h{CFj}}}}{{{h{AhDFl}}}}{{{h{AhCFj}}}}{{{h{AhDFl}}}DMf}{{{h{AhCFj}}}DMh}{{{h{DFl}}}DMf}{{{h{CFj}}}DMh}{{{h{DMj}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}0100{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{DMj}}}Hj}{{{h{DMl}}}DMl}{{{h{DFl}}}DFl}{{{h{DMj}}}DMj}{{{h{CFj}}}CFj}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{DMl}}{h{DMl}}}Bh}{{{h{DFl}}{h{DFl}}}Bh}{{{h{DMj}}{h{DMj}}}Bh}{{{h{CFj}}{h{CFj}}}Bh}0<{c{{Dn{CFj}}}E`}{{{h{DMl}}{h{DMl}}}Ef}{{{h{DFl}}{h{DFl}}}Ef}{{{h{DMj}}{h{DMj}}}Ef}{{{h{DMj}}{h{{Ad{A`}}}}}Ef}{{{h{CFj}}{h{CFj}}}Ef}0{{{h{c}}{h{e}}}Ef{}{}}0000000{{{h{DMl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DFl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DMj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{CFj}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{DMfDFl}1{CFjDMj}2{{{h{CFj}}}DMj}3{DMhCFj}{{{h{{Ad{A`}}}}DMl}{{Dn{DFlJj}}}}{{{h{{Ad{A`}}}}}{{Dn{CFjJj}}}}00{BB`{{Dn{DMlJj}}}}4{{{h{G`}}}{{Dn{CFjJj}}}}{{{h{DFl}}{h{Ahc}}}BfGf}{{{h{DMj}}{h{Ahc}}}BfGf}{{{h{CFj}}{h{Ahc}}}BfGf}{ce{}{}}000{{{h{DMj}}}}{DMj}{{{h{DMj}}}Ef}{{{h{DMj}}}Hj}{{{h{AhCFj}}}Bf}{{{h{DMl}}{h{DMl}}}{{Dh{Bh}}}}{{{h{DFl}}{h{DFl}}}{{Dh{Bh}}}}{{{h{DMj}}{h{{Ad{A`}}}}}{{Dh{Bh}}}}{{{h{DMj}}{h{DMj}}}{{Dh{Bh}}}}{{{h{CFj}}{h{CFj}}}{{Dh{Bh}}}}{{{h{CFj}}c}DnHn}{{{h{DFl}}}{{Ff{DMl{Ab{A`}}}}}}{{{h{CFj}}}{{Ab{A`}}}}{{{h{CFj}}}DMj}`{DMlBB`}{{{h{c}}}e{}{}}000{{{h{DMj}}}{{Dn{CFjJj}}}}{{{h{DFl}}}CFj}{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}00{{{h{DMj}}}{{Dn{CFj}}}}1{DMj{{Dn{CFj}}}}2222{{{h{c}}}Ij{}}000{ce{}{}}000``{{{h{DMn}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DMn}}}DMn}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DMn}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}7{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}8{{{h{AhDMn}}}Dh}0{{{h{AhDMn}}Hj}Dh}{{{h{DMn}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{c}}}e{}{}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}0?>`````{{{h{DMb}}}}{{{h{AhDMb}}}}{{{h{DN`}}}{{h{{Ab{A`}}}}}}???>>>{{{h{DMb}}}DMb}{{{h{DN`}}}DN`}{{{h{DNb}}}DNb}???{{{h{DMb}}{h{DMb}}}Bh}{{{h{DN`}}{h{DN`}}}Bh}{{{h{DNb}}{h{DNb}}}Bh}{{{h{DMb}}{h{DMb}}}Ef}{{{h{DN`}}{h{DN`}}}Ef}{{{h{DNb}}{h{DNb}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{DMb}}{h{AhEn}}}{{Dn{BfF`}}}}00{{{h{DN`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DNb}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00{{{Ab{A`}}}DMb}{AEfDMb}{{{h{{Jd{c}}}}AJn{Dh{{Ab{A`}}}}}DMbJl}{{{Ab{A`}}}DN`}{{{h{G`}}}{{Dn{DMb}}}}{{{h{DMb}}{h{Ahc}}}BfGf}{{{h{DN`}}{h{Ahc}}}BfGf}{{{h{DNb}}{h{Ahc}}}BfGf}{ce{}{}}00{{AJn{Ab{A`}}}DMb}{{{h{DMb}}{h{DMb}}}{{Dh{Bh}}}}{{{h{DN`}}{h{DN`}}}{{Dh{Bh}}}}{{{h{DNb}}{h{DNb}}}{{Dh{Bh}}}}{{DMbDMbAJnDNb{Dh{{h{{Ad{A`}}}}}}}DN`}{{DMbDMbAJnDNbc}DN`{{Hf{{Ab{A`}}{Ab{A`}}{Ab{A`}}}{{Hd{DN`}}}}}}{{{h{DMb}}}{{Ab{A`}}}}{{{h{c}}}e{}{}}00{DN`{{Ab{A`}}}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00<<<``````````````````````````{{{h{{DNf{}{{DNd{c}}}}}}}c{}}{{{h{DLl}}}}{{{h{DMh}}}}{{{h{Mf}}}}{{{h{DDb}}}}{{{h{DNh}}}}{{{h{Ah{DNf{}{{DNd{c}}}}}}}c{}}{{{h{AhDLl}}}}{{{h{AhDMh}}}}{{{h{AhMf}}}}{{{h{AhDDb}}}}{{{h{AhDNh}}}}{{{h{DLl}}}{{h{{Ab{A`}}}}}}{{{h{DMh}}}{{h{{Ab{A`}}}}}}{{{h{Mf}}}{{h{{Ab{A`}}}}}}{{{h{DDb}}}{{h{{Ab{A`}}}}}}{{{h{DNh}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{DDn}}}DDn}{{{h{DLl}}}DLl}{{{h{DMh}}}DMh}{{{h{Mf}}}Mf}{{{h{DDb}}}DDb}{{{h{DNh}}}DNh}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{DLl}}{h{DLl}}}Bh}{{{h{DMh}}{h{DMh}}}Bh}{{{h{Mf}}{h{Mf}}}Bh}{{{h{DDb}}{h{DDb}}}Bh}{{{h{DNh}}{h{DNh}}}Bh}43210{{DDnDMhA`Hj}BB`}{{{h{DLl}}{h{DLl}}}Ef}{{{h{DMh}}{h{DMh}}}Ef}{{{h{Mf}}{h{Mf}}}Ef}{{{h{DDb}}{h{DDb}}}Ef}{{{h{DNh}}{h{DNh}}}Ef}43210{{{h{c}}{h{e}}}Ef{}{}}000000000{{{h{DDn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DLl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DMh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{Mf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DDb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DNh}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}000000{{{Ab{A`}}}DNh}{{{Ab{A`}}}DLl}{{{Ab{A`}}}DMh}{{{Ab{A`}}}Mf}{{{Ab{A`}}}DDb}{{{h{DLl}}{h{Ahc}}}BfGf}{{{h{DMh}}{h{Ahc}}}BfGf}{{{h{Mf}}{h{Ahc}}}BfGf}{{{h{DDb}}{h{Ahc}}}BfGf}{{{h{DNh}}{h{Ahc}}}BfGf}``{{{h{DLl}}c}h{}}{{{h{DMh}}c}h{}}{{{h{Mf}}c}h{}}{{{h{DDb}}c}h{}}{{{h{DNh}}c}h{}}{ce{}{}}000000{{{Dh{{DNl{A`A`HjA`A`A`HjDNj}{{Hd{BB`}}}}}}DNj}DNn}{{}DLl}{{}DMh}{{}Mf}{{}DDb}{{{h{AhDDb}}}Bf}{{{h{Ahc}}c}Bf{}}{{{h{DLl}}{h{DLl}}}{{Dh{Bh}}}}{{{h{DMh}}{h{DMh}}}{{Dh{Bh}}}}{{{h{Mf}}{h{Mf}}}{{Dh{Bh}}}}{{{h{DDb}}{h{DDb}}}{{Dh{Bh}}}}{{{h{DNh}}{h{DNh}}}{{Dh{Bh}}}}`{Df{{DE`{DDn}}}}{{{DE`{DDn}}}Bf}{{BBbDNj}Bf}021`{{DDn{DE`{DNj}}}{{DE`{DDn}}}}{DDnHj}{{{DE`{DNj}}Df}{{DE`{DDn}}}}4{DfHj}{{{DE`{DDn}}A`}BB`}{{DDnDLlDLl}BB`}{{DDnDLlDLlHj}BB`}{{DDnDLlA`}BB`}{{DDnDLl}BB`}{{DDnDLlA`Hj}BB`}{{DDnA`HjDLlDf}BB`}33{{DDnA`}BB`}{{DDnA`A`}BB`}01{{DDnA`DLlA`{Dh{{DNl{A`A`A`DNj}{{Hd{BB`}}}}}}DNj}BB`}`{{DDnDMhA`A`{Dh{{DNl{A`A`A`A`DNjDf}{{Hd{BB`}}}}}}DNj}BB`}{{DDnDMhDMh}BB`}{{DDnDMhA`}BB`}{{DDnDMhA`Hj}BB`}{{DDnA`DMh}BB`}{{DDnA`HjDMh}BB`}{{DDnDMhA`DLl}BB`}{{DDnA`A`A`}BB`}9{{DDnA`DLlA`}BB`}{{DDnA`A`A`A`BB`{Dh{{DNl{A`A`A`A`DNj}{{Hd{BB`}}}}}}DNj}BB`}`{{DDnDDbA`}BB`}{{DDnDLlDDb}BB`}{{DDnA`DDb}BB`}{{DDnMfBB`DDb}BB`}3```{{DDnA`A`DDbA`}BB`}{{DDnA`A`HjDDbDNn}BB`}{{DDnA`A`HjMf}BB`}{{DDnMfMf}BB`}{{DDnMfBB`DLl}BB`}{{DDnMfA`}BB`}{{DDnA`Mf}BB`}{{DDnDLlMfA`}BB`}{{DDnA`BB`MfA`}BB`}{DNh{{Ab{A`}}}}{{{h{c}}}e{}{}}00000{c{{Dn{e}}}{}{}}0000000000000{{{h{c}}}Ij{}}000000`{DLl{{Ab{A`}}}}{DMh{{Ab{A`}}}}{Mf{{Ab{A`}}}}{DDb{{Ab{A`}}}}{ce{}{}}000000`{{{h{DMf}}}}{{{h{AhDMf}}}}{{{h{DMf}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DMf}}}DMf}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DMf}}{h{DMf}}}Bh}0{{}DMf}{{{h{DMf}}{h{DMf}}}Ef}0{{{h{c}}{h{e}}}Ef{}{}}0{{{h{DMf}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}{{{h{DMf}}{h{Ahc}}}BfGf}{{{h{DMf}}c}h{}}?6{{{h{DMf}}{h{DMf}}}{{Dh{Bh}}}}{{DDnDLlDMfA`}BB`}{{DDnDMhDMf}BB`}{{DDnDMfA`BB`}BB`}{{DDnA`BB`DMf}BB`}{{DDnDMfA`A`{Dh{{DNl{A`A`A`A`DNjDf}{{Hd{BB`}}}}}}DNj}BB`}{{{h{c}}}e{}{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}{ce{}{}}``{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0`````{{{h{DFh}}}DFh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{}DFh}{{{h{DNj}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}077`:999988772```````````{{}{{CGd{}{{CG`{c}}{CGb{e}}}}}CGf{CGhBBf}}{{}{{DO`{c}}}CGd}{{{h{{CGd{}{{CG`{c}}{CGb{e}}}}}}}{{h{e}}}CGf{CGhBBf}}{{{h{{DO`{c}}}}}hCGd}:::{{{h{{DO`{c}}}}}{{h{{Ad{A`}}}}}CGd}:::`{{{h{{DOb{c}}}}}{{DOb{c}}}{AlCGd}}{{{h{Fn}}}Fn}{{{h{{DO`{c}}}}}{{DO`{c}}}{AlCGd}};;;{{{h{{DO`{c}}}}{h{{DO`{c}}}}}Bh{BjCGd}}{{}{{DOb{c}}}CGd}{c{{Dn{{DO`{e}}}}}E`{CGdEb}}{{{h{Ahc}}Ef}{{Dn{BfACf}}}{}}{{{h{Ahc}}BAn}{{Dn{BfACf}}}{}}{{{h{Ahc}}BB`}{{Dn{BfACf}}}{}}{{{h{Ahc}}A@`}{{Dn{BfACf}}}{}}{{{h{Ahc}}BBb}{{Dn{BfACf}}}{}}{{{h{Ahc}}{h{{Ad{A`}}}}}{{Dn{BfACf}}}{}}{{{h{Ahc}}AEn}{{Dn{BfACf}}}{}}{{{h{Ahc}}Df}{{Dn{BfACf}}}{}}{{{h{Ahc}}Ed}{{Dn{BfACf}}}{}}{{{h{Ahc}}A`}{{Dn{BfACf}}}{}}{{}c{}}{{{h{Fn}}{h{Fn}}}Ef}{{{h{{DO`{c}}}}{h{{DO`{c}}}}}Ef{EhCGd}}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{Fn}}}Hj}{{{h{Ah{DOb{c}}}}}{{Dn{BfBBl}}}CGd}{{{h{Ah{DOb{c}}}}}{{Dn{BfACf}}}CGd}{{{h{Fn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{DO`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}CGd}00{cc{}}00{c{{CGd{}{{CG`{e}}{CGb{c}}}}}{CGhBBf}CGf}{{}{{DO`{c}}}CGd}{c{{CGd{}{{CG`{c}}{CGb{e}}}}}CGf{CGhBBf}}{{{DOb{c}}}{{DO`{c}}}CGd}{{}{{DOb{c}}}CGd}{{{h{{Ad{A`}}}}}{{Dn{{CGd{}{{CG`{c}}{CGb{e}}}}Fn}}}CGf{CGhBBf}}{{{h{{Ad{A`}}}}}{{Dn{{DO`{c}}Fn}}}CGd}{{{h{G`}}}{{Dn{{DO`{c}}}}}{CGdDOd}}{{{h{{Ad{A`}}}}}{{CGd{}{{CG`{c}}{CGb{e}}}}}CGf{CGhBBf}}{{{h{{DO`{c}}}}{h{Ahe}}}Bf{GhCGd}Gf}{e{{CGd{}{{CG`{g}}{CGb{i}}}}}{{ADb{{Ad{A`}}}}}{{El{}{{Ej{c}}}}}CGf{CGhBBf}}``{{{h{{DO`{c}}}}{AId{Hj}}}{{h{{Ad{A`}}}}}CGd}{{{h{{DO`{c}}}}{AIn{Hj}}}{{h{{Ad{A`}}}}}CGd}{{{h{{DO`{c}}}}{AIb{Hj}}}{{h{{Ad{A`}}}}}CGd}{{{h{{DO`{c}}}}AIl}{{h{{Ad{A`}}}}}CGd}{{{h{{DO`{c}}}}Hj}{{h{A`}}}CGd}{{{h{Ah{CGf{}{{CGj{c}}}}}}{h{{Ad{A`}}}}}Bf{}}{{{h{Ah{DOb{c}}}}{h{{Ad{A`}}}}}BfCGd}{ce{}{}}00{{{h{Fn}}}Hj}{{{h{{CGf{}{{CGj{c}}}}}}}c{}}{{{h{{DOb{c}}}}}{}CGd}{{{h{{CGf{}{{CGj{c}}}}}}}Hj{}}{{{h{{DOb{c}}}}}HjCGd}{{{h{{Ad{A`}}}}}{{DOb{c}}}CGd}{{{h{{DO`{c}}}}{h{{DO`{c}}}}}{{Dh{Bh}}}{HlCGd}}`{{{h{{DO`{c}}}}e}Dn{CGdI`}Hn}`{{{CGd{}{{CG`{c}}{CGb{e}}}}}eCGf{CGhBBf}}{{{DO`{c}}}{}CGd}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00>>>{{{h{Ah{DOb{c}}}}{h{{Ad{A`}}}}}{{Dn{HjBBl}}}CGd}{{{h{Ah{DOb{c}}}}{h{{Ad{A`}}}}}{{Dn{HjACf}}}CGd}`````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DOf}}}{{Dh{{DOh{Df}}}}}}`{{{h{AhDFf}}{h{Ahc}}}Bf{DOjACd}}{{{h{AhDOl}}{h{Ah{Ad{A`}}}}}Bf}{{{h{DOf}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{DOnDOf}{{{DOh{Df}}}DOf}{{}{{E@b{}{{E@`{c}}}}}{E@d{E@f{{Ad{A`}}}}}}{c{{Dn{{E@b{}{{E@`{e}}}}DOf}}}DOl{E@d{E@f{{Ad{A`}}}}}}{c{{E@b{}{{E@`{c}}}}}{E@d{E@f{{Ad{A`}}}}}}{{{h{AhDFf}}}c{}}{{{h{AhDFf}}ADd}Ef}{{{h{AhDFf}}e}cE@h{{E@j{c}}}}{{{h{AhDFf}}DfDf}Ef}{{{h{DOf}}}{{h{AOf}}}}{ce{}{}}{cDOf{{AHd{{AJd{AOf}}}}}}{{{h{AhDOl}}}Df}{{{h{AhDOl}}}Ed}`{{}c{}}{{{h{DOf}}}{{Dh{BB`}}}}{{{h{AhDOl}}{h{Ah{Ad{A`}}}}}{{Dn{HjBBl}}}}`{{{h{AhDFf}}e}c{}{{E@l{c}}}}{{DFfe}{{E@n{eDFfc}}}{}{{E@l{c}}}}{Ed{{E@b{}{{E@`{c}}}}}{E@d{E@f{{Ad{A`}}}}}}`{{{h{DOf}}}{{Dh{{h{AOf}}}}}}{DOf{{AJd{AOf}}}}{{}EA`}{{{h{c}}}If{}}{{{h{AhDOj}}{h{Ahc}}}{{Dn{BfDOf}}}{DFfACd}}{{{h{AhDFf}}{h{Ahc}}}{{Dn{BfDOf}}}{DOjACd}}{{{h{AhDOl}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}{ce{}{}}```````````````````{{{h{EAb}}{h{Ahc}}{h{AhIf}}Hj}Bf{DFfACd}}{{{h{EAd}}{h{Ahc}}{h{AhIf}}Hj}Bf{DFfACd}}{{{h{EAf}}{h{Ahc}}{h{AhIf}}Hj}Bf{DFfACd}}{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000{c{{Dh{Cf}}}{}}{c{{Dh{Il}}}{}}{{{h{EAh}}}EAh}{{{h{EAj}}}EAj}{{{h{EAl}}}EAl}{{{h{EAn}}}EAn}{{{h{EAd}}}EAd}{{{h{{EB`{c}}}}}{{EB`{c}}}Al}{{{h{{EBb{c}}}}}{{EBb{c}}}{AlE@hHl}}{{{h{EBd}}}EBd}{{{h{{EBf{c}}}}}{{EBf{c}}}{AlE@h}}{{{h{EAf}}}EAf}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000{{{h{EAh}}{h{EAh}}}Ef}{{{h{EAj}}{h{EAj}}}Ef}{{{h{{EBb{c}}}}{h{{EBb{c}}}}}Ef{EhE@hHl}}{{{h{EBd}}{h{EBd}}}Ef}{{{h{{EBf{c}}}}{h{{EBf{c}}}}}Ef{EhE@h}}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{EAh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EAj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{E@n{ceg}}}}{h{AhEn}}}{{Dn{BfF`}}}FbFbFb}{{{h{{EBh{cegi}}}}{h{AhEn}}}{{Dn{BfF`}}}FbFbFbFb}{{{h{EAl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EAn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EAd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{{EB`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{{EBb{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbE@hHl}}{{{h{EBd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{EBf{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbE@h}}{{{h{EAf}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}0000000000{{{AIn{c}}}{{EBf{c}}}E@h}{{{AIh{c}}}{{EBf{c}}}E@h}2{{DfDf}{{Dn{EAhEAj}}}}{ce{}{}}00000000000{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}1{{E@lg}{{EBh{E@lgce}}}{}{}{{AFf{c}{{Hd{e}}}}}}{ADd{{Dn{EAhEAj}}}}{{{h{{Ad{c}}}}}{{Dn{{EB`{c}}EBj}}}{}}{c{{Dn{{EBb{e}}EBd}}}El{EBlAlE@dE@hHl}}{{eg}{{EBf{c}}}E@h{{EBn{c}}}{{EBn{c}}}}0{{{h{Ah{E@n{egc}}}}}{{Dh{c}}}{}{{E@l{c}}}DFf}{{{h{E@l}}{h{Ahc}}}e{DFfACd}{}}{{{h{EAh}}{h{Ahc}}}Ef{DFfACd}}{{{h{{EBh{eicg}}}}{h{Ahk}}}g{}{{E@l{c}}}{}{{AFf{c}{{Hd{g}}}}}{DFfACd}}{{{h{EAl}}{h{Ahc}}}ADd{DFfACd}}{{{h{EAl}}{h{Ahc}}}CL`{DFfACd}}{{{h{EAn}}{h{Ahc}}}ADd{DFfACd}}{{{h{EAn}}{h{Ahc}}}CL`{DFfACd}}{{{h{EAd}}{h{Ahc}}}A`{DFfACd}}{{{h{{EB`{c}}}}{h{Ahe}}}{{h{c}}}{}{DFfACd}}{{{h{{EBb{c}}}}{h{Ahe}}}Hj{E@hHl}{DFfACd}}{{{h{{EBf{c}}}}{h{Ahe}}}cE@h{DFfACd}}{{{h{EAf}}{h{Ahc}}}Ef{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{Ab{e}}}{DFfACd}{}}0{{{h{EAf}}{h{Ahc}}}{{Ff{egikmoAaAcAeAgAi}}}{DFfACd}{}{}{}{}{}{}{}{}{}{}{}}1111{{{h{EAf}}{h{Ahc}}}Ed{DFfACd}}{{{h{EAf}}{h{Ahc}}}BAn{DFfACd}}333{{{h{EAf}}{h{Ahc}}}BBh{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{EC`{e}}}{DFfACd}{}}{{{h{EAf}}{h{Ahc}}}DAb{DFfACd}}6{{{h{EAf}}{h{Ahc}}}BBb{DFfACd}}{{{h{EAf}}{h{Ahc}}}AD`{DFfACd}}8{{{h{EAf}}{h{Ahc}}}BB`{DFfACd}}9{{{h{EAf}}{h{Ahc}}}{{Ff{egi}}}{DFfACd}{}{}{}}{{{h{EAf}}{h{Ahc}}}Bf{DFfACd}};{{{h{EAf}}{h{Ahc}}}BK`{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{Ff{egikmoAaAcAe}}}{DFfACd}{}{}{}{}{}{}{}{}{}}{{{h{EAf}}{h{Ahc}}}{{DOh{A`}}}{DFfACd}}>{{{h{EAf}}{h{Ahc}}}{{Ff{egikmoAaAcAeAgAiAk}}}{DFfACd}{}{}{}{}{}{}{}{}{}{}{}{}}{{{h{EAf}}{h{Ahc}}}CL`{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{Ab{e}}}{DFfACd}{}}0{{{h{EAf}}{h{Ahc}}}{{Ff{egikmoAaAc}}}{DFfACd}{}{}{}{}{}{}{}{}}{{{h{EAf}}{h{Ahc}}}{{DOh{Df}}}{DFfACd}}2{{{h{EAf}}{h{Ahc}}}ADd{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{Ff{egik}}}{DFfACd}{}{}{}{}}4{{{h{EAf}}{h{Ahc}}}{{DOh{AD`}}}{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{DOh{AEn}}}{DFfACd}}{{{h{EAf}}{h{Ahc}}}Hj{DFfACd}}77{{{h{EAf}}{h{Ahc}}}{{Ff{egikmo}}}{DFfACd}{}{}{}{}{}{}}8{{{h{EAf}}{h{Ahc}}}{{Ff{egikmoAaAcAeAg}}}{DFfACd}{}{}{}{}{}{}{}{}{}{}}{{{h{EAf}}{h{Ahc}}}{{Ff{eg}}}{DFfACd}{}{}}::{{{h{EAf}}{h{Ahc}}}{{Dh{e}}}{DFfACd}{}}{{{h{EAf}}{h{Ahc}}}A`{DFfACd}}{{{h{EAf}}{h{Ahc}}}AEn{DFfACd}}{{{h{EAf}}{h{Ahc}}}Df{DFfACd}}>>{{{h{EAf}}{h{Ahc}}}A@`{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{Ff{e}}}{DFfACd}{}}{{{h{EAf}}{h{Ahc}}}{{Ab{e}}}{DFfACd}{}}{{{h{EAf}}{h{Ahc}}}{{DOh{Ed}}}{DFfACd}}11{{{h{EAf}}{h{Ahc}}}{{Ff{egikm}}}{DFfACd}{}{}{}{}{}}222{{{h{EAf}}{h{Ahc}}}{{DOh{Hj}}}{DFfACd}}{{{h{EAf}}{h{Ahc}}}{{Ff{egikmoAa}}}{DFfACd}{}{}{}{}{}{}{}}44{{E@lc}{{E@n{E@lce}}}DFf{}}{{{h{EAb}}{h{Ahc}}Hj}If{DFfACd}}{{{h{{E@n{egc}}}}}{{Ff{Hj{Dh{Hj}}}}}{}{{E@l{c}}}DFf}{{{h{c}}}e{}{}}000000000{{{h{c}}}If{}}0{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}00000000000000000000000{{{h{c}}}Ij{}}00000000000`{{{h{Ah{EBb{c}}}}{h{{Ad{{Ff{Hj{h{c}}}}}}}}}{{Dn{BfEBd}}}{EBlECbAlE@dE@hHl}}{ce{}{}}00000000000````````````{{{h{EBn}}}{{h{c}}}{}}{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{{ECd{c}}}}}{{ECd{c}}}Al}{{{h{ECf}}}ECf}{{{h{{ECh{c}}}}}{{ECh{c}}}Al}{{{h{ECj}}}ECj}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{{ECd{c}}}}{h{{ECd{c}}}}}EfEh}{{{h{{ECh{c}}}}{h{{ECh{c}}}}}EfEh}{{{h{{ECd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{ECf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{{ECh{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{ECj}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}000????{{{h{E@j}}}Ef}{{eg}{{ECn{}{{ECl{c}}}}}{}{{EBn{c}}}{{EBn{c}}}}{{ce}{{ECd{Hj}}}EBnEBn}{{ce}{{ECd{AEn}}}EBnEBn}{{ce}{{ECd{A@`}}}EBnEBn}{{ce}{{ECd{BK`}}}EBnEBn}{{ce}{{ECd{A`}}}EBnEBn}{{ce}{{ECd{AD`}}}EBnEBn}{{ce}{{ECd{Ed}}}EBnEBn}{{ce}{{ECd{BBb}}}EBnEBn}{{ce}{{ECd{BAn}}}EBnEBn}{{ce}{{ECd{Df}}}EBnEBn}{{ce}{{ECd{BB`}}}EBnEBn}{{ce}{{ECd{DAb}}}EBnEBn}{{ce}ECfEBnEBn}{{ce}{{ECh{CL`}}}EBnEBn}{{ce}{{ECh{ADd}}}EBnEBn}{{ce}ECjEBnEBn}{{eg}{{ECn{}{{ECl{c}}}}}{}{{EBn{c}}}{{EBn{c}}}}7:=8>9{{ce}{{ECd{Hj}}}EBnEBn}{{ce}{{ECd{AEn}}}EBnEBn}=78>6543{{{h{{ECn{}{{ECl{c}}}}}}{h{Ahe}}}c{}{DFfACd}}{{{h{{ECd{A`}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{BAn}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{Ed}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{A@`}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{Df}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{BB`}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{BK`}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{DAb}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{BBb}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{AD`}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{AEn}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECd{Hj}}}}{h{Ahc}}}{}{DFfACd}}{{{h{ECf}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECh{ADd}}}}{h{Ahc}}}{}{DFfACd}}{{{h{{ECh{CL`}}}}{h{Ahc}}}{}{DFfACd}}{{{h{ECj}}{h{Ahc}}}ED`{DFfACd}}{{E@j{h{Ahc}}}e{DOlACd}{}}{{eg{h{Ahi}}}c{}{{EBn{c}}}{{EBn{c}}}{DFfACd}}{{ce{h{Ahg}}}{}EBnEBn{DFfACd}}00000000000001000000000000{{{h{c}}}e{}{}}000{c{{Dn{e}}}{}{}}0000000{{{h{c}}}Ij{}}000{ce{}{}}000`````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{EDb{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbEDd}}{cc{}}4{{{ADn{c}}}{{Dn{{EDb{c}}EBd}}}EDd}7765```````````{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}}{{Dh{{h{c}}}}}{}{DFfACd}}{{EDh{h{Ahc}}}{{Dh{e}}}{DFfACd}{}}{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}Hj}{{EDj{{EDf{}{{Ej{c}}}}c}}}{}{DFfACd}}{{EDh{h{Ahc}}Hj}{{ADn{e}}}{DFfACd}{}}{{EDh{h{Ahc}}{h{Ah{Ad{e}}}}}Hj{DFfACd}{}}{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}Hji}{{Dn{{EDj{{EDf{}{{Ej{c}}}}c}}EBd}}}{}{DFfACd}{{AHd{ADd}}}{{AFf{{h{c}}}{{Hd{g}}}}}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}}{{Dh{{h{Ahc}}}}}{}{DFfACd}}5{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}k}{{Dn{{h{c}}EBd}}}{}{DFfACd}{E@hEBlHlAlE@d}{{EBn{g}}}{{AFf{{h{c}}}{{Hd{i}}}}}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}k}{{Dn{{h{Ahc}}EBd}}}{}{DFfACd}{E@hEBlHlAlE@d}{{EBn{g}}}{{AFf{{h{c}}}{{Hd{i}}}}}}{{{h{AhDFf}}{h{Ahc}}}Bf{DOjACd}}{{{h{AhDOl}}{h{Ah{Ad{A`}}}}}Bf}{{}{{E@b{}{{E@`{c}}}}}{E@d{E@f{{Ad{A`}}}}}}{c{{Dn{{E@b{}{{E@`{e}}}}DOf}}}DOl{E@d{E@f{{Ad{A`}}}}}}{c{{E@b{}{{E@`{c}}}}}{E@d{E@f{{Ad{A`}}}}}}{{{h{AhDFf}}}c{}}{{{h{AhDFf}}ADd}Ef}{{{h{AhDFf}}e}cE@h{{E@j{c}}}}{{{h{AhDFf}}DfDf}Ef}{{E@lg}{{EBh{E@lgce}}}{}{}{{AFf{c}{{Hd{e}}}}}}{{{h{AhDOl}}}Df}{{{h{AhDOl}}}Ed}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}Hj}{{Ff{{h{Ah{Ad{c}}}}{h{Ah{Ad{c}}}}}}}{}{DFfACd}}{{}c{}}{{{h{E@l}}{h{Ahc}}}e{DFfACd}{}}{{{h{AhDFf}}e}c{}{{E@l{c}}}}{{E@lc}{{E@n{E@lce}}}DFf{}}{{DFfe}{{E@n{eDFfc}}}{}{{E@l{c}}}}{Ed{{E@b{}{{E@`{c}}}}}{E@d{E@f{{Ad{A`}}}}}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}}Bf{}{DFfACd}}{{}EA`}{{{h{AhDFf}}{h{Ahc}}}{{Dn{BfDOf}}}{DOjACd}}{{{h{AhDOl}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}}````{{{h{Ahc}}}{{h{AhDOl}}}{}}00{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{EDl}}}EDl}{{{h{EDn}}}EDn}{{{h{EA`}}}EA`}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{}EDl}:{{{h{EDn}}{h{EDn}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhEDl}}{h{Ah{Ad{A`}}}}}Bf}{{{h{AhEDn}}{h{Ah{Ad{A`}}}}}Bf}{{{h{AhEA`}}{h{Ah{Ad{A`}}}}}Bf}{{{h{EDl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EDn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EA`}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}00{c{{Dn{EDnDOf}}}DOl}{{}EDn}{ce{}{}}00`{{{h{AhEDl}}}Df}{{{h{AhEDn}}}Df}{{{h{AhEA`}}}Df}{{{h{AhEDl}}}Ed}{{{h{AhEDn}}}Ed}{{{h{AhEA`}}}Ed}{{{h{c}}}e{}{}}00{{{h{AhEDl}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}}{{{h{AhEDn}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}}{{{h{AhEA`}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00<<<```{{{h{Ahc}}}{{h{AhDOl}}}{}}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{EE`{ce}}}}}{{EE`{ce}}}{EEbE@bAl}{DOlAl}}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Ah{EEd{c}}}}{h{Ah{Ad{A`}}}}}BfBH`}{{{h{Ah{EE`{ce}}}}{h{Ah{Ad{A`}}}}}Bf{{EEb{}{{Ej{Df}}}}E@b}DOl}{{{h{{EEd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{EEf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{EE`{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbEEbE@b}{FbDOl}}{cc{}}00{ce{}{}}00{c{{EEd{c}}}BH`}{{cEde}{{EE`{ce}}}{EEbE@b}DOl}{{{h{Ah{EEd{c}}}}}DfBH`}{{{h{Ah{EE`{ce}}}}}Df{{EEb{}{{Ej{Df}}}}E@b}DOl}{{{h{Ah{EEd{c}}}}}EdBH`}{{{h{Ah{EE`{ce}}}}}Ed{{EEb{}{{Ej{Df}}}}E@b}DOl}{{{h{Ah{EE`{ce}}}}}{{Dn{BfDOf}}}{EEbE@b}DOl}{{{h{EEf}}}{{Dh{{h{AOf}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{{{h{Ah{EEd{c}}}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}BH`}{{{h{Ah{EE`{ce}}}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}{{EEb{}{{Ej{Df}}}}E@b}DOl}{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00>>>`{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{EEh}}}EEh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{EEh}}{h{EEh}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{AhEEh}}{h{Ah{Ad{A`}}}}}Bf}{{{h{EEh}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}{ce{}{}}{{EdEd}EEh}{{{h{AhEEh}}}Df}{{{h{AhEEh}}}Ed}{{{h{c}}}e{}{}}{{{h{AhEEh}}{h{Ah{Ad{A`}}}}}{{Dn{BfDOf}}}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}7````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}}{{Dh{{h{c}}}}}{}{DFfACd}}{{EDh{h{Ahc}}}{{Dh{e}}}{DFfACd}{}}{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}Hj}{{EDj{{EDf{}{{Ej{c}}}}c}}}{}{DFfACd}}{{EDh{h{Ahc}}Hj}{{ADn{e}}}{DFfACd}{}}{{EDh{h{Ahc}}{h{Ah{Ad{e}}}}}Hj{DFfACd}{}}{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}Hji}{{Dn{{EDj{{EDf{}{{Ej{c}}}}c}}EBd}}}{}{DFfACd}{{AHd{ADd}}}{{AFf{{h{c}}}{{Hd{g}}}}}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}}{{Dh{{h{Ahc}}}}}{}{DFfACd}}5{{{h{{EDf{}{{Ej{c}}}}}}{h{Ahe}}k}{{Dn{{h{c}}EBd}}}{}{DFfACd}{E@hEBlHlAlE@d}{{EBn{g}}}{{AFf{{h{c}}}{{Hd{i}}}}}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}k}{{Dn{{h{Ahc}}EBd}}}{}{DFfACd}{E@hEBlHlAlE@d}{{EBn{g}}}{{AFf{{h{c}}}{{Hd{i}}}}}}{{{h{{EDj{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbACd}Fb}{cc{}}`{ce{}{}}{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}1{{{h{{EDj{ec}}}}}Hj{}{{EEj{Hj}{{Hd{c}}}}ACd}}{{{h{Ah{EDj{ec}}}}}Dh{}{{EEj{Hj}{{Hd{c}}}}ACd}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}Hj}{{Ff{{h{Ah{Ad{c}}}}{h{Ah{Ad{c}}}}}}}{}{DFfACd}}{{{h{Ah{EDf{}{{Ej{c}}}}}}{h{Ahe}}}Bf{}{DFfACd}}{{{h{{EDj{ec}}}}}{{Ff{Hj{Dh{Hj}}}}}{}{{EEj{Hj}{{Hd{c}}}}ACd}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}9```{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{EEl}}}EEl}{{{h{EEn}}}EEn}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{EEl}}{h{EEl}}}Ef}{{{h{EEl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EF`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EEn}}{h{AhEn}}}{{Dn{BfF`}}}}{{{ADn{Hj}}}EEl}{cc{}}{{{ADn{Df}}}EEl}11{{{h{EEl}}Hj}Hj}{ce{}{}}00{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}0{EElEEn}22{EEl{{ADn{Hj}}}}{{{h{EEl}}}Ef}{{{h{EEl}}}EF`}{{{h{EEl}}}Hj}{{{h{AhEF`}}}{{Dh{Hj}}}}{{{h{AhEEn}}}Dh}{{{h{Ahc}}HjHj}EEl{DFfACd}}{{{h{Ahc}}HjgHj}{{Dn{EElEBd}}}{DFfACd}{{AHd{ADd}}}{{AFf{Hj}{{Hd{e}}}}}}{{{h{EF`}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{EEn}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{c}}}e{}{}}0{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}0{c{{Dn{e}}}{}{}}00000{{{h{c}}}Ij{}}00{ce{}{}}00``{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DM`}}}DM`}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DM`}}{h{DM`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{DM`}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{{{h{DM`}}{h{Ahc}}}BfGf}9={{{h{c}}}If{}}<<;:`{{{h{AMn}}}}{{{h{AhAMn}}}}{{{h{AMn}}}{{h{{Ab{A`}}}}}}<;{{{h{AMn}}}AMn}:{{{h{AMn}}{h{AMn}}}Bh}{c{{Dn{AMn}}}E`}{{{h{AMn}}{h{AMn}}}Ef};;{{{h{AMn}}{h{AhEn}}}{{Dn{BfF`}}}}00:{{{h{{Ad{A`}}}}}{{Dn{AMnJj}}}}{{{h{G`}}}{{Dn{AMnJj}}}}{{{h{AMn}}{h{Ahc}}}BfGf}{{{h{AMn}}c}h{}}{ce{}{}}{{{h{AMn}}{h{AMn}}}{{Dh{Bh}}}}{{{h{AMn}}c}DnHn}{{{h{AMn}}}{{Ab{A`}}}}{{{h{c}}}e{}{}}{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}7`````````````````````````````````````````````````````{{{h{EFb}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}000000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000000000000{{{h{{EFd{c}}}}}{{EFd{c}}}{Al{Dj{AAf}}}}{{{h{AF`}}}AF`}{{{h{EFf}}}EFf}{{{h{EFh}}}EFh}{{{h{EFj}}}EFj}{{{h{AFj}}}AFj}{{{h{AHf}}}AHf}{{{h{EFl}}}EFl}{{{h{EFb}}}EFb}{{{h{DKn}}}DKn}{{{h{DL`}}}DL`}{{{h{EFn}}}EFn}{{{h{EG`}}}EG`}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000000{{{h{{EFd{c}}}}{h{{EFd{c}}}}}Bh{Bj{Dj{AAf}}}}{{{h{AF`}}{h{AF`}}}Bh}{{{h{EFb}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{{EFd{c}}}}{h{{EFd{c}}}}}Ef{Eh{Dj{AAf}}}}{{{h{AF`}}{h{AF`}}}Ef}{{{h{EFf}}{h{EFf}}}Ef}{{{h{EFh}}{h{EFh}}}Ef}{{{h{EFj}}{h{EFj}}}Ef}{{{h{AFj}}{h{AFj}}}Ef}{{{h{AHf}}{h{AHf}}}Ef}{{{h{EFl}}{h{EFl}}}Ef}{{{h{EFb}}{h{EFb}}}Ef}{{{h{DKn}}{h{DKn}}}Ef}{{{h{DL`}}{h{DL`}}}Ef}{{{h{EFn}}{h{EFn}}}Ef}{{{h{EG`}}{h{EG`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0000000000000000000000000{{{h{{AKj{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{Fb{Dj{Cn}}}}{{{h{{EFd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{Fb{Dj{AAf}}}}{{{h{AF`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EFf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EFh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EFj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AFj}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{AHf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EFl}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EFb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{DKn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{DL`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EFn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EG`}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{{EGb{c}}}}{h{AhEn}}}{{Dn{BfF`}}}CHb}{{{h{{EGb{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{cc{}}00000{AO`EFj}11111{AO`DKn}{EFhDKn}{AMdDKn}{EFfDKn}{EFjDKn}6{AMdDL`}{AO`DL`}888{AO`EG`}{AO`{{EGb{c}}}{}}:{ACf{{EGb{c}}}{}}{{{h{{EFd{c}}}}{h{Ahe}}}Bf{Gh{Dj{AAf}}}Gf}{{{h{AF`}}{h{Ahc}}}BfGf}{{{h{EFb}}{h{Ahc}}}BfGf}`{ce{}{}}000000000000000{{{AKj{c}}}c{{Dj{Cn}}}}{{{EGd{c}}}{{Dn{Efc}}}{}}{{{h{AF`}}}Ln}{{{h{{AKj{c}}}}{h{Ahe}}Hj{h{Md}}g}{{EGd{{EGb{AMd}}}}}{{Dj{Cn}}}{AChACd}{{AHd{Df}}}}{{{h{{AKj{c}}}}Hj{h{Md}}Df}{{Dn{LhAMd}}}{{Dj{Cn}}}}{{{EGd{c}}g}{{EGd{e}}}{}{}{{BDn{c}{{Hd{e}}}}}}{c{{AKj{c}}}{{Dj{Cn}}}}{{{h{Md}}AGl}AF`}{{{h{{Ad{A`}}}}}{{Dn{EFbEG`}}}}`{{{h{Ah{AKj{c}}}}Hj{h{Md}}CfABb}{{Dn{LjDL`}}}{{Dj{Cn}}}}{{{h{Ah{AKj{c}}}}Hj{h{Md}}CfABb}{{Dn{LjAMd}}}{{Dj{Cn}}}}{{{h{{EFd{c}}}}{h{{EFd{c}}}}}{{Dh{Bh}}}{Hl{Dj{AAf}}}}{{{h{AF`}}{h{AF`}}}{{Dh{Bh}}}}{{{h{Ah{AKj{c}}}}{h{Ahe}}Hj{h{Md}}CfABb}{{Dn{Bf{EGb{AMd}}}}}{{Dj{Cn}}}{AChACd}}{{{h{EFf}}}{{Dh{{h{AOf}}}}}}{{{h{EFh}}}{{Dh{{h{AOf}}}}}}{{{h{EFj}}}{{Dh{{h{AOf}}}}}}{{{h{AFj}}}{{Dh{{h{AOf}}}}}}{{{h{AHf}}}{{Dh{{h{AOf}}}}}}{{{h{EFl}}}{{Dh{{h{AOf}}}}}}{{{h{DKn}}}{{Dh{{h{AOf}}}}}}{{{h{DL`}}}{{Dh{{h{AOf}}}}}}{{{h{EFn}}}{{Dh{{h{AOf}}}}}}{{{h{EG`}}}{{Dh{{h{AOf}}}}}}{{{h{{EGb{c}}}}}{{Dh{{h{AOf}}}}}AOf}{{{h{Ah{AKj{c}}}}{h{Ahe}}Hj{h{{EFd{g}}}}{Dh{EFb}}{Dh{{Ff{LnDf}}}}AB`}{{Dn{Bf{EGb{DKn}}}}}{{Dj{Cn}}}{AChACd}{{Dj{AAf}}}}{{{h{Ah{AKj{c}}}}Hj{h{{EFd{e}}}}AB`}{{Dn{LlDKn}}}{{Dj{Cn}}}{{Dj{AAf}}}}{{{h{Ah{AKj{c}}}}Hj{h{{EFd{e}}}}gAB`}{{Dn{LlDKn}}}{{Dj{Cn}}}{{Dj{AAf}}}{{AHd{Ln}}}}{{{h{Ah{AKj{c}}}}Hj{h{{EFd{e}}}}{Dh{EFb}}{Dh{{Ff{LnDf}}}}AB`}{{Dn{LlDKn}}}{{Dj{Cn}}}{{Dj{AAf}}}}{{{h{c}}}e{}{}}000000000000{{{h{c}}}If{}}0000000000{{{h{{AKj{c}}}}}{{h{Cn}}}{{Dj{Cn}}}}{c{{Dn{e}}}{}{}}0000000000000000000000000000000{{{h{c}}}Ij{}}000000000000000`{ce{}{}}000000000000000{{{h{Md}}}AF`}{{{h{Ah{AKj{c}}}}Hj}{{Dh{{h{AhA@j}}}}}{{EGf{Cn}}}}```````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{EGh}}}EGh}{{{h{EGj}}}EGj}{{{h{c}}{h{Ahe}}}Bf{}{}}0`{{{h{EGh}}{h{EGh}}}Ef}{{{h{EGj}}{h{EGj}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000{{{h{EGh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EGj}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}{JjEGh}{AO`EGh}2{{{h{G`}}}{{Dn{EGjEGh}}}}{{{h{{Ad{A`}}}}}{{Dn{EGjEGh}}}}1{ce{}{}}0{{{h{EGj}}{h{{Jd{c}}}}{h{Jn}}Mh}{{Dn{EfEGh}}}Jl}{{DFlEf}EGj}{{{h{EGj}}{h{{Jd{c}}}}Mh}{{Dn{AAjEGh}}}Jl}{{{h{EGj}}}{{Ab{A`}}}}`{{{h{G`}}}Mh}{{{h{EGh}}}{{Dh{{h{AOf}}}}}}{EGjIf}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}0{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0;;`````````````````````````````````````````````````````{{EGlA`M`}{{Dn{EGlEGn}}}}{{EGlA`Cd}{{Dn{EGlEGn}}}}{{EGlA`CdAGl}{{Dn{EGlEGn}}}}{{{h{EH`}}}{{Dh{{h{M`}}}}}}{{{h{BCh}}}{{h{{Ad{M`}}}}}}{{{h{AhBCh}}}{{h{Ah{Ad{M`}}}}}}1{{{h{EH`}}}{{Dh{{Ff{{h{Md}}AGl}}}}}}2{{{h{c}}}{{h{e}}}{}{}}0000300000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0003000000000000000{{{h{AKb}}}AKb}{{{h{EHb}}}EHb}{{{h{BCh}}}BCh}{{{h{AFd}}}AFd}{{{h{EGl}}}EGl}{{{h{EHd}}}EHd}{{{h{EHf}}}EHf}{{{h{EHh}}}EHh}{{{h{EHj}}}EHj}{{{h{EH`}}}EH`}{{{h{AFb}}}AFb}{{{h{EHl}}}EHl}{{{h{AKf}}}AKf}{{{h{EHn}}}EHn}{{{h{AGl}}}AGl}{{{h{EGn}}}EGn}{{{h{EI`}}}EI`}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000000000{{{h{AKb}}{h{AKb}}}Bh}{{{h{BCh}}{h{BCh}}}Bh}{{{h{AFd}}{h{AFd}}}Bh}{{{h{EGl}}{h{EGl}}}Bh}{{{h{EHj}}{h{EHj}}}Bh}{{{h{EH`}}{h{EH`}}}Bh}{{{h{AFb}}{h{AFb}}}Bh}{{{h{EHl}}{h{EHl}}}Bh}{{{h{AKf}}{h{AKf}}}Bh}{{{h{EHn}}{h{EHn}}}Bh}{{{h{AGl}}{h{AGl}}}Bh}{{EHjEHj}{{Dn{EHjEGn}}}}{{{h{AFd}}{h{{Ff{CdAGl}}}}}{{Dh{AKf}}}}{{{h{{Ad{A`}}}}}{{Dn{BChEI`}}}}{{{h{{Ad{A`}}}}}{{Dn{AKfEI`}}}}{{}BCh}{{}EGl}{{{h{AFb}}}A`}{{{h{BCh}}}h}{{{h{AhBCh}}}{{h{Ah}}}}{c{{Dn{AKb}}}E`}{c{{Dn{BCh}}}E`}{c{{Dn{EHh}}}E`}{c{{Dn{EHj}}}E`}{c{{Dn{EH`}}}E`}{c{{Dn{AKf}}}E`}{c{{Dn{AGl}}}E`}{{{h{BCh}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AKf}}{h{Ahc}}}{{Dn{HjACf}}}{AChACd}}{{{h{AKb}}{h{AKb}}}Ef}{{{h{EHb}}{h{EHb}}}Ef}{{{h{BCh}}{h{BCh}}}Ef}{{{h{AFd}}{h{AFd}}}Ef}{{{h{EGl}}{h{EGl}}}Ef}{{{h{EHd}}{h{EHd}}}Ef}{{{h{EHf}}{h{EHf}}}Ef}{{{h{EHh}}{h{EHh}}}Ef}{{{h{EHj}}{h{EHj}}}Ef}{{{h{EH`}}{h{EH`}}}Ef}{{{h{AFb}}{h{AFb}}}Ef}{{{h{EHl}}{h{EHl}}}Ef}{{{h{AKf}}{h{AKf}}}Ef}{{{h{EHn}}{h{EHn}}}Ef}{{{h{AGl}}{h{AGl}}}Ef}{{{h{EGn}}{h{EGn}}}Ef}{{{h{EI`}}{h{EI`}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}000000000000000000000000000000000{{EGl{h{{Jd{c}}}}Jb}{{Dn{AFdEGl}}}Jl}{{{h{AKb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EHb}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{BCh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AFd}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EGl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EHd}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EHf}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EHh}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EHj}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EH`}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AFb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EHl}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{AKf}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{EHn}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{AGl}}{h{AhEn}}}{{Dn{BfF`}}}}000{{{h{EGn}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EI`}}{h{AhEn}}}{{Dn{BfF`}}}}0{cc{}}00{AFjEHb}{JjEHb}{AO`EHb}3{{{Ab{M`}}}BCh}000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444{AO`EHd}5{AO`EHf}6{EHhEHj}77777777{AO`EGn}{AO`EI`}9{A`{{Dn{AGlEI`}}}}{{{h{AFb}}}{{Dh{EHl}}}}{{{h{{Jd{c}}}}JbEHj}AFdJl}{{{h{{Ad{A`}}}}}{{Dn{AKbEHb}}}}{{{h{EGl}}}Ef}{{{h{AKb}}{h{Ahc}}}BfGf}{{{h{BCh}}{h{Ahc}}}BfGf}{{{h{AFd}}{h{Ahc}}}BfGf}{{{h{EGl}}{h{Ahc}}}BfGf}{{{h{EHh}}{h{Ahc}}}BfGf}{{{h{EHj}}{h{Ahc}}}BfGf}{{{h{EH`}}{h{Ahc}}}BfGf}{{{h{AFb}}{h{Ahc}}}BfGf}{{{h{EHl}}{h{Ahc}}}BfGf}{{{h{AKf}}{h{Ahc}}}BfGf}{{{h{EHn}}{h{Ahc}}}BfGf}{{{h{AGl}}{h{Ahc}}}BfGf}{{{h{AFd}}}Jb}`{ce{}{}}000000000000000000{EHdEGl}{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}0{BCh{{ADn{M`}}}}33{{{h{BCh}}}}{{{h{AhBCh}}}}{BCh}{EHfEHj}{EHhEHj}5{{{h{BCh}}}Ef}{{{h{EGl}}}Ef}{{{h{AFb}}}{{h{EH`}}}}{{{h{AFb}}}{{Dh{Ln}}}}{{{h{EHj}}}EIb}{{{h{AFb}}}{{Dh{AGl}}}}`{{{h{BCh}}}Hj}`{{{h{AFb}}}{{h{BCh}}}}{{{h{EHl}}}{{h{BCh}}}}`{{{h{AFd}}}{{Dh{M`}}}}{{}EGl}{M`AFb}{M`EHj}{{{h{{Jd{c}}}}Jb{Dh{M`}}}AFdJl}{{CdAGl}EHj}{{CdAGl}AFb}{{{h{AhEId}}}Dh}{{{h{AhEIb}}}Dh}10{{{h{EHj}}}M`}{{{h{AFb}}}M`}{{{h{EHh}}}{{h{EHj}}}}{{{h{AFd}}}ACj}{{{h{AFd}}}Jh}`{{{h{AKb}}{h{AKb}}}{{Dh{Bh}}}}{{{h{BCh}}{h{BCh}}}{{Dh{Bh}}}}{{{h{AFd}}{h{AFd}}}{{Dh{Bh}}}}{{{h{EGl}}{h{EGl}}}{{Dh{Bh}}}}{{{h{EHj}}{h{EHj}}}{{Dh{Bh}}}}{{{h{EH`}}{h{EH`}}}{{Dh{Bh}}}}{{{h{AFb}}{h{AFb}}}{{Dh{Bh}}}}{{{h{EHl}}{h{EHl}}}{{Dh{Bh}}}}{{{h{AKf}}{h{AKf}}}{{Dh{Bh}}}}{{{h{EHn}}{h{EHn}}}{{Dh{Bh}}}}{{{h{AGl}}{h{AGl}}}{{Dh{Bh}}}}{{{h{EHh}}}M`}{{{h{AFb}}}{{Dh{{h{Md}}}}}}{{{h{EHl}}}{{h{Md}}}}{{{h{EHh}}}EId}{{{h{AFd}}}{{h{{AKh{{Ff{CdAGl}}{EIf{BCh}}}}}}}}{AKbEIh}{{{h{AKb}}c}DnHn}{{{h{BCh}}c}DnHn}{{{h{BCh}}}{{ADn{A`}}}}{{{h{EHh}}c}DnHn}{{{h{EHj}}c}DnHn}{{{h{EH`}}c}DnHn}{{{h{AKf}}}{{ADn{A`}}}}{{{h{AKf}}c}DnHn}{{{h{AGl}}c}DnHn}{{{h{AKb}}{h{Ahc}}}{{Dn{BfACf}}}{AChACd}}```{{{h{AKf}}}Hj}{{{h{EId}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{EIb}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{EHb}}}{{Dh{{h{AOf}}}}}}{{{h{EHd}}}{{Dh{{h{AOf}}}}}}{{{h{EHf}}}{{Dh{{h{AOf}}}}}}{{{h{EGn}}}{{Dh{{h{AOf}}}}}}{{{h{EI`}}}{{Dh{{h{AOf}}}}}}{{{h{AFd}}}Mb}{EHnA`}{AGlA`}{{{h{c}}}e{}{}}0000000000000000{{{h{c}}}If{}}000000{AKb{{ADn{A`}}}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}0{c{{Dn{e}}}{}{}}0{{{h{EIh}}}{{Dn{AKb}}}}1{EIh{{Dn{AKb}}}}22{{{ADn{M`}}}{{Dn{BCh}}}}{{{AJd{{Ad{M`}}}}}{{Dn{BCh}}}}{{{h{{Ad{M`}}}}}{{Dn{BCh}}}}5555{EGl{{Dn{EHh}}}}{EHj{{Dn{EHh}}}}77{EGl{{Dn{EHj}}}}888888888888888888888888888{EGl{{Dn{EHjEHd}}}}{EGl{{Dn{EHhEHd}}}}{{{h{c}}}Ij{}}000000000000000000{{{h{AKf}}{h{{Jd{c}}}}Jb{h{Md}}}EfJl}{{{h{EHl}}}AGl}{ce{}{}}000000000000000000{HjEGl}{{{h{{Jd{c}}}}Jbe}{{Dn{AFdEGn}}}Jl{{El{}{{Ej{{Ff{DfCd}}}}}}}}{c{{Dn{EGlEGn}}}{{El{}{{Ej{{Ff{DfCd}}}}}}}}``{{{h{AhEIj}}}{{h{Ah{Ad{M`}}}}}}{{{h{EIj}}}{{h{{Ad{M`}}}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{EIj}}}EIj}{{{h{c}}{h{Ahe}}}Bf{}{}}{EIjHj}{{{h{EIj}}{h{AhEn}}}{{Dn{BfF`}}}}{cc{}}<{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}={EIjDh}{{{h{AhEIj}}}Dh}0{{{h{AhEIj}}Hj}Dh}0{{{h{EIj}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{c}}}e{}{}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}0{{{h{c}}}Ij{}}{ce{}{}}``{{{h{EIh}}}{{h{{Ad{A`}}}}}}{{{h{EIl}}}{{h{{Ad{A`}}}}}}1{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{EIh}}}EIh}{{{h{EIl}}}EIl}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{EIh}}{h{EIh}}}Bh}7{{{h{EIh}}{h{EIh}}}Ef}{{{h{EIh}}{h{{Ad{A`}}}}}Ef}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{EIh}}{h{AhEn}}}{{Dn{BfF`}}}}0{{{h{EIl}}{h{AhEn}}}{{Dn{BfF`}}}}{AKbEIh}{cc{}}{{{h{AKb}}}EIh}10{{{h{EIh}}{h{Ahc}}}BfGf}{ce{}{}}0{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}{EIh}{{{h{EIh}}}}3{{{h{EIh}}}Hj}{{{h{AhEIl}}}Dh}0{{{h{AhEIl}}Hj}Dh}{{{h{EIh}}{h{EIh}}}{{Dh{Bh}}}}{{{h{EIh}}{h{{Ad{A`}}}}}{{Dh{Bh}}}}{{{h{EIl}}}{{Ff{Hj{Dh{Hj}}}}}}{{{h{c}}}e{}{}}0{{{h{EIh}}}{{Dn{AKbEHb}}}}{{{h{c}}}If{}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}{c{{Dn{e}}}{}{}}000{{{h{c}}}Ij{}}0??{{{h{EIh}}{h{Ahc}}}{{Dn{BfACf}}}{AChACd}}``{{{h{Ah{EIn{ce}}}}O`Df}{{EJ`{c}}}{f{DLf{Bb}}}EJb}{{{h{Ah{EIn{ce}}}}{h{O`}}Df}{{EJ`{c}}}{f{DLf{Bb}}}EJb}{{{h{Ah{EIn{ce}}}}{EJ`{c}}}BffEJb}{{{h{Ah{EIn{ce}}}}{Aj{c}}}{{EJ`{c}}}fEJb}{{{h{Ah{EIn{ce}}}}{Aj{c}}{Dh{Ed}}}{{EJ`{c}}}fEJb}{{{h{{EIn{ce}}}}}{{h{{Fh{c}}}}}{}{}}{{{h{Ah{EIn{ce}}}}k}{{EJ`{c}}}fEJb{{AHd{{EJd{Cn}}}}}{{El{}{{Ej{c}}}}}{{El{}{{Ej{{Ff{gi}}}}}}}}{{{h{Ah{EIn{ce}}}}i}{{EJ`{c}}}fEJb{{AHd{{EJd{Cn}}}}}{{El{}{{Ej{{Ff{gEd}}}}}}}}0{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{{EJ`{ce}}}}}{{EJ`{ce}}}AlAl}{{{h{c}}{h{Ahe}}}Bf{}{}}{{}{{EIn{ce}}}{}E@d}{{}{{EJ`{ce}}}{}E@d}{c{{Dn{{EJ`{eg}}}}}E`{BjEb}Eb}{{{h{{EJ`{ce}}}}{h{{EJ`{ce}}}}}EfEhEh}{{{h{{EIn{ce}}}}{h{AhEn}}}FdFbFb}{{{h{{EJ`{ce}}}}{h{AhEn}}}FdFbFb}{cc{}}{EJf{{EJ`{cEJf}}}{}}1{{{EJh{c}}}{{EJ`{ce}}}{}E@d}?``{{{h{{EIn{ce}}}}}{{EJ`{c}}}fEJb}{{{h{Ah{EIn{ce}}}}Cbc}{{EJ`{c}}}fEJb}{{{h{Ah{EIn{ce}}}}CbEd}{{EJ`{c}}}fEJb}{{{h{Ah{EIn{ce}}}}g}{{EJ`{c}}}fEJb{{AHd{{EJd{Cn}}}}}}{{{h{Ah{EIn{ce}}}}AAdAAf}{{EJ`{c}}}fEJb}{ce{}{}}0{{{h{{EJ`{ce}}}}}EffH`}{{{h{Ah{EJ`{ce}}}}{EJ`{ce}}}BffH`}{c{{EIn{ec}}}{}{}}{{{h{{EJ`{ce}}}}g}Dn{BjI`}I`Hn}{{{h{c}}}e{}{}}{c{{Dn{e}}}{}{}}000`{{{h{c}}}Ij{}}077``{{{h{Ah{EJb{}{{EJj{c}}}}}}c}Bf{}}{{{h{Ah{EJb{}{{EJj{c}}}}}}{h{Cn}}}c{}}{{{h{Ah{EJb{}{{EJj{c}}}}}}AAd{h{AAf}}}c{}}{{{h{{EJb{}{{EJj{c}}}}}}}c{}}{{{h{{EJb{}{{EJj{c}}}}}}{h{Cn}}}Ef{}}````````````{{{h{{EJl{c}}}}}{{AKh{c{Bd{{Cl{Cj}}}}}}}{AlBjFb}}{{{h{Ah{EJl{c}}}}e}Bf{AlBjFb}{}}{{{h{Ah{EJl{c}}}}EJf}Bf{AlBjFb}}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{EJl{c}}}}}{{EJl{c}}}Al}{{{h{{EJn{c}}}}}{{EJn{c}}}Al}{{{h{EJf}}}EJf}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{}{{EJl{c}}}{}}{{}EJf}{c{{Dn{EJf}}}E`}{{{h{{EJn{c}}}}{h{{EJn{c}}}}}EfEh}{{{h{EJf}}{h{EJf}}}Ef}{{{h{{EJl{c}}}}{h{AhEn}}}FdFb}{{{h{{EJn{c}}}}{h{AhEn}}}FdFb}0{{{h{EJf}}{h{AhEn}}}Fd}{cc{}}00{{{h{EK`}}}{{Id{EJf}}}}{{{h{{EJl{c}}}}c}{{Dh{{h{{Cl{Cj}}}}}}}{AlBjFb}}{{{h{{EJl{c}}}}Cd}{{Dh{{h{{Ff{cDf}}}}}}}{AlBjFb}}{{{h{Ah{EJl{c}}}}{h{Cn}}}e{AlBjFb}{}}{{{h{Ah{EJl{c}}}}AAd{h{AAf}}}e{AlBjFb}{}}{{{h{EK`}}}{{Id{Bf}}}}{{{h{{EJl{c}}}}}e{AlBjFb}{}}{{{h{Ah{EJl{c}}}}c{Cl{Cj}}}{{Dn{Ef{EJn{c}}}}}{AlBjFb}}{ce{}{}}00{{{h{EJf}}}Ef}{{{h{{EJl{c}}}}{h{Cn}}}Ef{AlBjFb}}{{{h{{EJl{c}}}}cDf}Ef{AlBjFb}}{{{h{{EJl{c}}}}c}{{`{{CIb{}{{Ej{{EKb{AAd}}}}}}}}}{AlBjFb}}{{{h{{EJl{c}}}}e}{{`{{CIb{}{{Ej{{EKd{cAAd}}}}}}}}}{AlBjFb}{{Hh{c}}}}{{{h{{EJl{c}}}}}{{`{{CIb{}{{Ej{{Ff{c{h{{Cl{Cj}}}}}}}}}}BNf}}}{AlBjFb}}`{{{h{{EJl{c}}}}c}{{Dh{Df}}}{AlBjFb}}{{{h{{EJl{c}}}}}{{AKh{cDf}}}{AlBjFb}}10{{{h{{EJl{c}}}}}Df{AlBjFb}}{{{h{Ah{EJl{c}}}}cDf}Bf{AlBjFb}}{{{h{Ah{EJl{c}}}}cDf}Ef{AlBjFb}}{{{h{AhEJf}}EJf}Bf}{{{h{{EJl{c}}}}{h{Cn}}e}Il{AlBjFb}{{Hh{c}}}}{Df{{EJl{c}}}{}}{{{h{{EJl{c}}}}c}{{Dh{{Ff{DfEf}}}}}{AlBjFb}}{{{h{Ah{EJl{c}}}}c}{{Dh{{Ff{{EKb{Cd}}EJf}}}}}{AlBjFb}}{{{h{{EJl{c}}}}}{{h{{EIf{{EKd{cAAd}}}}}}}{AlBjFb}}{{{h{EJf}}{h{EK`}}}{{Id{Bf}}}}2{{{h{Ah{EJl{c}}}}cDf}{{Dh{{Ff{{ADn{{EKb{Cd}}}}EJf}}}}}{AlBjFb}}{{{h{Ah{EJl{c}}}}{h{{AKh{cDf}}}}}EJf{AlBjFb}}{{{h{{EJl{c}}}}c}{{`{{CIb{}{{Ej{{EKb{Cd}}}}}}}}}{AlBjFb}}{{{h{{EJl{c}}}}e}{{`{{Gn{}{{Ej{{EKd{cCd}}}}}}}}}{AlBjFb}{{Hh{c}}}}{{EKf{h{{EJl{c}}}}e}EKf{}{{Hh{c}}}}{{{h{{EJl{c}}}}{h{Cn}}e}{{Ff{CfCf}}}{AlBjFb}{{Hh{c}}}}{{{h{EJf}}c}DnHn}{{{h{{EJl{c}}}}cDf}{{Dh{Cd}}}{AlBjFb}}{{EKh{h{{EJl{c}}}}}EKh{}}{{{h{c}}}e{}{}}00{{{h{c}}}If{}}{c{{Dn{e}}}{}{}}00000{{{h{{EJl{c}}}}AAd}{{Dh{{EKd{c{h{AAf}}}}}}}{AlBjFb}}{{{h{{EJl{c}}}}}{{`{{CIb{}{{Ej{{EKd{c{Ff{AAd{h{AAf}}}}}}}}}}BNf}}}{AlBjFb}}{{{h{{EJl{c}}}}Cb}{{`{{CIb{}{{Ej{{EKd{c{Ff{AAd{h{AAf}}}}}}}}}}}}}{AlBjFb}}{{{h{c}}}Ij{}}00{{{h{{EJl{c}}}}c}{{Dh{{Bd{{Cl{Cj}}}}}}}{AlBjFb}}{{{h{Ah{EJl{c}}}}cDf}Ef{AlBjFb}}{{{h{{EJl{c}}}}c}{{`{{CIb{}{{Ej{{EKb{Cd}}}}}}Al}}}{AlBjFb}}{{{h{{EJl{c}}}}}{{`{{CIb{}{{Ej{{EKd{cCd}}}}}}Al}}}{AlBjFb}}{{EKf{h{{EJl{c}}}}}EKf{}}{ce{}{}}00`````{{{h{{EKj{c}}}}}{{h{{AKh{cCd}}}}}{AlBjFb}}{{{h{Ah{EKj{c}}}}e}Bf{AlBjFb}{}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{EKj{c}}}}}{{EKj{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}{{}{{EKj{c}}}{}}{{{h{{EKj{c}}}}{h{AhEn}}}FdFb}{cc{}}{{{h{{EKj{c}}}}Cd}{{Dh{{h{c}}}}}{AlBjFb}}{{{h{Ah{EKj{c}}}}{h{Cn}}}e{AlBjFb}{}}{{{h{Ah{EKj{c}}}}AAd{h{AAf}}}e{AlBjFb}{}}{{{h{{EKj{c}}}}}e{AlBjFb}{}}{{{h{Ah{EKj{c}}}}cCd}Ef{AlBjFb}}>{{{h{{EKj{c}}}}{h{Cn}}}Ef{AlBjFb}}0{{{h{{EKj{c}}}}{h{c}}}Ef{AlBjFb}}{{{h{Ah{EKj{c}}}}{h{c}}}Ef{AlBjFb}}{{{h{{EKj{c}}}}{h{Cn}}e}Il{AlBjFb}{{Hh{c}}}}{{{h{{EKj{c}}}}}{{h{{EIf{{Ff{cAAd}}}}}}}{AlBjFb}}{{{h{{EKj{c}}}}e}{{`{{CIb{}{{Ej{{Ff{{h{c}}AAd}}}}}}}}}{AlBjFb}{{Hh{c}}}}{{{h{Ah{EKj{c}}}}{h{Cn}}}{{EIf{c}}}{AlBjFb}}{{{h{Ah{EKj{c}}}}AAd{h{AAf}}}{{Dh{{h{c}}}}}{AlBjFb}}{{{h{{EKj{c}}}}{h{Cn}}e}{{Ff{CfCf}}}{AlBjFb}{{Hh{c}}}}{{{h{{EKj{c}}}}{h{c}}}{{Dh{Cd}}}{AlBjFb}}{{{h{c}}}e{}{}}{c{{Dn{e}}}{}{}}0{{{h{{EKj{c}}}}AAd}{{Dh{{Ff{{h{c}}{h{AAf}}}}}}}{AlBjFb}}{{{h{{EKj{c}}}}}{{`{{CIb{}{{Ej{{Ff{{h{c}}AAd{h{AAf}}}}}}}}BNf}}}{AlBjFb}}{{{h{{EKj{c}}}}Cb}{{`{{CIb{}{{Ej{{Ff{{h{c}}AAd{h{AAf}}}}}}}}}}}{AlBjFb}}{{{h{c}}}Ij{}}={{{h{{EKj{c}}}}e}{{`{{CIb{}{{Ej{{Ff{{h{c}}Cd}}}}}}Al}}}{AlBjFb}{{Hh{c}}}}{ce{}{}}````````````{{{h{AhEKl}}{h{EKn}}}{{Dn{BfEL`}}}}{{{h{AhEKl}}{h{Fl}}Df}{{Dn{EKnELb}}}}{{{h{AhEKl}}{h{Fl}}Dfj}{{Dn{EKnELd}}}}{{{h{AhEKl}}Af}{{Dn{EKnELb}}}}`{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{EKl}}}EKl}{{{h{EKn}}}EKn}{{{h{EL`}}}EL`}{{{h{ELf}}}ELf}{{{h{ELb}}}ELb}{{{h{ELd}}}ELd}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{}EKn}{c{{Dn{EKn}}}E`}{{{h{AhEKl}}j}{{Dn{EKnEL`}}}}{{{h{EKl}}{h{EKl}}}Ef}{{{h{EKn}}{h{EKn}}}Ef}{{{h{EL`}}{h{EL`}}}Ef}{{{h{ELf}}{h{ELf}}}Ef}{{{h{ELb}}{h{ELb}}}Ef}{{{h{ELd}}{h{ELd}}}Ef}{{{h{EKl}}{h{AhEn}}}Fd}{{{h{EKn}}{h{AhEn}}}Fd}{{{h{EL`}}{h{AhEn}}}Fd}0{{{h{ELf}}{h{AhEn}}}Fd}0{{{h{ELb}}{h{AhEn}}}Fd}0{{{h{ELd}}{h{AhEn}}}Fd}0{cc{}}0{cEKn{{El{}{{Ej{{Ff{Df{Dh{D`}}}}}}}}}}1111{{{AKh{DfD`}}}{{Dn{EKlEL`}}}}{EKn{{Dn{EKlEL`}}}}{D`{{Ff{EKlEKn}}}}{cEKn{{El{}{{Ej{{Ff{DfD`}}}}}}}}4{{{h{EK`}}}{{Id{EKn}}}}{Af{{Dn{EKlEL`}}}}{{{h{EKl}}}D`}{{{h{EKl}}Df}{{Dh{Af}}}}{{{h{EKl}}}{{Dn{jc}}}{}}`{{{h{EK`}}}{{Id{Bf}}}}{{{h{EKl}}}EKn}{{{h{AhEKl}}j}{{Dn{EKnELf}}}}{ce{}{}}00000{{{h{EKl}}jj}{{Dn{{Dh{Ef}}c}}}{}}{{{h{EKn}}}Ef}{{{h{EKl}}}Hb}{{{h{AhEKn}}EKn}Bf}`{{{h{EKn}}{h{EK`}}}{{Id{Bf}}}}{{{h{EKl}}c}{{`{{Gn{}{{Ej{Af}}}}}}}{{Hh{Df}}}}{{{h{EKn}}c}DnHn}{{{h{EKl}}}Af}{{{h{c}}}e{}{}}00000{{{h{c}}}If{}}000{c{{Dn{e}}}{}{}}00000`000000{{{h{c}}}Ij{}}00000`<<<<<<`{{{h{EK`}}{h{G`}}{h{{Ad{{h{{Ad{{h{G`}}}}}}}}}}}{{Id{Bf}}}}```````````{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000{{{ELh{c}}}{{ELj{c}}}{}}{{{ELl{c}}}{{ELn{c}}}Bj}{{}{{ELh{c}}}{}}{{}{{ELl{c}}}{BjAl}}{{{ELh{c}}Af}{{ELh{c}}}{}}{{{h{{ELj{c}}}}}{{Dh{Af}}}{}}{{{ELl{c}}Af}{{ELl{c}}}Bj}{{{h{{ELn{c}}}}}{{Dh{Af}}}{BjAl}}``{{{h{{EM`{c}}}}}{{EM`{c}}}Al}{{{h{EMb}}}EMb}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{{EM`{c}}}}{h{{EM`{c}}}}}BhBj}{{{h{EMb}}}Hj}:{{}{{ELj{c}}}{}}{{}{{ELl{c}}}{}}{{}{{ELn{c}}}{}}{{}{{EMd{c}}}{}}{{}{{EMf{ce}}}{}{}}{{{h{{EM`{c}}}}{h{{EM`{c}}}}}EfEh}{{{h{c}}{h{e}}}Ef{}{}}0{{{h{{EM`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{{EM`{c}}}}{h{AhEn}}}{{Dn{BfF`}}}{FbEMh}}{{{h{EMb}}{h{AhEn}}}{{Dn{BfF`}}}}{{{h{{EMd{c}}}}{h{AhEn}}}{{Dn{BfF`}}}Fb}{{{h{{EMf{ce}}}}{h{AhEn}}}{{Dn{BfF`}}}FbFb}{cc{}}0{{{ELh{c}}}{{ELj{c}}}{}}1{{{ELl{c}}}{{ELn{c}}}{}}22222{{{h{{EM`{c}}}}{h{Ahe}}}BfGhGf}{{{ELh{c}}e}{{ELh{c}}}{}{{Hf{{EM`{c}}EMb}}EMj}}{{{ELl{c}}e}{{ELl{c}}}Bj{{Hf{cDf{h{Md}}}}EMj}}{ce{}{}}0000000{{{h{Ah{ELj{c}}}}}{{`{BNf}}}{}}0{{{h{Ah{ELn{c}}}}c}{{`{{Gn{}{{Ej{{Ff{DfCd}}}}}}}}}{BjAl}}1{{{h{{ELn{c}}}}}{{ADn{c}}}{BjAl}}`{{{h{Ah{ELj{c}}}}}{{Dh{AAd}}}{}}{{{h{Ah{ELj{c}}}}}{{Dh{Cd}}}{}}{{{h{Ah{ELn{c}}}}c}{{Dh{{Ff{DfCd}}}}}{BjAl}}{{{h{Ah{ELj{c}}}}}{{Dh{Cb}}}{}}{{{ELh{c}}e}{{ELh{c}}}{}{{El{}{{Ej{AAd}}}}}}``{{{h{{EM`{c}}}}{h{{EM`{c}}}}}{{Dh{Bh}}}Hl}{{{h{{ELj{c}}}}}EMb{}}{{{h{EMb}}}Hj}{{{ELh{{Ff{cDf}}}}{h{{EJl{c}}}}e}{{ELh{{Ff{cDf}}}}}{AlBjFb}{{Hh{c}}}}{{ELhc}ELh{{El{}{{Ej{Cd}}}}}}`{{{ELl{c}}cg}{{ELl{c}}}Bj{{Gn{}{{Ej{{Ff{DfCd}}}}}}EMj}{{El{}{{EMl{e}}}}}}{{{ELl{c}}{h{{EJl{c}}}}}{{ELl{c}}}{AlBjFb}}`{{{ELh{c}}e}{{ELh{c}}}{}{{El{}{{Ej{{Ff{cCd}}}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}If{}}7777{c{{Dn{e}}}{}{}}000000000000000``{{{ELh{c}}e}{{ELh{c}}}{}{{El{}{{Ej{Cb}}}}}}``{{{h{c}}}Ij{}}0000000{{{ELh{{Ff{cDf}}}}{h{{EJl{c}}}}}{{ELh{{Ff{cDf}}}}}{AlBjFb}}{ce{}{}}0000000``````````````{{{h{{Fh{c}}}}}{{h{{EIf{{Ff{cCb}}}}}}}{}}{{{h{{Fh{c}}}}}{{`{{Gn{}{{Ej{{Ff{AAd{h{AAf}}}}}}}}}}}{}}{{{h{{EJh{c}}}}}{{`{{Gn{}{{Ej{Df}}}}}}}f}```{{{h{Ah{Fh{c}}}}{EJh{c}}}Bf{AlBj}}{{{h{Ah{Fh{c}}}}{Aj{c}}}{{EJh{c}}}{AlBj}}{{{h{Ah{Fh{c}}}}{Aj{c}}{Dh{Ed}}}{{EJh{c}}}{AlBj}}{{{h{{Fh{c}}}}}{{h{{Fh{c}}}}}{}}{{{h{{Fh{c}}}}{h{e}}jik}bf{{Gd{}{{Gb{AO`}}}}}Al{{El{}{{Ej{{Ff{gAAd}}}}}}}{{Hf{{h{g}}Cd}{{Hd{Ef}}}}}}{{{h{Ah{Fh{c}}}}g}{{EJh{c}}}{AlBj}{{AHd{{EJd{Cn}}}}}{{El{}{{Ej{{Ff{eEd}}}}}}}}{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{{Fh{c}}}}{h{Cn}}}{{Dn{CfEMn}}}{}}`{c{{Dh{Il}}}{}}{c{{Dh{Cf}}}{}}10{{{h{{Fh{c}}}}}{{Fh{c}}}Al}{{{h{{EN`{ce}}}}}{{EN`{ce}}}AlAl}{{{h{{ENb{ce}}}}}{{ENb{ce}}}AlAl}{{{h{{EJh{c}}}}}{{EJh{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{{EN`{ce}}}}{h{{EN`{ce}}}}}BhBjBj}{{{h{{ENb{ce}}}}{h{{ENb{ce}}}}}BhBjBj}{{}{{Fh{c}}}{}}{{}{{EJh{c}}}{}}{{{h{{EN`{ce}}}}}{{h{g}}}{}{}{}}{c{{Dn{{EJh{e}}}}}E`{BjEb}}{{{h{{Fh{c}}}}{h{Cn}}}{{`{{Gn{}{{Ej{{Ff{HjCb}}}}}}}}}{}}{{{h{{Fh{c}}}}{h{{Fh{c}}}}}EfEh}{{{h{{EN`{ce}}}}{h{{EN`{ce}}}}}EfEhEh}{{{h{{ENb{ce}}}}{h{{ENb{ce}}}}}EfEhEh}{{{h{EMn}}{h{EMn}}}Ef}{{{h{{EJh{c}}}}{h{{EJh{c}}}}}EfEh}{{{h{c}}{h{e}}}Ef{}{}}00000{{{h{{Fh{c}}}}{h{e}}ji}{{`{{Gn{}{{Ej{{Ff{g{B`{c}}}}}}}}}}}f{{Gd{}{{Gb{AO`}}}}}Al{{El{}{{Ej{{Ff{gAAd}}}}}}}}0{{{h{{Fh{c}}}}}{{`{{Gn{}{{Ej{{Ff{AAd{h{AAf}}}}}}}}}}}{}}{{{h{{Fh{c}}}}{h{AhEn}}}FdFb}{{{h{{EN`{ce}}}}{h{AhEn}}}FdFbFb}{{{h{{ENb{ce}}}}{h{AhEn}}}FdFbFb}{{{h{EMn}}{h{AhEn}}}Fd}0{{{h{{EJh{c}}}}{h{AhEn}}}FdFb}{cc{}}00{{{Aj{c}}}{{Fh{c}}}{BjAl}}1111{{{h{EK`}}}{{Id{{EJh{c}}}}}{fAlBjI`Dd}}{{{h{{Fh{c}}}}}{{`{{Gn{}{{Ej{{EN`{{EJd{Cn}}c}}}}}}}}}{}}{{{h{{Fh{c}}}}{h{e}}jCb}{{Dh{{An{{h{c}}}}}}}f{{Gd{}{{Gb{AO`}}}}}}{{{h{{Fh{c}}}}{h{e}}jAAd}{{Dh{{Ff{{An{{h{c}}}}Cb}}}}}f{{Gd{}{{Gb{AO`}}}}}}{{{h{{Fh{c}}}}Cb}{{Dh{{EJd{Cn}}}}}{}}{{{h{{Fh{c}}}}Cb}{{Dh{{EN`{{EJd{Cn}}c}}}}}{}}{{{h{{Fh{c}}}}AAd}{{Dh{{h{AAf}}}}}{}}{{{h{EK`}}}{{Id{Bf}}}}{{{h{{Fh{c}}}}}{{EJh{c}}}{AlBj}}{{{h{Ah{Fh{c}}}}Cbc}{{EJh{c}}}{AlBj}}{{{h{Ah{Fh{c}}}}CbEd}{{EJh{c}}}{AlBj}}{{{h{Ah{Fh{c}}}}e}{{EJh{c}}}{AlBj}{{AHd{{EJd{Cn}}}}}}{{{h{Ah{Fh{c}}}}AAdAAf}{{EJh{c}}}{AlBj}}{ce{}{}}000000{c{{Gl{g}}}{}{}{{Gn{}{{Ej{e}}}}}}011{{{h{{Fh{c}}}}}Ef{}}{{{h{{EJh{c}}}}}EfBj}``{{{h{{Fh{c}}}}{h{e}}j}{{`{{Gn{}{{Ej{{ENb{{EJd{Cn}}c}}}}}}}}}f{{Gd{}{{Gb{AO`}}}}}}{{{Fh{c}}g}{{Fh{e}}}{AlBj}{AlBj}{{Hf{c}{{Hd{e}}}}}}{{{EJh{c}}g}{{EJh{e}}}BjBj{{Hf{c}{{Hd{e}}}}}}{{{h{Ah{EJh{c}}}}{EJh{c}}}BfBj}{c{{Fh{e}}}{{El{}{{Ej{Cn}}}}}{AlBj}}{{{h{Ah{ENd{cg}}}}}{{Dh{i}}}{}{}{{Hf{Hj{EJd{Cn}}}{{Hd{{Dh{e}}}}}}}{}}{{{h{Ah{ENf{cg}}}}}{{Dh{i}}}{}{}{{Hf{HjCb}{{Hd{{Dh{e}}}}}}}{}}{{{h{{Fh{c}}}}AAd}{{h{{ENh{Cb}}}}}{}}{{{h{{EN`{ce}}}}{h{{EN`{ce}}}}}{{Dh{Bh}}}HlHl}{{{h{{ENb{ce}}}}{h{{ENb{ce}}}}}{{Dh{Bh}}}HlHl}{{{h{{EJh{c}}}}{h{EK`}}}{{Id{Bf}}}{fAlBjI`Dd}}`{{{h{{EJh{c}}}}e}Dn{BjI`}Hn}{{{h{c}}}e{}{}}000{{{h{c}}}If{}}{c{{Ih{i}}}{}{}{}{{Gn{}{{Ej{{Dn{eg}}}}}}}}0{{{h{{Fh{c}}}}{h{e}}jik}{{Dn{b}}}fGdAl{{El{}{{Ej{{Ff{gAAd}}}}}}}{{Hf{{h{g}}Cd}{{Hd{Ef}}}}}}{{{h{{Fh{c}}}}{h{e}}ji}{{`{{Gn{}{{Ej{{Dn{{Ff{g{B`{c}}}}}}}}}}}}}fGdAl{{El{}{{Ej{{Ff{gAAd}}}}}}}}0{c{{Dn{e}}}{}{}}000000{{{h{{Fh{c}}}}{h{e}}jCb}{{Dn{{Dh{{An{{h{c}}}}}}}}}fGd}{{{h{{Fh{c}}}}{h{e}}jAAd}{{Dn{{Dh{{Ff{{An{{h{c}}}}Cb}}}}}}}fGd}2222222{{{h{{Fh{c}}}}{h{e}}j}{{`{{Gn{}{{Ej{{Dn{{ENb{{EJd{Cn}}c}}}}}}}}}}}fGd}``{{{h{{Fh{c}}}}Cb}{{Dh{{AKh{Df{h{AAf}}}}}}}{}}{{{h{{Fh{c}}}}Cb}{{`{{CIb{}{{Ej{{Ff{Df{h{{ENh{Cb}}}}}}}}}}}}}{}}`{{{h{{EJh{c}}}}}{{`{{Gn{}{{Ej{{Ff{AAd{h{AAf}}}}}}}}}}}{}}````{{{h{{Fh{c}}}}}{{`{{Gn{}{{Ej{{EN`{{EJd{Cn}}c}}}}}}}}}{}}{{{h{c}}}Ij{}}000000{ce{}{}}000000{{{h{{Fh{c}}}}ei}{{ENd{ci}}}{AlBj}{{AHd{{EJd{Cn}}}}}{}{{Hf{Hj{EJd{Cn}}}{{Hd{{Dh{g}}}}}}}}{{{h{{Fh{c}}}}{h{Cn}}g}{{ENf{cg}}}{}{}{{Hf{HjCb}{{Hd{{Dh{e}}}}}}}}{{{h{{Fh{c}}}}Cbg}{{ENf{cg}}}{AlBj}{}{{Hf{HjCb}{{Hd{{Dh{e}}}}}}}}","D":"AEIbAEClCf","p":[[5,"Balance",0,16144],[5,"DescriptorId",0,16145],[10,"Anchor",0,16146],[1,"reference"],[5,"BlockId",0,16147],[5,"ConfirmationBlockTime",0,16147],[5,"Hash",10007,16148],[1,"u8"],[1,"array"],[1,"slice"],[5,"CheckPoint",0,16149],[0,"mut"],[5,"TxUpdate",0,16150],[10,"Clone",16151],[6,"ChainPosition",0,16152],[5,"FullTxOut",0,16152],[5,"TxPosInBlock",0,16146],[5,"SpkIterator",0,16153],[1,"unit"],[6,"Ordering",16154],[10,"Ord",16154],[6,"ValueRef",16155],[5,"Impl",0],[8,"FromSqlResult",16156],[5,"Txid",359,16157],[5,"ScriptBuf",359,16158],[5,"Amount",359,16159],[6,"Network",359,16160],[6,"DescriptorPublicKey",16161],[6,"Descriptor",16162],[5,"Transaction",359,16157],[5,"BlockHash",359,16163],[5,"AnchorImpl",0],[10,"DeserializeOwned",8295,16164],[1,"u32"],[6,"Option",16165],[10,"Borrow",16166],[10,"DescriptorExt",0,16145],[6,"Result",16167],[10,"Deserializer",8208,16164],[10,"Deserialize",8208,16164],[1,"u64"],[1,"bool"],[10,"PartialEq",16154],[17,"Item"],[10,"IntoIterator",16168],[5,"Formatter",16169],[5,"Error",16169],[10,"Debug",16169],[8,"Result",16169],[1,"tuple"],[5,"TxGraph",15959],[1,"never"],[5,"Header",5535,16163],[5,"FromSliceError",13432,16170],[1,"str"],[17,"Error"],[10,"ChainOracle",0,16171],[10,"Hasher",16172],[10,"Hash",16172],[10,"SliceIndex",16173],[5,"IntoFallible",16174],[10,"Iterator",16175],[10,"Merge",0,16176],[5,"CheckPointIter",0,16149],[17,"Output"],[10,"FnMut",16177],[10,"RangeBounds",16178],[1,"usize"],[10,"PartialOrd",16154],[10,"Serializer",8208,16179],[10,"Serialize",8208,16179],[6,"ToSqlOutput",16180],[8,"Result",16181],[5,"String",3139,16182],[5,"Convert",16174],[5,"TypeId",16183],[5,"SignedAmount",359,16159],[5,"Weight",359,16184],[5,"Work",359,16185],[5,"XOnlyPublicKey",359,16186],[5,"Secp256k1",10743,16187],[5,"Scalar",12504,16188],[6,"Parity",10743,16186],[6,"Error",12504,16187],[10,"Verification",10743,16189],[5,"Address",359,16190],[6,"AddressType",359,16190],[5,"FilterHash",359,16191],[5,"FilterHeader",359,16191],[5,"XKeyIdentifier",359,16192],[5,"TxMerkleNode",359,16163],[5,"WitnessMerkleNode",359,16163],[5,"WitnessCommitment",359,16163],[5,"ScriptHash",359,16193],[5,"WScriptHash",359,16193],[5,"Wtxid",359,16157],[5,"PubkeyHash",359,16194],[5,"WPubkeyHash",359,16194],[5,"LegacySighash",359,16195],[5,"SegwitV0Sighash",359,16195],[5,"TapSighash",359,16195],[5,"TapLeafHash",359,16196],[5,"TapNodeHash",359,16196],[5,"TapTweakHash",359,16196],[5,"Script",359,16197],[5,"XOnlyPublicKey",13124,16198],[5,"Hash",10121,16199],[5,"Hash",7810,16200],[5,"TapSighashTag",359,16195],[5,"Hash",10174,16201],[5,"TapLeafTag",359,16196],[5,"TapBranchTag",359,16196],[5,"TapTweakTag",359,16196],[5,"PushBytes",6429,16202],[5,"Params",7269,16203],[6,"NetworkUnchecked",2761,16190],[10,"NetworkValidation",2761,16190],[5,"TxIn",359,16157],[5,"Block",359,16163],[6,"Bip34Error",5535,16163],[5,"Builder",6429,16204],[5,"Bytes",6429,16197],[5,"ChainHash",5655,16205],[6,"LockTime",5726,16206],[5,"Sequence",359,16157],[6,"LockTime",5912,16207],[1,"i64"],[5,"FeeRate",359,16208],[5,"Opcode",359,16209],[6,"ClassifyContext",6122,16209],[6,"Class",6122,16209],[5,"Witness",359,16210],[6,"Denomination",359,16159],[6,"KnownHrp",359,16190],[5,"WitnessProgram",359,16211],[6,"WitnessVersion",359,16212],[5,"OutPoint",359,16157],[5,"TxOut",359,16157],[5,"VarInt",359,16213],[5,"PublicKey",359,16194],[5,"CompressedPublicKey",359,16194],[5,"PrivateKey",359,16194],[6,"TapSighashType",359,16195],[6,"EcdsaSighashType",359,16195],[5,"MerkleBlock",359,16214],[6,"NetworkKind",359,16160],[5,"Target",359,16185],[5,"CompactTarget",359,16185],[5,"Psbt",359,16215],[6,"Error",12042,16216],[6,"Error",7360,16213],[10,"Read",10495,16217],[10,"Sized",16218],[5,"Error",10495,16219],[10,"Write",10495,16217],[5,"TweakedPublicKey",10743,16194],[5,"Token",16220],[10,"BufRead",10495,16217],[1,"u128"],[10,"AsRef",16221],[1,"f64"],[5,"Display",3057,16159],[5,"HashEngine",10007,16148],[6,"Instruction",6429,16222],[6,"Error",16223],[5,"Vec",3139,16224],[6,"MerkleBlockError",11113,16214],[6,"ExtractTxError",12042,16215],[10,"Write",16169],[5,"PublicKey",12504,16186],[5,"Xpub",5176,16192],[6,"Cow",16225],[5,"RelLockTime",16226],[1,"u16"],[5,"ScriptPath",14351,16195],[5,"LeafNode",14755,16196],[5,"TaprootSpendInfo",14755,16196],[10,"Fn",16177],[6,"ParseAmountError",3057,16159],[5,"InvalidSighashTypeError",14351,16195],[5,"ParseNetworkError",11171,16160],[6,"HexToBytesError",7855,16227],[6,"PrefixedHexError",7677,16228],[5,"Keypair",10743,16186],[5,"Magic",11221,16229],[10,"Signing",12504,16189],[5,"UncompressedPublicKeyError",10743,16194],[6,"FromScriptError",2761,16230],[6,"LeafVersion",14755,16196],[5,"TimeOverflowError",5912,16231],[6,"KeyParseError",16232],[6,"FromSliceError",10743,16194],[10,"Into",16221],[5,"NonStandardSighashTypeError",14351,16195],[6,"ParseError",2761,16230],[6,"ParsePublicKeyError",10743,16194],[6,"FromWifError",10743,16194],[6,"ParseError",16159],[6,"UnprefixedHexError",7677,16228],[5,"RangeTo",16178],[5,"RangeFrom",16178],[5,"RangeToInclusive",16178],[5,"RangeInclusive",16178],[6,"Bound",16178],[5,"RangeFull",16178],[5,"Range",16178],[5,"InstructionIndices",6429,16222],[5,"Instructions",6429,16222],[5,"Box",16233],[5,"Height",5726,16234],[5,"Time",5726,16234],[5,"Iter",7254,16210],[6,"Error",6983,16211],[5,"SecretKey",12504,16186],[6,"P2shError",2761,16230],[5,"Signature",14755,16235],[5,"Signature",7590,16236],[5,"ControlBlock",14755,16196],[5,"BTreeMap",16237],[5,"SighashCache",14351,16195],[5,"Message",12504,16187],[6,"SignError",12042,16215],[6,"PsbtSighashMsg",16223],[6,"SighashError",16223],[6,"SigningKeys",12042,16215],[10,"GetKey",12042,16215],[6,"AddressData",2761,16190],[5,"Fe32",3847,16238],[5,"Hash",16239],[5,"Hash",8137,16240],[5,"OutOfRangeError",16159],[5,"SortKey",10743,16194],[5,"InputsIndexError",7092,16157],[5,"OutputsIndexError",7092,16157],[5,"DefiniteDescriptorKey",16161],[6,"UtxoUpdateError",16223],[6,"OutputUpdateError",16223],[5,"Signature",14320,16241],[5,"UnknownAddressTypeError",2761,16230],[5,"UnknownHrpError",2761,16230],[5,"NetworkValidationError",2761,16230],[5,"InvalidBase58PayloadLengthError",2761,16230],[5,"LegacyAddressTooLongError",2761,16230],[5,"InvalidLegacyPrefixError",2761,16230],[6,"NetworkChecked",2761,16190],[5,"TryFromError",7008,16212],[6,"Infallible",16221],[6,"Error",3139,16242],[5,"DecodeError",4812,16243],[10,"StdError",9802],[10,"CheckedSum",3057,16159],[5,"InputTooLargeError",16159],[5,"MissingDigitsError",16159],[5,"InvalidCharacterError",16159],[5,"TooPreciseError",16159],[10,"SerdeAmount",3118,16244],[10,"SerdeAmountForOpt",3118,16244],[10,"Allocator",16245],[5,"Path",16246],[5,"OsStr",16247],[5,"InvalidCharacterError",3139,16242],[6,"FromSqlError",16156],[5,"PrefilledTransaction",4872,16248],[6,"Inventory",11564,16249],[5,"ShortId",4872,16248],[5,"Address",11221,16250],[5,"AddrV2Message",11379,16250],[5,"Drain",16251],[5,"Drain",16182],[1,"i16"],[1,"i32"],[1,"i8"],[6,"Value",16252],[10,"Copy",16218],[1,"char"],[5,"ExtractIf",16253],[5,"Error",16254],[5,"TooShortError",3508,16242],[5,"IncorrectChecksumError",3508,16242],[5,"DerivationPath",5176,16192],[6,"ChildNumber",5176,16192],[5,"PushBytesBuf",6429,16202],[5,"TaprootMerkleBranch",14755,16255],[5,"BinaryHeap",16256],[5,"CString",16257],[5,"VecDeque",16258],[5,"FromUtf16Error",16182],[5,"FromUtf8Error",16182],[5,"Assets",16259],[6,"Error",5176,16192],[10,"Error",8295,16164],[10,"IntoDeserializer",8295,16164],[5,"StringDeserializer",8479,16260],[10,"FnOnce",16177],[10,"Pattern",16261],[20,"MaybeUninit",16262],[5,"Splice",16263],[6,"SocketAddr",16264],[5,"IntoIter",16265],[6,"Error",16266],[5,"TryReserveError",16267],[5,"IoSlice",16268],[6,"EncodeSliceError",3551,16269],[6,"DecodeError",3551,16270],[6,"DecodeSliceError",3551,16270],[17,"Config"],[17,"DecodeEstimate"],[10,"Engine",3551,16271],[10,"Config",3697,16271],[10,"DecodeEstimate",3697,16271],[5,"Alphabet",3641,16272],[6,"ParseAlphabetError",3641,16272],[5,"Base64Display",3685,16273],[5,"GeneralPurpose",3697,16274],[5,"GeneralPurposeConfig",3697,16274],[6,"DecodePaddingMode",3697,16271],[5,"DecodeMetadata",3697,16271],[5,"DecoderReader",3802,16275],[10,"Read",16268],[10,"StrConsumer",3815,16276],[5,"EncoderWriter",3815,16277],[10,"Write",16268],[5,"EncoderStringWriter",3815,16276],[5,"Hrp",3847,16278],[5,"ByteIter",4603,16278],[10,"ByteIterExt",3847,16279],[5,"BytesToFes",4695,16279],[5,"CharIter",4603,16278],[6,"NoChecksum",3847,16280],[6,"Bech32",3847,16280],[6,"Bech32m",3847,16280],[6,"DecodeError",3847,16281],[6,"EncodeError",3847,16281],[6,"EncodeIoError",3847,16281],[5,"CodeLengthError",4195,16282],[10,"Fe32IterExt",3847,16279],[5,"FesToBytes",4695,16279],[6,"UncheckedHrpstringError",4195,16282],[6,"FromCharError",4558,16238],[5,"LowercaseByteIter",4603,16278],[5,"LowercaseCharIter",4603,16278],[6,"Error",4603,16278],[1,"i128"],[5,"Encoder",4478,16283],[10,"Checksum",3847,16284],[5,"PackedNull",4127,16284],[5,"Engine",4127,16284],[10,"PackedFe32",4127,16284],[5,"HrpFe32Iter",4127,16284],[5,"CheckedHrpstring",4195,16282],[5,"ByteIter",4195,16282],[5,"SegwitHrpstring",4195,16282],[6,"SegwitHrpstringError",4195,16282],[6,"CheckedHrpstringError",4195,16282],[6,"CharError",4195,16282],[6,"ChecksumError",4195,16282],[5,"SegwitCodeLengthError",4195,16282],[6,"PaddingError",4195,16282],[5,"UncheckedHrpstring",4195,16282],[5,"AsciiToFe32Iter",4195,16282],[6,"WitnessLengthError",4764,16285],[5,"Fe32Iter",4195,16282],[5,"ByteIter",4478,16283],[5,"CharIter",4478,16283],[5,"Fe32Iter",4478,16283],[5,"WitnessVersionIter",4478,16283],[6,"TryFromError",4558,16238],[5,"TryFromIntError",16286],[5,"Checksummed",4695,16279],[10,"ExactSizeIterator",16287],[5,"InvalidWitnessVersionError",4764,16285],[6,"EncodeError",4812,16243],[6,"Error",4872,16248],[5,"HeaderAndShortIds",4872,16248],[5,"BlockTransactionsRequest",4872,16248],[5,"TxIndexOutOfRangeError",4872,16248],[5,"BlockTransactions",4872,16248],[6,"HexToArrayError",7855,16227],[5,"BlockFilterWriter",5062,16191],[5,"GcsFilterWriter",5062,16191],[6,"Error",5062,16191],[5,"BlockFilter",5062,16191],[5,"BitStreamWriter",5062,16191],[5,"BlockFilterReader",5062,16191],[5,"GcsFilterReader",5062,16191],[5,"BitStreamReader",5062,16191],[5,"ChainCode",5176,16192],[5,"Fingerprint",5176,16192],[5,"DerivationPathIterator",5176,16192],[5,"Xpriv",5176,16192],[5,"InvalidBase58PayloadLengthError",5176,16192],[6,"KeyRequest",12042,16215],[10,"IntoDerivationPath",5176,16192],[5,"Version",5535,16163],[6,"ValidationError",5535,16163],[5,"ParseHeightError",5726,16234],[5,"ParseTimeError",5726,16234],[5,"ConversionError",5726,16234],[6,"ParseError",16234],[5,"AbsLockTime",16288],[5,"Height",5912,16231],[5,"Time",5912,16231],[5,"DisabledLockTimeError",5912,16207],[5,"IncompatibleHeightError",5912,16207],[5,"IncompatibleTimeError",5912,16207],[5,"PushBytesError",6429,16289],[6,"Error",6429,16193],[6,"UintError",16193],[10,"PushBytesErrorReport",6429,16290],[6,"FromStrError",7008,16212],[6,"TryFromInstructionError",7008,16212],[5,"ParseIntError",12009,16291],[6,"ParseOutPointError",7092,16157],[5,"IndexOutOfBoundsError",7092,16157],[5,"Version",7092,16157],[5,"InputWeightPrediction",7092,16157],[10,"Decodable",7269,16213],[10,"Encodable",7269,16213],[10,"WriteExt",7269,16213],[6,"DecodeError",7269,16292],[10,"IntoDeError",7477,16293],[10,"ReadExt",7269,16213],[5,"CheckedData",7360,16213],[6,"FromHexError",7360,16213],[5,"OddLengthStringError",7855,16227],[5,"Hex",7477,16293],[10,"Case",7512,16294],[10,"EncodeBytes",7477,16293],[5,"DecodeInitError",7512,16294],[5,"DecodeError",7512,16294],[5,"Encoder",7512,16294],[5,"Decoder",7512,16294],[5,"SerializedSignature",7590,16236],[6,"Error",7590,16236],[5,"Iter",16295],[5,"Signature",12905,16296],[5,"MissingPrefixError",7677,16228],[5,"ContainsPrefixError",7677,16228],[17,"Engine"],[17,"Bytes"],[10,"Hash",13432,16170],[10,"HashEngine",13432,16170],[10,"FromHex",7855,16297],[17,"MidState"],[17,"Display"],[10,"DisplayHex",7855,16298],[6,"Case",7855,16299],[10,"Display",16169],[10,"LowerHex",16169],[10,"UpperHex",16169],[5,"InvalidCharError",7855,16227],[5,"InvalidLengthError",8075,16227],[5,"HexToBytesIter",7855,16300],[5,"BytesToHexIter",7855,16300],[5,"HexDigitsIter",16300],[10,"DoubleEndedIterator",16301],[10,"FusedIterator",16302],[5,"BufEncoder",8019,16303],[5,"DisplayByteSlice",8037,16298],[5,"DisplayArray",8037,16298],[5,"HashEngine",8137,16240],[17,"Ok"],[17,"SerializeSeq"],[17,"SerializeTuple"],[17,"SerializeTupleStruct"],[17,"SerializeTupleVariant"],[17,"SerializeMap"],[17,"SerializeStruct"],[17,"SerializeStructVariant"],[10,"Error",9802,16179],[10,"SerializeSeq",9802,16179],[10,"SerializeTuple",9802,16179],[10,"SerializeTupleStruct",9802,16179],[10,"SerializeTupleVariant",9802,16179],[10,"SerializeMap",9802,16179],[10,"SerializeStruct",9802,16179],[10,"SerializeStructVariant",9802,16179],[10,"Visitor",8295,16164],[1,"f32"],[5,"IgnoredAny",8295,16304],[6,"Unexpected",8295,16164],[17,"Value"],[10,"DeserializeSeed",8295,16164],[10,"Expected",8295,16164],[17,"Deserializer"],[10,"VariantAccess",8295,16164],[10,"SeqAccess",8295,16164],[10,"MapAccess",8295,16164],[5,"Request",16305],[17,"Variant"],[10,"EnumAccess",8295,16164],[5,"UnitDeserializer",8479,16260],[5,"U32Deserializer",8479,16260],[5,"StrDeserializer",8479,16260],[5,"BorrowedStrDeserializer",8479,16260],[5,"CowStrDeserializer",8479,16260],[5,"BytesDeserializer",8479,16260],[5,"BorrowedBytesDeserializer",8479,16260],[5,"MapDeserializer",8479,16260],[5,"Error",8479,16260],[5,"BoolDeserializer",8479,16260],[5,"I8Deserializer",8479,16260],[5,"I16Deserializer",8479,16260],[5,"I32Deserializer",8479,16260],[5,"I64Deserializer",8479,16260],[5,"I128Deserializer",8479,16260],[5,"IsizeDeserializer",8479,16260],[5,"U8Deserializer",8479,16260],[5,"U16Deserializer",8479,16260],[5,"U64Deserializer",8479,16260],[5,"U128Deserializer",8479,16260],[5,"UsizeDeserializer",8479,16260],[5,"F32Deserializer",8479,16260],[5,"F64Deserializer",8479,16260],[5,"CharDeserializer",8479,16260],[5,"SeqDeserializer",8479,16260],[5,"SeqAccessDeserializer",8479,16260],[5,"MapAccessDeserializer",8479,16260],[5,"EnumAccessDeserializer",8479,16260],[1,"isize"],[5,"Impossible",9802,16306],[5,"Source",16305],[10,"SerdeHash",9932,16307],[5,"Hash",9937,16308],[5,"HashEngine",9937,16308],[5,"Midstate",10007,16148],[10,"Tag",10174,16201],[5,"Hash",10221,16309],[5,"HashEngine",10221,16309],[5,"Hash",10277,16310],[5,"HashEngine",10277,16310],[5,"Hash",10347,16311],[5,"HashEngine",10347,16311],[5,"Hash",10403,16312],[5,"State",10403,16312],[5,"HashEngine",10403,16312],[6,"ErrorKind",10495,16219],[5,"FromStd",10495,16313],[10,"BufRead",16268],[5,"ToStd",10495,16313],[5,"Take",10495,16217],[5,"Cursor",10495,16217],[5,"Sink",10495,16217],[5,"Keypair",13124,16198],[10,"Context",12504,16189],[5,"TweakedKeypair",10743,16194],[6,"ParseCompressedPublicKeyError",10743,16194],[5,"InvalidBase58PayloadLengthError",10743,16194],[5,"InvalidAddressVersionError",10743,16194],[5,"Context",13124,16198],[5,"NonNull",16314],[17,"TweakedAux"],[17,"TweakedKey"],[10,"TapTweak",10743,16194],[6,"All",12504,16315],[5,"DisplaySecret",16316],[5,"InvalidParityValue",12504,16186],[5,"AllPreallocated",12504,16189],[5,"ManuallyDrop",16317],[5,"SignOnlyPreallocated",12504,16189],[5,"VerifyOnlyPreallocated",12504,16189],[10,"Rng",13546,16318],[5,"AlignedType",13402,16319],[10,"PreallocatedContext",12504,16189],[5,"RecoverableSignature",12905,16320],[10,"CryptoRng",13546,16321],[6,"SignOnly",12504,16315],[6,"VerifyOnly",12504,16315],[5,"PartialMerkleTree",11113,16214],[5,"UnknownChainHashError",11171,16160],[5,"ServiceFlags",11221,16229],[5,"ParseMagicError",11221,16229],[5,"UnknownMagicError",11221,16229],[6,"AddrV2",11379,16250],[5,"CommandString",11434,16322],[5,"CommandStringError",11434,16322],[5,"RawNetworkMessage",11434,16322],[6,"NetworkMessage",11434,16322],[5,"GetBlocksMessage",11564,16249],[5,"GetHeadersMessage",11564,16249],[5,"FilterLoad",11642,16323],[6,"BloomFlags",11642,16323],[5,"FilterAdd",11642,16323],[5,"SendCmpct",11706,16324],[5,"CmpctBlock",11706,16324],[5,"GetBlockTxn",11706,16324],[5,"BlockTxn",11706,16324],[5,"GetCFilters",11799,16325],[5,"CFilter",11799,16325],[5,"GetCFHeaders",11799,16325],[5,"CFHeaders",11799,16325],[5,"GetCFCheckpt",11799,16325],[5,"CFCheckpt",11799,16325],[5,"VersionMessage",11931,16326],[6,"RejectReason",11931,16326],[5,"Reject",11931,16326],[5,"ParseIntError",16286],[5,"Output",12042,16327],[6,"GetKeyError",12042,16215],[6,"OutputType",12042,16215],[6,"SigningAlgorithm",12042,16215],[6,"IndexOutOfBoundsError",12042,16215],[5,"PsbtSighashType",12042,16328],[5,"Input",12042,16328],[6,"PsbtParseError",12042,16329],[6,"TaprootError",14351,16195],[6,"P2wpkhError",14351,16195],[6,"ConversionError",16161],[5,"ProprietaryKey",12433,16330],[10,"From",16221],[5,"Key",12433,16330],[5,"Pair",12433,16330],[5,"PublicKey",13124,16198],[10,"ThirtyTwoByteHash",12504,16187],[5,"OutOfRangeError",14300,16188],[5,"ElligatorSwift",13049,16331],[5,"SharedSecret",12874,16332],[5,"RecoverableSignature",13370,16333],[5,"Signature",13124,16198],[5,"SerializedSignature",12905,16334],[5,"RecoveryId",12905,16320],[5,"IntoIter",13027,16335],[5,"ElligatorSwiftSharedSecret",13049,16331],[6,"ElligatorSwiftParty",13049,16331],[17,"Target"],[10,"CPtr",13124,16198],[5,"ElligatorSwift",13124,16198],[6,"c_void",13402,16336],[1,"fn"],[5,"SchnorrSigExtraParams",13124,16198],[5,"Hmac",13432,16337],[5,"HmacEngine",13432,16337],[10,"FromStr",16338],[5,"Error",13546,16339],[5,"NonZero",16340],[10,"Fill",13546,16318],[10,"RngCore",13546,16321],[5,"Error",16341],[17,"Seed"],[10,"SeedableRng",13546,16321],[10,"Default",16342],[10,"AsMut",16221],[10,"SampleUniform",13873,16343],[10,"SampleRange",13873,16343],[10,"Distribution",14035,16344],[5,"DistIter",13598,16344],[5,"ThreadRng",14079,16345],[10,"DistString",13598,16344],[5,"Alphanumeric",13598,16346],[5,"Standard",13598,16347],[5,"Bernoulli",13598,16348],[6,"BernoulliError",13598,16348],[5,"OpenClosed01",13598,16349],[5,"Open01",13598,16349],[5,"Slice",13598,16350],[5,"WeightedIndex",13598,16351],[6,"WeightedError",13598,16351],[5,"Uniform",13598,16343],[5,"DistMap",13598,16344],[5,"EmptySlice",16350],[10,"AddAssign",16352],[10,"SampleBorrow",13873,16343],[5,"Wrapping",16353],[10,"SubAssign",16352],[5,"UniformInt",13873,16343],[5,"UniformChar",13873,16343],[5,"UniformFloat",13873,16343],[5,"UniformDuration",13873,16343],[17,"X"],[10,"UniformSampler",13873,16343],[5,"Duration",16354],[5,"WeightedIndex",14023,16355],[10,"Weight",14023,16355],[10,"SliceRandom",14211,16356],[10,"IteratorRandom",14211,16356],[5,"SliceChooseIter",14211,16356],[5,"OsRng",14079,16357],[5,"StdRng",14079,16358],[5,"ReseedingRng",14142,16359],[10,"BlockRngCore",16360],[5,"ReadRng",14142,16361],[5,"ReadError",14142,16361],[5,"StepRng",14190,16362],[10,"Index",16363],[6,"IndexVec",14243,16364],[6,"IndexVecIntoIter",14243,16364],[6,"IndexVecIter",14243,16364],[5,"Annex",14351,16195],[6,"Prevouts",14351,16195],[5,"PrevoutsSizeError",14351,16195],[5,"PrevoutsKindError",14351,16195],[6,"PrevoutsIndexError",14351,16195],[5,"SighashTypeParseError",14351,16195],[5,"SingleMissingOutputError",14351,16195],[6,"AnnexError",14351,16195],[6,"SigningDataError",14351,16195],[6,"EncodeSigningDataResult",14351,16195],[10,"BorrowMut",16166],[6,"MessageSignatureError",14700,16365],[5,"MessageSignature",14700,16365],[5,"TaprootBuilder",14755,16196],[6,"TaprootBuilderError",14755,16196],[6,"TapLeaf",14755,16196],[6,"SigFromSliceError",14755,16235],[6,"IncompleteBuilderError",14755,16196],[6,"HiddenNodesError",14755,16196],[5,"TapTree",14755,16196],[5,"NodeInfo",14755,16196],[5,"ScriptLeaf",14755,16196],[5,"FutureLeafVersion",14755,16196],[6,"TaprootError",14755,16196],[5,"LeafNodes",14755,16196],[5,"ScriptLeaves",14755,16196],[5,"BTreeSet",16366],[5,"SerializedSignature",15420,16367],[5,"IntoIter",15394,16255],[5,"IntoIter",15420,16368],[5,"IndexedTxGraph",15475],[5,"ChangeSet",15475],[10,"Indexer",15526],[5,"Arc",16369],[5,"ChangeSet",15535],[5,"ChangeSet",15959],[17,"ChangeSet"],[5,"KeychainTxOutIndex",15535],[6,"InsertDescriptorError",15535],[5,"Transaction",16370],[8,"Indexed",0,16371],[8,"KeychainIndexed",0,16371],[10,"SyncRequestBuilderExt",15535],[10,"FullScanRequestBuilderExt",15535],[5,"SpkTxOutIndex",15642],[5,"LocalChain",15679],[5,"ChangeSet",15679],[5,"MissingGenesisError",15679],[5,"CannotConnectError",15679],[6,"ApplyHeaderError",15679],[5,"AlterCheckPointError",15679],[5,"SyncRequestBuilder",15813,16372],[5,"SyncRequest",15813,16372],[5,"FullScanRequestBuilder",15813,16372],[5,"FullScanRequest",15813,16372],[6,"SyncItem",15813,16372],[5,"SyncProgress",15813,16372],[5,"SyncResponse",15813,16372],[5,"FullScanResponse",15813,16372],[10,"Any",16183],[10,"Send",16218],[17,"IntoIter"],[6,"CalculateFeeError",15959],[5,"TxNode",15959],[5,"CanonicalTx",15959],[5,"TxAncestors",15959],[5,"TxDescendants",15959],[5,"HashSet",16373],[15,"Confirmed",356],[15,"Unconfirmed",356],[15,"P2pkh",3032],[15,"P2sh",3032],[15,"Segwit",3032],[8,"ExtendedPubKey",5176],[8,"ExtendendPubKey",5176],[8,"ExtendedPrivKey",5176],[8,"ExtendendPrivKey",5176],[15,"Normal",5522],[15,"Hardened",5522],[15,"InvalidChecksum",7453],[15,"OversizedVectorAllocation",7453],[10,"ByteDecoder",7477],[10,"ByteEncoder",7477],[5,"With",7477],[6,"Lower",7512],[6,"Upper",7512],[5,"HmacMidState",8124],[8,"Result",10495],[15,"Unknown",11562],[15,"Unknown",11640],[15,"UnexpectedUnsignedTx",12420],[15,"InvalidPreimageHashPair",12420],[15,"AbsurdFeeRate",12425],[15,"SendingTooMuch",12425],[15,"MissingInputValue",12425],[15,"Inputs",12429],[15,"TxInput",12429],[8,"NonceFn",13124],[8,"EcdhHashFn",13124],[8,"SchnorrNonceFn",13124],[8,"EllswiftEcdhHashFn",13124],[15,"DescriptorAlreadyAssigned",15638],[15,"KeychainAlreadyAssigned",15638]],"r":[[0,16146],[2,16153],[3,16144],[4,16147],[5,16171],[6,16152],[7,16149],[8,16149],[9,16147],[11,16145],[12,16145],[14,16152],[16,16371],[17,15475],[18,15526],[19,16371],[20,16176],[21,16153],[22,15959],[23,16146],[24,16150],[237,15526],[267,16371],[268,15526],[359,16190],[360,16190],[365,16159],[371,16163],[372,16163],[374,16185],[375,16194],[379,16159],[382,16195],[383,16208],[384,16191],[385,16191],[386,16190],[387,16195],[409,16214],[415,16160],[416,16160],[425,16209],[426,16157],[433,16194],[434,16215],[435,16194],[436,16194],[442,16197],[443,16158],[444,16193],[445,16195],[446,16157],[447,16159],[453,16196],[454,16196],[455,16196],[456,16196],[457,16195],[458,16195],[459,16195],[460,16196],[461,16196],[462,16185],[467,16157],[468,16157],[469,16163],[470,16157],[471,16157],[489,16213],[491,16194],[492,16193],[493,16184],[494,16210],[495,16163],[496,16163],[497,16211],[498,16212],[499,16185],[500,16157],[501,16192],[502,16186],[518,16374],[539,16374],[643,16374],[644,16374],[645,16374],[648,16374],[985,16374],[1110,16375],[1310,16374],[1873,16374],[2011,16375],[2023,16374],[2039,16374],[2064,16374],[2086,16374],[2139,16374],[2141,16374],[2157,16374],[2246,16375],[2250,16374],[2268,16374],[2761,16190],[2762,16190],[2763,16190],[2767,16230],[2770,16230],[2772,16230],[2773,16190],[2775,16230],[2777,16190],[2778,16190],[2779,16190],[2781,16230],[2786,16230],[2790,16230],[2794,16230],[2796,16230],[2889,16190],[3038,16230],[3040,16230],[3042,16230],[3044,16230],[3046,16230],[3047,16230],[3048,16230],[3049,16230],[3051,16230],[3057,16159],[3061,16159],[3062,16159],[3063,16159],[3072,16159],[3075,16159],[3103,16159],[3118,16244],[3119,16244],[3120,16244],[3121,16244],[3129,16376],[3130,16376],[3131,16376],[3132,16377],[3133,16377],[3134,16378],[3135,16378],[3136,16378],[3137,16379],[3138,16379],[3140,16242],[3142,16242],[3143,16182],[3145,16224],[3237,16380],[3238,16380],[3263,16380],[3264,16380],[3265,16380],[3287,16380],[3509,16242],[3511,16242],[3512,16242],[3514,16242],[3552,16270],[3555,16270],[3556,16269],[3557,16271],[3564,16381],[3578,16270],[3580,16270],[3581,16270],[3582,16270],[3586,16270],[3587,16381],[3588,16269],[3590,16269],[3591,16269],[3592,16269],[3595,16269],[3596,16381],[3619,16381],[3620,16381],[3640,16381],[3641,16272],[3642,16272],[3643,16272],[3644,16272],[3646,16272],[3648,16272],[3650,16272],[3651,16272],[3685,16273],[3697,16271],[3699,16271],[3701,16271],[3702,16271],[3703,16271],[3704,16274],[3705,16274],[3750,16271],[3779,16274],[3780,16274],[3781,16274],[3782,16274],[3783,16274],[3784,16274],[3785,16274],[3786,16274],[3793,16271],[3802,16275],[3815,16276],[3816,16277],[3817,16276],[3848,16280],[3849,16280],[3850,16279],[3854,16284],[3857,16281],[3859,16281],[3860,16281],[3862,16238],[3863,16279],[3868,16278],[3875,16280],[3946,16281],[3952,16281],[3953,16281],[3954,16281],[3955,16281],[3956,16281],[3957,16281],[3958,16281],[3959,16281],[3960,16281],[3961,16281],[4015,16281],[4044,16281],[4046,16281],[4113,16278],[4114,16278],[4115,16278],[4116,16278],[4117,16280],[4118,16280],[4119,16280],[4120,16280],[4121,16280],[4122,16280],[4123,16280],[4124,16280],[4125,16280],[4126,16280],[4129,16284],[4130,16284],[4132,16284],[4135,16284],[4136,16284],[4195,16282],[4196,16282],[4198,16282],[4199,16282],[4200,16282],[4203,16282],[4205,16282],[4206,16282],[4218,16282],[4220,16282],[4221,16282],[4222,16282],[4226,16282],[4227,16282],[4478,16283],[4479,16283],[4480,16283],[4481,16283],[4482,16283],[4558,16238],[4559,16238],[4564,16238],[4603,16278],[4604,16278],[4605,16278],[4606,16278],[4608,16278],[4609,16278],[4611,16278],[4612,16278],[4615,16278],[4695,16279],[4696,16279],[4697,16279],[4698,16279],[4699,16279],[4765,16285],[4766,16285],[4769,16285],[4770,16285],[4771,16285],[4794,16285],[4795,16285],[4808,16285],[4809,16285],[4812,16243],[4813,16243],[4816,16285],[4817,16285],[4828,16243],[4829,16243],[4830,16243],[4831,16243],[4832,16243],[4833,16243],[4834,16243],[4835,16243],[4836,16243],[4837,16243],[4838,16243],[4872,16248],[4873,16248],[4874,16248],[4875,16248],[4877,16248],[4878,16248],[4879,16248],[5062,16191],[5063,16191],[5064,16191],[5065,16191],[5066,16191],[5067,16191],[5068,16191],[5069,16191],[5070,16191],[5071,16191],[5178,16192],[5179,16192],[5180,16192],[5181,16192],[5182,16192],[5183,16192],[5184,16192],[5185,16192],[5186,16192],[5187,16192],[5190,16192],[5192,16192],[5197,16192],[5202,16192],[5203,16192],[5204,16192],[5524,16208],[5525,16184],[5526,16382],[5527,16382],[5528,16382],[5529,16382],[5530,16382],[5531,16382],[5532,16382],[5533,16382],[5534,16382],[5537,16163],[5538,16163],[5539,16163],[5540,16163],[5547,16163],[5550,16163],[5551,16163],[5552,16163],[5553,16163],[5656,16205],[5657,16205],[5658,16205],[5659,16205],[5660,16205],[5661,16205],[5662,16205],[5663,16205],[5664,16205],[5666,16205],[5667,16205],[5669,16205],[5670,16205],[5674,16205],[5705,16205],[5723,16208],[5724,16383],[5725,16383],[5727,16234],[5728,16234],[5729,16234],[5730,16206],[5735,16234],[5736,16234],[5739,16234],[5913,16207],[5914,16231],[5915,16207],[5916,16207],[5917,16207],[5923,16231],[5925,16231],[6122,16209],[6123,16209],[6127,16209],[6128,16209],[6129,16209],[6130,16209],[6131,16209],[6132,16209],[6139,16209],[6173,16384],[6174,16384],[6175,16384],[6176,16384],[6177,16384],[6178,16384],[6179,16384],[6180,16384],[6181,16384],[6182,16384],[6183,16384],[6184,16384],[6185,16384],[6186,16384],[6187,16384],[6188,16384],[6189,16384],[6190,16384],[6191,16384],[6192,16384],[6193,16384],[6194,16384],[6195,16384],[6196,16384],[6197,16384],[6198,16384],[6199,16384],[6200,16384],[6201,16384],[6202,16384],[6203,16384],[6204,16384],[6205,16384],[6206,16384],[6207,16384],[6208,16384],[6209,16384],[6210,16384],[6211,16384],[6212,16384],[6213,16384],[6214,16384],[6215,16384],[6216,16384],[6217,16384],[6218,16384],[6219,16384],[6220,16384],[6221,16384],[6222,16384],[6223,16384],[6224,16384],[6225,16384],[6226,16384],[6227,16384],[6228,16384],[6229,16384],[6230,16384],[6231,16384],[6232,16384],[6233,16384],[6234,16384],[6235,16384],[6236,16384],[6237,16384],[6238,16384],[6239,16384],[6240,16384],[6241,16384],[6242,16384],[6243,16384],[6244,16384],[6245,16384],[6246,16384],[6247,16384],[6248,16384],[6249,16384],[6250,16384],[6251,16384],[6252,16384],[6253,16384],[6254,16384],[6255,16384],[6256,16384],[6257,16384],[6258,16384],[6259,16384],[6260,16384],[6261,16384],[6262,16384],[6263,16384],[6264,16384],[6265,16384],[6266,16384],[6267,16384],[6268,16384],[6269,16384],[6270,16384],[6271,16384],[6272,16384],[6273,16384],[6274,16384],[6275,16384],[6276,16384],[6277,16384],[6278,16384],[6279,16384],[6280,16384],[6281,16384],[6282,16384],[6283,16384],[6284,16384],[6285,16384],[6286,16384],[6287,16384],[6288,16384],[6289,16384],[6290,16384],[6291,16384],[6292,16384],[6293,16384],[6294,16384],[6295,16384],[6296,16384],[6297,16384],[6298,16384],[6299,16384],[6300,16384],[6301,16384],[6302,16384],[6303,16384],[6304,16384],[6305,16384],[6306,16384],[6307,16384],[6308,16384],[6309,16384],[6310,16384],[6311,16384],[6312,16384],[6313,16384],[6314,16384],[6315,16384],[6316,16384],[6317,16384],[6318,16384],[6319,16384],[6320,16384],[6321,16384],[6322,16384],[6323,16384],[6324,16384],[6325,16384],[6326,16384],[6327,16384],[6328,16384],[6329,16384],[6330,16384],[6331,16384],[6332,16384],[6333,16384],[6334,16384],[6335,16384],[6336,16384],[6337,16384],[6338,16384],[6339,16384],[6340,16384],[6341,16384],[6342,16384],[6343,16384],[6344,16384],[6345,16384],[6346,16384],[6347,16384],[6348,16384],[6349,16384],[6350,16384],[6351,16384],[6352,16384],[6353,16384],[6354,16384],[6355,16384],[6356,16384],[6357,16384],[6358,16384],[6359,16384],[6360,16384],[6361,16384],[6362,16384],[6363,16384],[6364,16384],[6365,16384],[6366,16384],[6367,16384],[6368,16384],[6369,16384],[6370,16384],[6371,16384],[6372,16384],[6373,16384],[6374,16384],[6375,16384],[6376,16384],[6377,16384],[6378,16384],[6379,16384],[6380,16384],[6381,16384],[6382,16384],[6383,16384],[6384,16384],[6385,16384],[6386,16384],[6387,16384],[6388,16384],[6389,16384],[6390,16384],[6391,16384],[6392,16384],[6393,16384],[6394,16384],[6395,16384],[6396,16384],[6397,16384],[6398,16384],[6399,16384],[6400,16384],[6401,16384],[6402,16384],[6403,16384],[6404,16384],[6405,16384],[6406,16384],[6407,16384],[6408,16384],[6409,16384],[6410,16384],[6411,16384],[6412,16384],[6413,16384],[6414,16384],[6415,16384],[6416,16384],[6417,16384],[6418,16384],[6419,16384],[6420,16384],[6421,16384],[6422,16384],[6423,16384],[6424,16384],[6425,16384],[6426,16384],[6427,16384],[6428,16384],[6429,16204],[6430,16197],[6432,16193],[6433,16222],[6434,16222],[6435,16222],[6439,16202],[6441,16202],[6442,16289],[6443,16290],[6444,16197],[6445,16158],[6446,16193],[6449,16193],[6917,16193],[6918,16193],[6919,16193],[6980,16193],[6981,16193],[6982,16193],[6983,16211],[6986,16211],[6987,16211],[6988,16211],[7009,16212],[7012,16212],[7013,16212],[7032,16212],[7093,16157],[7094,16157],[7095,16157],[7097,16157],[7098,16157],[7104,16157],[7105,16157],[7108,16157],[7109,16157],[7110,16157],[7111,16157],[7113,16157],[7116,16157],[7145,16157],[7200,16157],[7201,16157],[7252,16184],[7253,16184],[7254,16210],[7255,16210],[7271,16213],[7272,16292],[7273,16213],[7276,16203],[7278,16213],[7284,16213],[7300,16213],[7301,16213],[7313,16292],[7332,16292],[7347,16292],[7348,16213],[7360,16213],[7361,16213],[7363,16213],[7364,16213],[7365,16213],[7368,16213],[7373,16213],[7375,16213],[7376,16213],[7392,16213],[7393,16213],[7394,16213],[7434,16213],[7435,16213],[7457,16203],[7458,16203],[7459,16203],[7460,16203],[7461,16203],[7462,16203],[7463,16203],[7477,16293],[7478,16293],[7481,16293],[7483,16293],[7485,16293],[7486,16293],[7499,16293],[7512,16294],[7513,16294],[7514,16294],[7515,16294],[7516,16294],[7517,16294],[7518,16294],[7591,16236],[7594,16236],[7596,16236],[7678,16228],[7680,16228],[7683,16291],[7684,16228],[7685,16228],[7760,16163],[7761,16191],[7762,16191],[7763,16163],[7764,16157],[7765,16163],[7766,16163],[7767,16157],[7772,16170],[7773,16170],[7774,16170],[7775,16337],[7776,16337],[7781,16170],[7782,16170],[7788,16170],[7790,16170],[7791,16170],[7792,16170],[7796,16170],[7797,16170],[7798,16170],[7799,16170],[7800,16170],[7801,16170],[7802,16170],[7803,16170],[7804,16170],[7805,16170],[7806,16170],[7807,16170],[7809,16385],[7810,16200],[7855,16300],[7856,16299],[7858,16298],[7860,16297],[7861,16300],[7862,16227],[7863,16227],[7864,16300],[7867,16227],[7871,16227],[7889,16299],[7901,16299],[7917,16299],[7927,16299],[7943,16299],[7966,16299],[7967,16299],[7975,16299],[8018,16299],[8019,16303],[8038,16298],[8039,16298],[8040,16298],[8055,16299],[8059,16299],[8075,16227],[8076,16227],[8079,16227],[8081,16227],[8083,16227],[8105,16297],[8106,16227],[8107,16227],[8114,16298],[8116,16297],[8124,16337],[8125,16337],[8126,16337],[8137,16240],[8138,16240],[8208,16164],[8209,16386],[8210,16164],[8214,16179],[8215,16386],[8223,16179],[8227,16387],[8260,16387],[8263,16387],[8298,16164],[8299,16164],[8300,16164],[8301,16164],[8304,16164],[8305,16164],[8311,16164],[8313,16304],[8314,16164],[8316,16164],[8322,16164],[8328,16164],[8335,16164],[8336,16164],[8432,16164],[8479,16260],[8480,16260],[8481,16260],[8482,16260],[8483,16260],[8484,16260],[8485,16260],[8486,16260],[8487,16260],[8488,16260],[8489,16260],[8490,16260],[8491,16260],[8492,16260],[8493,16260],[8494,16260],[8495,16260],[8496,16260],[8497,16260],[8498,16260],[8499,16260],[8500,16260],[8501,16260],[8502,16260],[8503,16260],[8504,16260],[8505,16260],[8506,16260],[8507,16260],[9802,16179],[9811,16306],[9820,16179],[9821,16179],[9823,16179],[9825,16179],[9827,16179],[9829,16179],[9831,16179],[9833,16179],[9835,16179],[9931,16388],[9933,16307],[9937,16308],[9938,16308],[10007,16148],[10008,16148],[10009,16148],[10121,16199],[10174,16201],[10175,16201],[10221,16309],[10222,16309],[10277,16310],[10278,16310],[10347,16311],[10348,16311],[10403,16312],[10404,16312],[10405,16312],[10499,16217],[10503,16217],[10505,16219],[10506,16219],[10507,16313],[10516,16217],[10517,16217],[10518,16217],[10519,16217],[10521,16313],[10524,16217],[10611,16217],[10612,16217],[10615,16217],[10696,16217],[10744,16194],[10747,16194],[10748,16194],[10751,16194],[10753,16194],[10758,16186],[10760,16186],[10761,16194],[10762,16194],[10763,16194],[10764,16194],[10765,16194],[10766,16187],[10770,16194],[10771,16194],[10774,16194],[10775,16194],[10776,16194],[10777,16194],[10778,16194],[10779,16189],[10780,16194],[10781,16186],[11116,16214],[11117,16214],[11123,16214],[11131,16389],[11132,16389],[11173,16160],[11174,16160],[11175,16160],[11181,16160],[11182,16160],[11219,16390],[11220,16390],[11221,16250],[11226,16229],[11231,16229],[11232,16229],[11235,16229],[11239,16229],[11242,16229],[11332,16229],[11333,16229],[11334,16229],[11335,16229],[11336,16229],[11337,16229],[11379,16250],[11380,16250],[11381,16250],[11443,16322],[11444,16322],[11459,16322],[11460,16322],[11463,16322],[11467,16322],[11567,16249],[11568,16249],[11569,16249],[11643,16323],[11644,16323],[11645,16323],[11706,16324],[11707,16324],[11708,16324],[11709,16324],[11799,16325],[11800,16325],[11801,16325],[11802,16325],[11803,16325],[11804,16325],[11939,16326],[11940,16326],[11941,16326],[12009,16291],[12030,16391],[12031,16391],[12032,16391],[12033,16391],[12034,16391],[12035,16391],[12036,16391],[12037,16391],[12038,16391],[12039,16185],[12040,16185],[12041,16185],[12052,16216],[12054,16215],[12056,16215],[12057,16215],[12059,16215],[12060,16328],[12078,16215],[12093,16327],[12094,16215],[12097,16215],[12099,16329],[12100,16328],[12110,16215],[12111,16215],[12112,16215],[12113,16215],[12114,16215],[12310,16215],[12314,16215],[12433,16330],[12434,16330],[12435,16330],[12436,16330],[12504,16315],[12505,16189],[12506,16189],[12508,16187],[12514,16186],[12523,16186],[12525,16187],[12529,16186],[12530,16189],[12531,16186],[12532,16188],[12533,16187],[12534,16186],[12535,16315],[12536,16189],[12537,16189],[12538,16187],[12539,16189],[12540,16315],[12541,16189],[12542,16186],[12618,16187],[12629,16187],[12630,16187],[12631,16187],[12736,16187],[12737,16187],[12776,16187],[12777,16187],[12858,16392],[12859,16392],[12860,16392],[12861,16392],[12862,16392],[12863,16392],[12864,16392],[12865,16392],[12866,16392],[12867,16392],[12868,16392],[12869,16392],[12870,16392],[12871,16392],[12872,16392],[12873,16392],[12874,16332],[12899,16332],[12905,16320],[12906,16320],[12907,16334],[12908,16296],[12999,16296],[13027,16335],[13028,16334],[13051,16331],[13052,16331],[13053,16331],[13124,16198],[13125,16198],[13126,16198],[13127,16198],[13128,16198],[13129,16198],[13130,16198],[13135,16198],[13136,16198],[13137,16198],[13138,16198],[13139,16198],[13140,16198],[13141,16198],[13142,16198],[13143,16198],[13149,16198],[13203,16198],[13247,16198],[13248,16198],[13267,16198],[13273,16198],[13274,16198],[13275,16198],[13276,16198],[13277,16198],[13278,16198],[13279,16198],[13280,16198],[13281,16198],[13282,16198],[13283,16198],[13284,16198],[13285,16198],[13286,16198],[13287,16198],[13288,16198],[13289,16198],[13290,16198],[13291,16198],[13292,16198],[13293,16198],[13294,16198],[13295,16198],[13296,16198],[13297,16198],[13298,16198],[13299,16198],[13300,16198],[13301,16198],[13302,16198],[13303,16198],[13304,16198],[13305,16198],[13306,16198],[13307,16198],[13308,16198],[13309,16198],[13310,16198],[13311,16198],[13312,16198],[13313,16198],[13314,16198],[13315,16198],[13316,16198],[13317,16198],[13318,16198],[13319,16198],[13320,16198],[13321,16198],[13322,16198],[13323,16198],[13324,16198],[13325,16198],[13326,16198],[13327,16198],[13328,16198],[13329,16198],[13358,16198],[13370,16333],[13392,16333],[13393,16333],[13394,16333],[13395,16333],[13396,16333],[13402,16319],[13408,16319],[13409,16319],[13410,16319],[13411,16319],[13412,16336],[13421,16319],[13436,16170],[13437,16170],[13438,16170],[13439,16337],[13440,16337],[13454,16170],[13503,16170],[13504,16170],[13522,16170],[13524,16170],[13547,16321],[13548,16339],[13549,16318],[13551,16318],[13552,16321],[13554,16321],[13558,16393],[13578,16393],[13579,16393],[13582,16393],[13586,16393],[13589,16345],[13599,16346],[13600,16348],[13601,16348],[13602,16344],[13603,16344],[13604,16344],[13605,16344],[13609,16349],[13610,16349],[13611,16350],[13612,16347],[13614,16343],[13615,16351],[13616,16351],[13858,16347],[13872,16347],[13873,16343],[13874,16343],[13875,16343],[13877,16343],[13878,16343],[13879,16343],[13880,16343],[13881,16343],[13882,16343],[14020,16351],[14021,16351],[14022,16394],[14023,16355],[14024,16355],[14035,16321],[14036,16344],[14038,16356],[14039,16318],[14040,16321],[14042,16321],[14043,16356],[14044,16358],[14045,16345],[14069,16393],[14076,16345],[14079,16357],[14080,16358],[14081,16345],[14082,16395],[14117,16395],[14142,16361],[14143,16361],[14144,16359],[14190,16362],[14212,16356],[14213,16356],[14214,16356],[14229,16356],[14243,16364],[14244,16364],[14245,16364],[14280,16364],[14281,16364],[14300,16188],[14301,16188],[14320,16241],[14356,16195],[14357,16195],[14359,16195],[14361,16195],[14367,16195],[14369,16195],[14370,16195],[14377,16195],[14378,16195],[14380,16195],[14382,16195],[14384,16195],[14385,16195],[14386,16195],[14389,16195],[14391,16195],[14392,16195],[14396,16195],[14399,16195],[14400,16195],[14401,16195],[14402,16195],[14700,16396],[14704,16365],[14705,16365],[14740,16396],[14755,16196],[14759,16196],[14761,16196],[14764,16196],[14773,16196],[14774,16196],[14775,16196],[14776,16196],[14781,16196],[14782,16196],[14784,16235],[14786,16235],[14787,16196],[14788,16196],[14789,16196],[14790,16196],[14791,16196],[14792,16196],[14793,16196],[14794,16196],[14795,16196],[14796,16196],[14797,16196],[14798,16196],[14800,16196],[14801,16196],[14802,16196],[14803,16196],[14804,16196],[14805,16196],[14806,16255],[14807,16196],[15214,16196],[15262,16196],[15394,16255],[15395,16255],[15420,16368],[15421,16367],[15685,16149],[15686,16149],[15813,16372],[15814,16372],[15815,16372],[15818,16372],[15819,16372],[15820,16372],[15821,16372],[15822,16372],[15972,16150]],"b":[[34,"impl-AsRef%3C%5Bu8;+%3C%24hash+as+%24crate::Hash%3E::LEN%5D%3E-for-DescriptorId"],[35,"impl-AsRef%3C%5Bu8%5D%3E-for-DescriptorId"],[96,"impl-FromSql-for-Impl%3CDescriptorId%3E"],[97,"impl-FromSql-for-Impl%3CTxid%3E"],[98,"impl-FromSql-for-Impl%3CScriptBuf%3E"],[99,"impl-FromSql-for-Impl%3CAmount%3E"],[100,"impl-FromSql-for-Impl%3CNetwork%3E"],[101,"impl-FromSql-for-Impl%3CDescriptor%3CDescriptorPublicKey%3E%3E"],[102,"impl-FromSql-for-Impl%3CTransaction%3E"],[103,"impl-FromSql-for-Impl%3CBlockHash%3E"],[155,"impl-Display-for-Balance"],[156,"impl-Debug-for-Balance"],[160,"impl-UpperHex-for-DescriptorId"],[161,"impl-Debug-for-DescriptorId"],[162,"impl-Display-for-DescriptorId"],[163,"impl-LowerHex-for-DescriptorId"],[166,"impl-From%3C(u32,+BlockHash)%3E-for-BlockId"],[167,"impl-From%3CTxPosInBlock%3C\'b%3E%3E-for-BlockId"],[168,"impl-From%3C(%26u32,+%26BlockHash)%3E-for-BlockId"],[282,"impl-ToSql-for-Impl%3CBlockHash%3E"],[283,"impl-ToSql-for-Impl%3CTransaction%3E"],[284,"impl-ToSql-for-Impl%3CDescriptorId%3E"],[285,"impl-ToSql-for-Impl%3CTxid%3E"],[286,"impl-ToSql-for-Impl%3CScriptBuf%3E"],[287,"impl-ToSql-for-Impl%3CDescriptor%3CDescriptorPublicKey%3E%3E"],[288,"impl-ToSql-for-Impl%3CAmount%3E"],[289,"impl-ToSql-for-Impl%3CNetwork%3E"],[561,"impl-AsMut%3CScript%3E-for-Script"],[562,"impl-AsMut%3C%5Bu8%5D%3E-for-Script"],[563,"impl-AsMut%3CScript%3E-for-ScriptBuf"],[564,"impl-AsMut%3C%5Bu8%5D%3E-for-ScriptBuf"],[589,"impl-AsRef%3C%5Bu8;+bitcoin::::bip158::%7Bimpl%2317%7D::%7Bconstant%230%7D%5D%3E-for-FilterHash"],[590,"impl-AsRef%3C%5Bu8%5D%3E-for-FilterHash"],[591,"impl-AsRef%3C%5Bu8%5D%3E-for-FilterHeader"],[592,"impl-AsRef%3C%5Bu8;+bitcoin::::bip158::%7Bimpl%2324%7D::%7Bconstant%230%7D%5D%3E-for-FilterHeader"],[593,"impl-AsRef%3C%5Bu8;+bitcoin::::bip32::%7Bimpl%23106%7D::%7Bconstant%230%7D%5D%3E-for-XKeyIdentifier"],[594,"impl-AsRef%3C%5Bu8%5D%3E-for-XKeyIdentifier"],[595,"impl-AsRef%3C%5Bu8%5D%3E-for-BlockHash"],[596,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2322%7D::%7Bconstant%230%7D%5D%3E-for-BlockHash"],[597,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2329%7D::%7Bconstant%230%7D%5D%3E-for-TxMerkleNode"],[598,"impl-AsRef%3C%5Bu8%5D%3E-for-TxMerkleNode"],[599,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2336%7D::%7Bconstant%230%7D%5D%3E-for-WitnessMerkleNode"],[600,"impl-AsRef%3C%5Bu8%5D%3E-for-WitnessMerkleNode"],[601,"impl-AsRef%3C%5Bu8%5D%3E-for-WitnessCommitment"],[602,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2343%7D::%7Bconstant%230%7D%5D%3E-for-WitnessCommitment"],[603,"impl-AsRef%3C%5Bu8%5D%3E-for-Script"],[604,"impl-AsRef%3CScript%3E-for-Script"],[605,"impl-AsRef%3C%5Bu8%5D%3E-for-ScriptBuf"],[606,"impl-AsRef%3CScript%3E-for-ScriptBuf"],[607,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::script::%7Bimpl%2356%7D::%7Bconstant%230%7D%5D%3E-for-ScriptHash"],[608,"impl-AsRef%3CPushBytes%3E-for-ScriptHash"],[609,"impl-AsRef%3C%5Bu8%5D%3E-for-ScriptHash"],[610,"impl-AsRef%3C%5Bu8%5D%3E-for-WScriptHash"],[611,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::script::%7Bimpl%2363%7D::%7Bconstant%230%7D%5D%3E-for-WScriptHash"],[612,"impl-AsRef%3CPushBytes%3E-for-WScriptHash"],[613,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::transaction::%7Bimpl%2353%7D::%7Bconstant%230%7D%5D%3E-for-Txid"],[614,"impl-AsRef%3C%5Bu8%5D%3E-for-Txid"],[615,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::transaction::%7Bimpl%2360%7D::%7Bconstant%230%7D%5D%3E-for-Wtxid"],[616,"impl-AsRef%3C%5Bu8%5D%3E-for-Wtxid"],[617,"impl-AsRef%3C%5Bu8%5D%3E-for-PubkeyHash"],[618,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::key::%7Bimpl%2383%7D::%7Bconstant%230%7D%5D%3E-for-PubkeyHash"],[619,"impl-AsRef%3CPushBytes%3E-for-PubkeyHash"],[620,"impl-AsRef%3CPushBytes%3E-for-WPubkeyHash"],[621,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::key::%7Bimpl%2390%7D::%7Bconstant%230%7D%5D%3E-for-WPubkeyHash"],[622,"impl-AsRef%3C%5Bu8%5D%3E-for-WPubkeyHash"],[623,"impl-AsRef%3C%5Bu8%5D%3E-for-LegacySighash"],[624,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::sighash::%7Bimpl%2349%7D::%7Bconstant%230%7D%5D%3E-for-LegacySighash"],[625,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::sighash::%7Bimpl%2356%7D::%7Bconstant%230%7D%5D%3E-for-SegwitV0Sighash"],[626,"impl-AsRef%3C%5Bu8%5D%3E-for-SegwitV0Sighash"],[627,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::sighash::%7Bimpl%23109%7D::%7Bconstant%230%7D%5D%3E-for-TapSighash"],[628,"impl-AsRef%3C%5Bu8%5D%3E-for-TapSighash"],[630,"impl-AsRef%3C%5Bu8%5D%3E-for-TapLeafHash"],[631,"impl-AsRef%3C%5Bu8;+bitcoin::::taproot::%7Bimpl%2371%7D::%7Bconstant%230%7D%5D%3E-for-TapLeafHash"],[632,"impl-AsRef%3C%5Bu8%5D%3E-for-TapNodeHash"],[633,"impl-AsRef%3C%5Bu8;+bitcoin::::taproot::%7Bimpl%23104%7D::%7Bconstant%230%7D%5D%3E-for-TapNodeHash"],[634,"impl-AsRef%3C%5Bu8;+bitcoin::::taproot::%7Bimpl%23137%7D::%7Bconstant%230%7D%5D%3E-for-TapTweakHash"],[635,"impl-AsRef%3C%5Bu8%5D%3E-for-TapTweakHash"],[1089,"impl-Deserialize%3C\'de%3E-for-Psbt"],[1090,"impl-Psbt"],[1101,"impl-Div%3CWeight%3E-for-Amount"],[1102,"impl-Div%3Cu64%3E-for-Amount"],[1104,"impl-Div%3Cu64%3E-for-Weight"],[1105,"impl-Div-for-Weight"],[1154,"impl-PartialEq-for-Script"],[1155,"impl-PartialEq%3CScriptBuf%3E-for-Script"],[1156,"impl-PartialEq%3CScript%3E-for-ScriptBuf"],[1157,"impl-PartialEq-for-ScriptBuf"],[1331,"impl-Display-for-Denomination"],[1332,"impl-Debug-for-Denomination"],[1333,"impl-Debug-for-Amount"],[1334,"impl-Display-for-Amount"],[1335,"impl-Display-for-SignedAmount"],[1336,"impl-Debug-for-SignedAmount"],[1337,"impl-Display-for-FeeRate"],[1338,"impl-Debug-for-FeeRate"],[1339,"impl-Display-for-XOnlyPublicKey"],[1340,"impl-Debug-for-XOnlyPublicKey"],[1341,"impl-LowerHex-for-XOnlyPublicKey"],[1342,"impl-Debug-for-Weight"],[1343,"impl-Display-for-Weight"],[1344,"impl-Debug-for-AddressType"],[1345,"impl-Display-for-AddressType"],[1347,"impl-Display-for-Address"],[1348,"impl-Debug-for-Address%3CV%3E"],[1349,"impl-Display-for-FilterHash"],[1350,"impl-Debug-for-FilterHash"],[1351,"impl-UpperHex-for-FilterHash"],[1352,"impl-LowerHex-for-FilterHash"],[1353,"impl-Display-for-FilterHeader"],[1354,"impl-UpperHex-for-FilterHeader"],[1355,"impl-Debug-for-FilterHeader"],[1356,"impl-LowerHex-for-FilterHeader"],[1357,"impl-Debug-for-XKeyIdentifier"],[1358,"impl-LowerHex-for-XKeyIdentifier"],[1359,"impl-UpperHex-for-XKeyIdentifier"],[1360,"impl-Display-for-XKeyIdentifier"],[1361,"impl-UpperHex-for-BlockHash"],[1362,"impl-LowerHex-for-BlockHash"],[1363,"impl-Debug-for-BlockHash"],[1364,"impl-Display-for-BlockHash"],[1365,"impl-LowerHex-for-TxMerkleNode"],[1366,"impl-Debug-for-TxMerkleNode"],[1367,"impl-Display-for-TxMerkleNode"],[1368,"impl-UpperHex-for-TxMerkleNode"],[1369,"impl-UpperHex-for-WitnessMerkleNode"],[1370,"impl-Display-for-WitnessMerkleNode"],[1371,"impl-Debug-for-WitnessMerkleNode"],[1372,"impl-LowerHex-for-WitnessMerkleNode"],[1373,"impl-LowerHex-for-WitnessCommitment"],[1374,"impl-UpperHex-for-WitnessCommitment"],[1375,"impl-Debug-for-WitnessCommitment"],[1376,"impl-Display-for-WitnessCommitment"],[1378,"impl-Display-for-Opcode"],[1379,"impl-Debug-for-Opcode"],[1380,"impl-LowerHex-for-Script"],[1381,"impl-UpperHex-for-Script"],[1382,"impl-Display-for-Script"],[1383,"impl-Debug-for-Script"],[1384,"impl-LowerHex-for-ScriptBuf"],[1385,"impl-Display-for-ScriptBuf"],[1386,"impl-UpperHex-for-ScriptBuf"],[1387,"impl-Debug-for-ScriptBuf"],[1389,"impl-Debug-for-WitnessVersion"],[1390,"impl-Display-for-WitnessVersion"],[1391,"impl-LowerHex-for-ScriptHash"],[1392,"impl-Display-for-ScriptHash"],[1393,"impl-UpperHex-for-ScriptHash"],[1394,"impl-Debug-for-ScriptHash"],[1395,"impl-Display-for-WScriptHash"],[1396,"impl-UpperHex-for-WScriptHash"],[1397,"impl-LowerHex-for-WScriptHash"],[1398,"impl-Debug-for-WScriptHash"],[1399,"impl-LowerHex-for-Txid"],[1400,"impl-Display-for-Txid"],[1401,"impl-UpperHex-for-Txid"],[1402,"impl-Debug-for-Txid"],[1403,"impl-LowerHex-for-Wtxid"],[1404,"impl-Debug-for-Wtxid"],[1405,"impl-Display-for-Wtxid"],[1406,"impl-UpperHex-for-Wtxid"],[1407,"impl-Display-for-OutPoint"],[1408,"impl-Debug-for-OutPoint"],[1410,"impl-Display-for-Sequence"],[1411,"impl-LowerHex-for-Sequence"],[1412,"impl-UpperHex-for-Sequence"],[1413,"impl-Debug-for-Sequence"],[1418,"impl-Display-for-PublicKey"],[1419,"impl-Debug-for-PublicKey"],[1420,"impl-UpperHex-for-PubkeyHash"],[1421,"impl-Display-for-PubkeyHash"],[1422,"impl-Debug-for-PubkeyHash"],[1423,"impl-LowerHex-for-PubkeyHash"],[1424,"impl-LowerHex-for-WPubkeyHash"],[1425,"impl-Display-for-WPubkeyHash"],[1426,"impl-Debug-for-WPubkeyHash"],[1427,"impl-UpperHex-for-WPubkeyHash"],[1428,"impl-Debug-for-CompressedPublicKey"],[1429,"impl-Display-for-CompressedPublicKey"],[1430,"impl-Debug-for-PrivateKey"],[1431,"impl-Display-for-PrivateKey"],[1432,"impl-UpperHex-for-LegacySighash"],[1433,"impl-Display-for-LegacySighash"],[1434,"impl-Debug-for-LegacySighash"],[1435,"impl-LowerHex-for-LegacySighash"],[1436,"impl-Display-for-SegwitV0Sighash"],[1437,"impl-UpperHex-for-SegwitV0Sighash"],[1438,"impl-LowerHex-for-SegwitV0Sighash"],[1439,"impl-Debug-for-SegwitV0Sighash"],[1440,"impl-Debug-for-TapSighash"],[1441,"impl-LowerHex-for-TapSighash"],[1442,"impl-Display-for-TapSighash"],[1443,"impl-UpperHex-for-TapSighash"],[1444,"impl-Debug-for-TapSighashType"],[1445,"impl-Display-for-TapSighashType"],[1446,"impl-Display-for-EcdsaSighashType"],[1447,"impl-Debug-for-EcdsaSighashType"],[1450,"impl-Debug-for-Network"],[1451,"impl-Display-for-Network"],[1452,"impl-Debug-for-Work"],[1453,"impl-LowerHex-for-Work"],[1454,"impl-Display-for-Work"],[1455,"impl-UpperHex-for-Work"],[1456,"impl-Debug-for-Target"],[1457,"impl-UpperHex-for-Target"],[1458,"impl-Display-for-Target"],[1459,"impl-LowerHex-for-Target"],[1460,"impl-LowerHex-for-CompactTarget"],[1461,"impl-Debug-for-CompactTarget"],[1462,"impl-UpperHex-for-CompactTarget"],[1463,"impl-Debug-for-Psbt"],[1464,"impl-Display-for-Psbt"],[1465,"impl-Display-for-TapLeafHash"],[1466,"impl-LowerHex-for-TapLeafHash"],[1467,"impl-Debug-for-TapLeafHash"],[1468,"impl-UpperHex-for-TapLeafHash"],[1469,"impl-LowerHex-for-TapNodeHash"],[1470,"impl-UpperHex-for-TapNodeHash"],[1471,"impl-Debug-for-TapNodeHash"],[1472,"impl-Display-for-TapNodeHash"],[1473,"impl-Debug-for-TapTweakHash"],[1474,"impl-UpperHex-for-TapTweakHash"],[1475,"impl-LowerHex-for-TapTweakHash"],[1476,"impl-Display-for-TapTweakHash"],[1485,"impl-From%3CTweakedPublicKey%3E-for-XOnlyPublicKey"],[1486,"impl-From%3CPublicKey%3E-for-XOnlyPublicKey"],[1488,"impl-From%3CXOnlyPublicKey%3E-for-XOnlyPublicKey"],[1489,"impl-From%3CCompressedPublicKey%3E-for-XOnlyPublicKey"],[1490,"impl-From%3CPublicKey%3E-for-XOnlyPublicKey"],[1501,"impl-From%3C%26Xpub%3E-for-XKeyIdentifier"],[1502,"impl-From%3CHash%3E-for-XKeyIdentifier"],[1503,"impl-From%3CXpub%3E-for-XKeyIdentifier"],[1504,"impl-From%3CHash%3E-for-BlockHash"],[1506,"impl-From%3C%26Header%3E-for-BlockHash"],[1507,"impl-From%3CBlock%3E-for-BlockHash"],[1508,"impl-From%3C%26Block%3E-for-BlockHash"],[1509,"impl-From%3CHeader%3E-for-BlockHash"],[1511,"impl-From%3CTxid%3E-for-TxMerkleNode"],[1512,"impl-From%3CHash%3E-for-TxMerkleNode"],[1513,"impl-From%3CWtxid%3E-for-WitnessMerkleNode"],[1515,"impl-From%3CHash%3E-for-WitnessMerkleNode"],[1519,"impl-From%3CWitnessVersion%3E-for-Opcode"],[1520,"impl-From%3Cu8%3E-for-Opcode"],[1523,"impl-From%3CAddress%3E-for-ScriptBuf"],[1524,"impl-From%3CVec%3Cu8%3E%3E-for-ScriptBuf"],[1525,"impl-From%3CCow%3C\'a,+Script%3E%3E-for-ScriptBuf"],[1526,"impl-From%3C%26Script%3E-for-ScriptBuf"],[1529,"impl-From%3C%26ScriptBuf%3E-for-ScriptHash"],[1530,"impl-From%3CScriptBuf%3E-for-ScriptHash"],[1531,"impl-From%3CHash%3E-for-ScriptHash"],[1532,"impl-From%3C%26Script%3E-for-ScriptHash"],[1534,"impl-From%3CScriptBuf%3E-for-WScriptHash"],[1535,"impl-From%3CHash%3E-for-WScriptHash"],[1537,"impl-From%3C%26ScriptBuf%3E-for-WScriptHash"],[1538,"impl-From%3C%26Script%3E-for-WScriptHash"],[1540,"impl-From%3CTransaction%3E-for-Txid"],[1541,"impl-From%3CHash%3E-for-Txid"],[1542,"impl-From%3C%26Transaction%3E-for-Txid"],[1543,"impl-From%3CHash%3E-for-Wtxid"],[1545,"impl-From%3CTransaction%3E-for-Wtxid"],[1546,"impl-From%3C%26Transaction%3E-for-Wtxid"],[1549,"impl-From%3CLockTime%3E-for-Sequence"],[1551,"impl-From%3CRelLockTime%3E-for-Sequence"],[1554,"impl-From%3C%26%5B%26%5Bu8%5D%5D%3E-for-Witness"],[1555,"impl-From%3CVec%3C%26%5Bu8%5D%3E%3E-for-Witness"],[1556,"impl-From%3C%26%5BVec%3Cu8%3E%5D%3E-for-Witness"],[1557,"impl-From%3CVec%3CVec%3Cu8%3E%3E%3E-for-Witness"],[1559,"impl-From%3Cu64%3E-for-VarInt"],[1560,"impl-From%3Cu16%3E-for-VarInt"],[1561,"impl-From%3Cu8%3E-for-VarInt"],[1563,"impl-From%3Cu32%3E-for-VarInt"],[1564,"impl-From%3Cusize%3E-for-VarInt"],[1565,"impl-From%3CCompressedPublicKey%3E-for-PublicKey"],[1566,"impl-From%3CPublicKey%3E-for-PublicKey"],[1568,"impl-From%3CCompressedPublicKey%3E-for-PubkeyHash"],[1569,"impl-From%3C%26PublicKey%3E-for-PubkeyHash"],[1570,"impl-From%3C%26CompressedPublicKey%3E-for-PubkeyHash"],[1572,"impl-From%3CHash%3E-for-PubkeyHash"],[1573,"impl-From%3CPublicKey%3E-for-PubkeyHash"],[1574,"impl-From%3CHash%3E-for-WPubkeyHash"],[1576,"impl-From%3C%26CompressedPublicKey%3E-for-WPubkeyHash"],[1577,"impl-From%3CCompressedPublicKey%3E-for-WPubkeyHash"],[1600,"impl-From%3CScriptPath%3C\'s%3E%3E-for-TapLeafHash"],[1602,"impl-From%3CHash%3CTapLeafTag%3E%3E-for-TapLeafHash"],[1604,"impl-From%3CLeafNode%3E-for-TapNodeHash"],[1605,"impl-From%3CHash%3CTapBranchTag%3E%3E-for-TapNodeHash"],[1606,"impl-From%3CTapLeafHash%3E-for-TapNodeHash"],[1607,"impl-From%3C%26LeafNode%3E-for-TapNodeHash"],[1610,"impl-From%3CHash%3CTapTweakTag%3E%3E-for-TapTweakHash"],[1611,"impl-From%3C%26TaprootSpendInfo%3E-for-TapTweakHash"],[1612,"impl-From%3CTaprootSpendInfo%3E-for-TapTweakHash"],[1720,"impl-ParseableKey-for-XOnlyPublicKey"],[1721,"impl-XOnlyPublicKey"],[1734,"impl-ParseableKey-for-PublicKey"],[1735,"impl-PublicKey"],[1883,"impl-Index%3CRangeTo%3Cusize%3E%3E-for-Script"],[1884,"impl-Index%3CRangeFrom%3Cusize%3E%3E-for-Script"],[1885,"impl-Index%3CRangeToInclusive%3Cusize%3E%3E-for-Script"],[1886,"impl-Index%3CRangeInclusive%3Cusize%3E%3E-for-Script"],[1887,"impl-Index%3C(Bound%3Cusize%3E,+Bound%3Cusize%3E)%3E-for-Script"],[1888,"impl-Index%3CRangeFull%3E-for-Script"],[1889,"impl-Index%3CRange%3Cusize%3E%3E-for-Script"],[2033,"impl-Mul%3CFeeRate%3E-for-Weight"],[2034,"impl-Mul%3Cu64%3E-for-Weight"],[2102,"impl-PartialOrd-for-Script"],[2103,"impl-PartialOrd%3CScriptBuf%3E-for-Script"],[2104,"impl-PartialOrd%3CScript%3E-for-ScriptBuf"],[2105,"impl-PartialOrd-for-ScriptBuf"],[2200,"impl-Serialize-for-XOnlyPublicKey"],[2201,"impl-XOnlyPublicKey"],[2239,"impl-Psbt"],[2240,"impl-Serialize-for-Psbt"],[2265,"impl-Sum%3C%26Weight%3E-for-Weight"],[2266,"impl-Sum-for-Weight"],[2480,"impl-TryFrom%3CString%3E-for-FeeRate"],[2482,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-FeeRate"],[2483,"impl-TryFrom%3C%26str%3E-for-FeeRate"],[2485,"impl-TryFrom%3CString%3E-for-Weight"],[2486,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Weight"],[2488,"impl-TryFrom%3C%26str%3E-for-Weight"],[2503,"impl-TryFrom%3CInstruction%3C\'a%3E%3E-for-WitnessVersion"],[2504,"impl-TryFrom%3CFe32%3E-for-WitnessVersion"],[2506,"impl-TryFrom%3COpcode%3E-for-WitnessVersion"],[2507,"impl-TryFrom%3Cu8%3E-for-WitnessVersion"],[2514,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Sequence"],[2515,"impl-TryFrom%3CString%3E-for-Sequence"],[2517,"impl-TryFrom%3C%26str%3E-for-Sequence"],[2536,"impl-TryFrom%3CMagic%3E-for-Network"],[2538,"impl-TryFrom%3CChainHash%3E-for-Network"],[2890,"impl-Debug-for-FromScriptError"],[2891,"impl-Display-for-FromScriptError"],[2892,"impl-Debug-for-P2shError"],[2893,"impl-Display-for-P2shError"],[2894,"impl-Display-for-UnknownAddressTypeError"],[2895,"impl-Debug-for-UnknownAddressTypeError"],[2896,"impl-Display-for-ParseError"],[2897,"impl-Debug-for-ParseError"],[2898,"impl-Display-for-UnknownHrpError"],[2899,"impl-Debug-for-UnknownHrpError"],[2900,"impl-Display-for-NetworkValidationError"],[2901,"impl-Debug-for-NetworkValidationError"],[2902,"impl-Display-for-InvalidBase58PayloadLengthError"],[2903,"impl-Debug-for-InvalidBase58PayloadLengthError"],[2904,"impl-Debug-for-LegacyAddressTooLongError"],[2905,"impl-Display-for-LegacyAddressTooLongError"],[2906,"impl-Display-for-InvalidLegacyPrefixError"],[2907,"impl-Debug-for-InvalidLegacyPrefixError"],[2912,"impl-From%3CTryFromError%3E-for-FromScriptError"],[2913,"impl-From%3CInfallible%3E-for-FromScriptError"],[2914,"impl-From%3CError%3E-for-FromScriptError"],[2918,"impl-From%3CError%3E-for-ParseError"],[2919,"impl-From%3CTryFromError%3E-for-ParseError"],[2920,"impl-From%3CDecodeError%3E-for-ParseError"],[2921,"impl-From%3CInvalidLegacyPrefixError%3E-for-ParseError"],[2922,"impl-From%3CInfallible%3E-for-ParseError"],[2923,"impl-From%3CUnknownHrpError%3E-for-ParseError"],[2924,"impl-From%3CLegacyAddressTooLongError%3E-for-ParseError"],[2925,"impl-From%3CInvalidBase58PayloadLengthError%3E-for-ParseError"],[2926,"impl-From%3CError%3E-for-ParseError"],[2928,"impl-From%3CNetworkValidationError%3E-for-ParseError"],[3089,"impl-Display-for-ParseAmountError"],[3090,"impl-Debug-for-ParseAmountError"],[3091,"impl-Debug-for-Display"],[3092,"impl-Display-for-Display"],[3093,"impl-From%3CInputTooLargeError%3E-for-ParseAmountError"],[3094,"impl-From%3CMissingDigitsError%3E-for-ParseAmountError"],[3095,"impl-From%3CInvalidCharacterError%3E-for-ParseAmountError"],[3096,"impl-From%3COutOfRangeError%3E-for-ParseAmountError"],[3098,"impl-From%3CTooPreciseError%3E-for-ParseAmountError"],[3099,"impl-From%3CInfallible%3E-for-ParseAmountError"],[3152,"impl-AsMut%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3153,"impl-AsMut%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[3160,"impl-AsRef%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3161,"impl-AsRef%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[3162,"impl-AsRef%3C%5Bu8%5D%3E-for-String"],[3163,"impl-AsRef%3CPath%3E-for-String"],[3164,"impl-AsRef%3COsStr%3E-for-String"],[3165,"impl-AsRef%3Cstr%3E-for-String"],[3199,"impl-Decodable-for-Vec%3CFilterHeader%3E"],[3200,"impl-Decodable-for-Vec%3CFilterHash%3E"],[3201,"impl-Decodable-for-Vec%3Cu64%3E"],[3202,"impl-Decodable-for-Vec%3CVec%3Cu8%3E%3E"],[3203,"impl-Decodable-for-Vec%3CTxIn%3E"],[3204,"impl-Decodable-for-Vec%3CPrefilledTransaction%3E"],[3205,"impl-Decodable-for-Vec%3CInventory%3E"],[3206,"impl-Decodable-for-Vec%3CTxOut%3E"],[3207,"impl-Decodable-for-Vec%3CBlockHash%3E"],[3208,"impl-Decodable-for-Vec%3Cu8%3E"],[3209,"impl-Decodable-for-Vec%3CVarInt%3E"],[3210,"impl-Decodable-for-Vec%3CTxMerkleNode%3E"],[3211,"impl-Decodable-for-Vec%3CShortId%3E"],[3212,"impl-Decodable-for-Vec%3CTransaction%3E"],[3213,"impl-Decodable-for-Vec%3CTapLeafHash%3E"],[3214,"impl-Decodable-for-Vec%3C(u32,+Address)%3E"],[3215,"impl-Decodable-for-Vec%3CHeader%3E"],[3216,"impl-Decodable-for-Vec%3CAddrV2Message%3E"],[3217,"impl-Encodable-for-Vec%3CShortId%3E"],[3218,"impl-Encodable-for-Vec%3CAddrV2Message%3E"],[3219,"impl-Encodable-for-Vec%3CVec%3Cu8%3E%3E"],[3220,"impl-Encodable-for-Vec%3CTransaction%3E"],[3221,"impl-Encodable-for-Vec%3C(u32,+Address)%3E"],[3222,"impl-Encodable-for-Vec%3CTxIn%3E"],[3223,"impl-Encodable-for-Vec%3CFilterHeader%3E"],[3224,"impl-Encodable-for-Vec%3CVarInt%3E"],[3225,"impl-Encodable-for-Vec%3CInventory%3E"],[3226,"impl-Encodable-for-Vec%3CPrefilledTransaction%3E"],[3227,"impl-Encodable-for-Vec%3CBlockHash%3E"],[3228,"impl-Encodable-for-Vec%3CHeader%3E"],[3229,"impl-Encodable-for-Vec%3Cu64%3E"],[3230,"impl-Encodable-for-Vec%3CTxMerkleNode%3E"],[3231,"impl-Encodable-for-Vec%3CTapLeafHash%3E"],[3232,"impl-Encodable-for-Vec%3CFilterHash%3E"],[3233,"impl-Encodable-for-Vec%3CTxOut%3E"],[3234,"impl-Encodable-for-Vec%3Cu8%3E"],[3268,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3269,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[3270,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3271,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3272,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3273,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3274,"impl-PartialEq%3C%26str%3E-for-String"],[3275,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[3276,"impl-PartialEq%3CValue%3E-for-String"],[3277,"impl-PartialEq%3Cstr%3E-for-String"],[3278,"impl-PartialEq-for-String"],[3288,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[3289,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[3290,"impl-Extend%3CString%3E-for-String"],[3291,"impl-Extend%3C%26str%3E-for-String"],[3292,"impl-Extend%3C%26char%3E-for-String"],[3293,"impl-Extend%3Cchar%3E-for-String"],[3294,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[3295,"impl-Extend%3CBox%3Cstr%3E%3E-for-String"],[3299,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[3300,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[3301,"impl-Extend%3C%26char%3E-for-String"],[3302,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[3303,"impl-Extend%3C%26str%3E-for-String"],[3304,"impl-Extend%3CString%3E-for-String"],[3305,"impl-Extend%3Cchar%3E-for-String"],[3306,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[3307,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[3308,"impl-Extend%3Cchar%3E-for-String"],[3309,"impl-Extend%3C%26char%3E-for-String"],[3311,"impl-Write-for-Vec%3Cu8,+A%3E"],[3312,"impl-Write-for-Vec%3Cu8%3E"],[3313,"impl-Display-for-Error"],[3314,"impl-Debug-for-Error"],[3315,"impl-Debug-for-InvalidCharacterError"],[3316,"impl-Display-for-InvalidCharacterError"],[3318,"impl-Debug-for-String"],[3319,"impl-Display-for-String"],[3320,"impl-From%3CInvalidCharacterError%3E-for-Error"],[3322,"impl-From%3CTooShortError%3E-for-Error"],[3323,"impl-From%3CInfallible%3E-for-Error"],[3324,"impl-From%3CIncorrectChecksumError%3E-for-Error"],[3326,"impl-From%3CDerivationPath%3E-for-Vec%3CChildNumber%3E"],[3327,"impl-From%3C%5BT;+N%5D%3E-for-Vec%3CT%3E"],[3328,"impl-From%3CPushBytesBuf%3E-for-Vec%3Cu8%3E"],[3329,"impl-From%3C%26%5BT;+N%5D%3E-for-Vec%3CT%3E"],[3330,"impl-From%3CScriptBuf%3E-for-Vec%3Cu8%3E"],[3332,"impl-From%3CTaprootMerkleBranch%3E-for-Vec%3CTapNodeHash%3E"],[3333,"impl-From%3C%26mut+%5BT%5D%3E-for-Vec%3CT%3E"],[3334,"impl-From%3CCow%3C\'a,+%5BT%5D%3E%3E-for-Vec%3CT%3E"],[3335,"impl-From%3CBinaryHeap%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3336,"impl-From%3CString%3E-for-Vec%3Cu8%3E"],[3337,"impl-From%3C%26%5BT%5D%3E-for-Vec%3CT%3E"],[3338,"impl-From%3CBox%3C%5BT%5D,+A%3E%3E-for-Vec%3CT,+A%3E"],[3339,"impl-From%3C%26str%3E-for-Vec%3Cu8%3E"],[3340,"impl-From%3CCString%3E-for-Vec%3Cu8%3E"],[3341,"impl-From%3C%26mut+%5BT;+N%5D%3E-for-Vec%3CT%3E"],[3342,"impl-From%3CVecDeque%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3343,"impl-From%3CBox%3Cstr%3E%3E-for-String"],[3344,"impl-From%3C%26mut+str%3E-for-String"],[3345,"impl-From%3CCow%3C\'a,+str%3E%3E-for-String"],[3346,"impl-From%3Cchar%3E-for-String"],[3347,"impl-From%3C%26String%3E-for-String"],[3348,"impl-From%3C%26str%3E-for-String"],[3352,"impl-FromIterator%3C%26char%3E-for-String"],[3353,"impl-FromIterator%3Cchar%3E-for-String"],[3354,"impl-FromIterator%3CCow%3C\'a,+str%3E%3E-for-String"],[3355,"impl-FromIterator%3CBox%3Cstr%3E%3E-for-String"],[3356,"impl-FromIterator%3CString%3E-for-String"],[3357,"impl-FromIterator%3C%26str%3E-for-String"],[3394,"impl-IntoIterator-for-%26mut+Vec%3CT,+A%3E"],[3395,"impl-IntoIterator-for-Vec%3CT,+A%3E"],[3396,"impl-IntoIterator-for-%26Vec%3CT,+A%3E"],[3403,"impl-Merge-for-Vec%3CT%3E"],[3404,"impl-Vec%3CT,+A%3E"],[3414,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3415,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3416,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3417,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[3418,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3419,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3420,"impl-PartialEq%3Cstr%3E-for-String"],[3421,"impl-PartialEq%3C%26str%3E-for-String"],[3422,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[3502,"impl-Write-for-Vec%3Cu8%3E"],[3503,"impl-Write-for-Vec%3Cu8,+A%3E"],[3529,"impl-Debug-for-IncorrectChecksumError"],[3530,"impl-Display-for-IncorrectChecksumError"],[3531,"impl-Debug-for-TooShortError"],[3532,"impl-Display-for-TooShortError"],[3606,"impl-Display-for-EncodeSliceError"],[3607,"impl-Debug-for-EncodeSliceError"],[3608,"impl-Debug-for-DecodeError"],[3609,"impl-Display-for-DecodeError"],[3610,"impl-Display-for-DecodeSliceError"],[3611,"impl-Debug-for-DecodeSliceError"],[3667,"impl-Debug-for-ParseAlphabetError"],[3668,"impl-Display-for-ParseAlphabetError"],[3901,"impl-Add%3CFe32%3E-for-%26Fe32"],[3902,"impl-Add%3C%26Fe32%3E-for-Fe32"],[3903,"impl-Add-for-Fe32"],[3904,"impl-Add%3C%26Fe32%3E-for-%26Fe32"],[3947,"impl-Div%3C%26Fe32%3E-for-%26Fe32"],[3948,"impl-Div%3CFe32%3E-for-%26Fe32"],[3949,"impl-Div-for-Fe32"],[3950,"impl-Div%3C%26Fe32%3E-for-Fe32"],[3984,"impl-Debug-for-Fe32"],[3985,"impl-Display-for-Fe32"],[3986,"impl-Debug-for-Hrp"],[3987,"impl-Display-for-Hrp"],[3988,"impl-Display-for-DecodeError"],[3989,"impl-Debug-for-DecodeError"],[3990,"impl-Display-for-EncodeError"],[3991,"impl-Debug-for-EncodeError"],[3992,"impl-Display-for-EncodeIoError"],[3993,"impl-Debug-for-EncodeIoError"],[4003,"impl-From%3CCodeLengthError%3E-for-EncodeError"],[4004,"impl-From%3CError%3E-for-EncodeError"],[4005,"impl-From%3CCodeLengthError%3E-for-EncodeIoError"],[4007,"impl-From%3CError%3E-for-EncodeIoError"],[4033,"impl-Mul-for-Fe32"],[4034,"impl-Mul%3CFe32%3E-for-%26Fe32"],[4035,"impl-Mul%3C%26Fe32%3E-for-Fe32"],[4036,"impl-Mul%3C%26Fe32%3E-for-%26Fe32"],[4050,"impl-Sub-for-Fe32"],[4051,"impl-Sub%3C%26Fe32%3E-for-%26Fe32"],[4052,"impl-Sub%3CFe32%3E-for-%26Fe32"],[4053,"impl-Sub%3C%26Fe32%3E-for-Fe32"],[4070,"impl-TryFrom%3Ci32%3E-for-Fe32"],[4072,"impl-TryFrom%3Ci64%3E-for-Fe32"],[4073,"impl-TryFrom%3Ci8%3E-for-Fe32"],[4074,"impl-TryFrom%3Cu128%3E-for-Fe32"],[4075,"impl-TryFrom%3Ci128%3E-for-Fe32"],[4076,"impl-TryFrom%3Ci16%3E-for-Fe32"],[4077,"impl-TryFrom%3Cu16%3E-for-Fe32"],[4078,"impl-TryFrom%3Cu32%3E-for-Fe32"],[4079,"impl-TryFrom%3Cu8%3E-for-Fe32"],[4080,"impl-TryFrom%3Cu64%3E-for-Fe32"],[4308,"impl-Debug-for-SegwitHrpstringError"],[4309,"impl-Display-for-SegwitHrpstringError"],[4310,"impl-Display-for-CheckedHrpstringError"],[4311,"impl-Debug-for-CheckedHrpstringError"],[4312,"impl-Display-for-UncheckedHrpstringError"],[4313,"impl-Debug-for-UncheckedHrpstringError"],[4314,"impl-Display-for-CharError"],[4315,"impl-Debug-for-CharError"],[4316,"impl-Display-for-ChecksumError"],[4317,"impl-Debug-for-ChecksumError"],[4318,"impl-Debug-for-CodeLengthError"],[4319,"impl-Display-for-CodeLengthError"],[4320,"impl-Display-for-SegwitCodeLengthError"],[4321,"impl-Debug-for-SegwitCodeLengthError"],[4322,"impl-Debug-for-PaddingError"],[4323,"impl-Display-for-PaddingError"],[4330,"impl-From%3CUncheckedHrpstringError%3E-for-SegwitHrpstringError"],[4332,"impl-From%3CPaddingError%3E-for-SegwitHrpstringError"],[4333,"impl-From%3CChecksumError%3E-for-SegwitHrpstringError"],[4334,"impl-From%3CWitnessLengthError%3E-for-SegwitHrpstringError"],[4335,"impl-From%3CChecksumError%3E-for-CheckedHrpstringError"],[4337,"impl-From%3CUncheckedHrpstringError%3E-for-CheckedHrpstringError"],[4339,"impl-From%3CError%3E-for-UncheckedHrpstringError"],[4340,"impl-From%3CCharError%3E-for-UncheckedHrpstringError"],[4579,"impl-Display-for-FromCharError"],[4580,"impl-Debug-for-FromCharError"],[4581,"impl-Display-for-TryFromError"],[4582,"impl-Debug-for-TryFromError"],[4584,"impl-From%3CTryFromIntError%3E-for-TryFromError"],[4586,"impl-From%3CInfallible%3E-for-TryFromError"],[4632,"impl-Debug-for-Error"],[4633,"impl-Display-for-Error"],[4786,"impl-Display-for-InvalidWitnessVersionError"],[4787,"impl-Debug-for-InvalidWitnessVersionError"],[4788,"impl-Display-for-WitnessLengthError"],[4789,"impl-Debug-for-WitnessLengthError"],[4845,"impl-Display-for-DecodeError"],[4846,"impl-Debug-for-DecodeError"],[4847,"impl-Debug-for-EncodeError"],[4848,"impl-Display-for-EncodeError"],[4851,"impl-From%3CError%3E-for-EncodeError"],[4853,"impl-From%3CInvalidWitnessVersionError%3E-for-EncodeError"],[4854,"impl-From%3CSegwitCodeLengthError%3E-for-EncodeError"],[4855,"impl-From%3CWitnessLengthError%3E-for-EncodeError"],[4882,"impl-AsMut%3C%5Bu8%5D%3E-for-ShortId"],[4883,"impl-AsMut%3C%5Bu8;+6%5D%3E-for-ShortId"],[4887,"impl-AsRef%3C%5Bu8;+6%5D%3E-for-ShortId"],[4888,"impl-AsRef%3C%5Bu8%5D%3E-for-ShortId"],[4894,"impl-Borrow%3C%5Bu8;+6%5D%3E-for-ShortId"],[4895,"impl-Borrow%3C%5Bu8%5D%3E-for-ShortId"],[4903,"impl-BorrowMut%3C%5Bu8;+6%5D%3E-for-ShortId"],[4904,"impl-BorrowMut%3C%5Bu8%5D%3E-for-ShortId"],[4964,"impl-Display-for-Error"],[4965,"impl-Debug-for-Error"],[4967,"impl-UpperHex-for-ShortId"],[4968,"impl-Debug-for-ShortId"],[4969,"impl-Display-for-ShortId"],[4970,"impl-LowerHex-for-ShortId"],[4973,"impl-Display-for-TxIndexOutOfRangeError"],[4974,"impl-Debug-for-TxIndexOutOfRangeError"],[4979,"impl-From%3C%26%5Bu8;+6%5D%3E-for-ShortId"],[4980,"impl-From%3C%5Bu8;+6%5D%3E-for-ShortId"],[5104,"impl-Display-for-Error"],[5105,"impl-Debug-for-Error"],[5114,"impl-From%3CInfallible%3E-for-Error"],[5115,"impl-From%3CError%3E-for-Error"],[5207,"impl-AsMut%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5208,"impl-AsMut%3C%5Bu8%5D%3E-for-ChainCode"],[5209,"impl-AsMut%3C%5Bu8%5D%3E-for-Fingerprint"],[5210,"impl-AsMut%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5215,"impl-AsRef%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5216,"impl-AsRef%3C%5Bu8%5D%3E-for-ChainCode"],[5217,"impl-AsRef%3C%5Bu8%5D%3E-for-Fingerprint"],[5218,"impl-AsRef%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5223,"impl-Borrow%3C%5Bu8%5D%3E-for-ChainCode"],[5224,"impl-Borrow%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5225,"impl-Borrow%3C%5Bu8%5D%3E-for-Fingerprint"],[5226,"impl-Borrow%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5235,"impl-BorrowMut%3C%5Bu8%5D%3E-for-ChainCode"],[5236,"impl-BorrowMut%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5238,"impl-BorrowMut%3C%5Bu8%5D%3E-for-Fingerprint"],[5240,"impl-BorrowMut%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5333,"impl-LowerHex-for-ChainCode"],[5334,"impl-Display-for-ChainCode"],[5335,"impl-Debug-for-ChainCode"],[5336,"impl-UpperHex-for-ChainCode"],[5337,"impl-LowerHex-for-Fingerprint"],[5338,"impl-UpperHex-for-Fingerprint"],[5339,"impl-Display-for-Fingerprint"],[5340,"impl-Debug-for-Fingerprint"],[5341,"impl-Display-for-Xpriv"],[5342,"impl-Debug-for-Xpriv"],[5343,"impl-Debug-for-Xpub"],[5344,"impl-Display-for-Xpub"],[5345,"impl-Display-for-ChildNumber"],[5346,"impl-Debug-for-ChildNumber"],[5347,"impl-Display-for-DerivationPath"],[5348,"impl-Debug-for-DerivationPath"],[5349,"impl-Debug-for-Error"],[5350,"impl-Display-for-Error"],[5351,"impl-Debug-for-InvalidBase58PayloadLengthError"],[5352,"impl-Display-for-InvalidBase58PayloadLengthError"],[5354,"impl-From%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5356,"impl-From%3C%26%5Bu8;+32%5D%3E-for-ChainCode"],[5357,"impl-From%3C%26%5Bu8;+4%5D%3E-for-Fingerprint"],[5359,"impl-From%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5364,"impl-From%3C%26%5BChildNumber%5D%3E-for-DerivationPath"],[5365,"impl-From%3CVec%3CChildNumber%3E%3E-for-DerivationPath"],[5368,"impl-From%3CInvalidBase58PayloadLengthError%3E-for-Error"],[5369,"impl-From%3CError%3E-for-Error"],[5370,"impl-From%3CError%3E-for-Error"],[5371,"impl-From%3CInfallible%3E-for-Error"],[5598,"impl-Debug-for-Bip34Error"],[5599,"impl-Display-for-Bip34Error"],[5600,"impl-Debug-for-ValidationError"],[5601,"impl-Display-for-ValidationError"],[5676,"impl-AsMut%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5677,"impl-AsMut%3C%5Bu8%5D%3E-for-ChainHash"],[5680,"impl-AsRef%3C%5Bu8%5D%3E-for-ChainHash"],[5681,"impl-AsRef%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5682,"impl-Borrow%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5683,"impl-Borrow%3C%5Bu8%5D%3E-for-ChainHash"],[5686,"impl-BorrowMut%3C%5Bu8%5D%3E-for-ChainHash"],[5687,"impl-BorrowMut%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5695,"impl-UpperHex-for-ChainHash"],[5696,"impl-LowerHex-for-ChainHash"],[5697,"impl-Debug-for-ChainHash"],[5698,"impl-Display-for-ChainHash"],[5700,"impl-From%3C%26%5Bu8;+32%5D%3E-for-ChainHash"],[5701,"impl-From%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5794,"impl-Debug-for-Height"],[5795,"impl-Display-for-Height"],[5796,"impl-Display-for-ParseHeightError"],[5797,"impl-Debug-for-ParseHeightError"],[5798,"impl-Debug-for-Time"],[5799,"impl-Display-for-Time"],[5800,"impl-Debug-for-ParseTimeError"],[5801,"impl-Display-for-ParseTimeError"],[5802,"impl-Display-for-ConversionError"],[5803,"impl-Debug-for-ConversionError"],[5804,"impl-Display-for-LockTime"],[5805,"impl-Debug-for-LockTime"],[5814,"impl-From%3CAbsLockTime%3E-for-LockTime"],[5815,"impl-From%3CTime%3E-for-LockTime"],[5816,"impl-From%3CHeight%3E-for-LockTime"],[5880,"impl-TryFrom%3CString%3E-for-Height"],[5881,"impl-TryFrom%3C%26str%3E-for-Height"],[5882,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Height"],[5885,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Time"],[5886,"impl-TryFrom%3CString%3E-for-Time"],[5887,"impl-TryFrom%3C%26str%3E-for-Time"],[5890,"impl-TryFrom%3C%26str%3E-for-LockTime"],[5892,"impl-TryFrom%3CString%3E-for-LockTime"],[5893,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-LockTime"],[5989,"impl-Display-for-Height"],[5990,"impl-Debug-for-Height"],[5991,"impl-Debug-for-Time"],[5992,"impl-Display-for-Time"],[5993,"impl-Debug-for-TimeOverflowError"],[5994,"impl-Display-for-TimeOverflowError"],[5995,"impl-Display-for-LockTime"],[5996,"impl-Debug-for-LockTime"],[5997,"impl-Display-for-DisabledLockTimeError"],[5998,"impl-Debug-for-DisabledLockTimeError"],[5999,"impl-Display-for-IncompatibleHeightError"],[6000,"impl-Debug-for-IncompatibleHeightError"],[6001,"impl-Debug-for-IncompatibleTimeError"],[6002,"impl-Display-for-IncompatibleTimeError"],[6008,"impl-From%3CHeight%3E-for-LockTime"],[6009,"impl-From%3CRelLockTime%3E-for-LockTime"],[6010,"impl-From%3CTime%3E-for-LockTime"],[6085,"impl-TryFrom%3C%26str%3E-for-Height"],[6087,"impl-TryFrom%3CString%3E-for-Height"],[6088,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Height"],[6090,"impl-TryFrom%3CString%3E-for-Time"],[6091,"impl-TryFrom%3C%26str%3E-for-Time"],[6092,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Time"],[6452,"impl-AsMut%3CPushBytes%3E-for-PushBytes"],[6453,"impl-AsMut%3C%5Bu8%5D%3E-for-PushBytes"],[6458,"impl-AsRef%3C%5Bu8%5D%3E-for-PushBytes"],[6459,"impl-AsRef%3CPushBytes%3E-for-PushBytes"],[6526,"impl-Debug-for-Builder"],[6527,"impl-Display-for-Builder"],[6533,"impl-Display-for-PushBytesError"],[6534,"impl-Debug-for-PushBytesError"],[6535,"impl-Debug-for-Error"],[6536,"impl-Display-for-Error"],[6543,"impl-From%3C%26%5Bu8;+67%5D%3E-for-%26PushBytes"],[6544,"impl-From%3C%26mut+%5Bu8;+68%5D%3E-for-%26mut+PushBytes"],[6545,"impl-From%3C%26%5Bu8;+28%5D%3E-for-%26PushBytes"],[6546,"impl-From%3C%26mut+%5Bu8;+37%5D%3E-for-%26mut+PushBytes"],[6547,"impl-From%3C%26mut+%5Bu8;+73%5D%3E-for-%26mut+PushBytes"],[6548,"impl-From%3C%26%5Bu8;+71%5D%3E-for-%26PushBytes"],[6549,"impl-From%3C%26mut+%5Bu8;+4%5D%3E-for-%26mut+PushBytes"],[6550,"impl-From%3C%26%5Bu8;+57%5D%3E-for-%26PushBytes"],[6551,"impl-From%3C%26mut+%5Bu8;+29%5D%3E-for-%26mut+PushBytes"],[6552,"impl-From%3C%26%5Bu8;+56%5D%3E-for-%26PushBytes"],[6553,"impl-From%3C%26%5Bu8;+72%5D%3E-for-%26PushBytes"],[6554,"impl-From%3C%26%5Bu8;+66%5D%3E-for-%26PushBytes"],[6555,"impl-From%3C%26mut+%5Bu8;+15%5D%3E-for-%26mut+PushBytes"],[6556,"impl-From%3C%26mut+%5Bu8;+5%5D%3E-for-%26mut+PushBytes"],[6557,"impl-From%3C%26mut+%5Bu8;+43%5D%3E-for-%26mut+PushBytes"],[6558,"impl-From%3C%26mut+%5Bu8;+27%5D%3E-for-%26mut+PushBytes"],[6559,"impl-From%3C%26mut+%5Bu8;+42%5D%3E-for-%26mut+PushBytes"],[6560,"impl-From%3C%26%5Bu8;+6%5D%3E-for-%26PushBytes"],[6561,"impl-From%3C%26mut+%5Bu8;+31%5D%3E-for-%26mut+PushBytes"],[6562,"impl-From%3C%26mut+%5Bu8;+65%5D%3E-for-%26mut+PushBytes"],[6563,"impl-From%3C%26mut+%5Bu8;+11%5D%3E-for-%26mut+PushBytes"],[6564,"impl-From%3C%26%5Bu8;+49%5D%3E-for-%26PushBytes"],[6565,"impl-From%3C%26%5Bu8;+41%5D%3E-for-%26PushBytes"],[6566,"impl-From%3C%26%5Bu8;+24%5D%3E-for-%26PushBytes"],[6567,"impl-From%3C%26%5Bu8;+62%5D%3E-for-%26PushBytes"],[6568,"impl-From%3C%26mut+%5Bu8;+70%5D%3E-for-%26mut+PushBytes"],[6569,"impl-From%3C%26%5Bu8;+51%5D%3E-for-%26PushBytes"],[6570,"impl-From%3C%26%5Bu8;+27%5D%3E-for-%26PushBytes"],[6571,"impl-From%3C%26%5Bu8;+37%5D%3E-for-%26PushBytes"],[6572,"impl-From%3C%26%5Bu8;+47%5D%3E-for-%26PushBytes"],[6573,"impl-From%3C%26%5Bu8;+22%5D%3E-for-%26PushBytes"],[6574,"impl-From%3C%26%5Bu8;+10%5D%3E-for-%26PushBytes"],[6575,"impl-From%3C%26mut+%5Bu8;+47%5D%3E-for-%26mut+PushBytes"],[6576,"impl-From%3C%26%5Bu8;+59%5D%3E-for-%26PushBytes"],[6577,"impl-From%3C%26mut+%5Bu8;+18%5D%3E-for-%26mut+PushBytes"],[6578,"impl-From%3C%26%5Bu8;+32%5D%3E-for-%26PushBytes"],[6579,"impl-From%3C%26%5Bu8;+23%5D%3E-for-%26PushBytes"],[6580,"impl-From%3C%26mut+%5Bu8;+49%5D%3E-for-%26mut+PushBytes"],[6581,"impl-From%3C%26mut+%5Bu8;+0%5D%3E-for-%26mut+PushBytes"],[6582,"impl-From%3C%26mut+%5Bu8;+19%5D%3E-for-%26mut+PushBytes"],[6583,"impl-From%3C%26mut+%5Bu8;+24%5D%3E-for-%26mut+PushBytes"],[6584,"impl-From%3C%26%5Bu8;+38%5D%3E-for-%26PushBytes"],[6585,"impl-From%3C%26mut+%5Bu8;+14%5D%3E-for-%26mut+PushBytes"],[6586,"impl-From%3C%26mut+%5Bu8;+26%5D%3E-for-%26mut+PushBytes"],[6587,"impl-From%3C%26%5Bu8;+50%5D%3E-for-%26PushBytes"],[6588,"impl-From%3C%26mut+%5Bu8;+23%5D%3E-for-%26mut+PushBytes"],[6589,"impl-From%3C%26mut+%5Bu8;+61%5D%3E-for-%26mut+PushBytes"],[6590,"impl-From%3C%26mut+%5Bu8;+3%5D%3E-for-%26mut+PushBytes"],[6591,"impl-From%3C%26mut+%5Bu8;+20%5D%3E-for-%26mut+PushBytes"],[6592,"impl-From%3C%26%5Bu8;+31%5D%3E-for-%26PushBytes"],[6593,"impl-From%3C%26mut+%5Bu8;+60%5D%3E-for-%26mut+PushBytes"],[6594,"impl-From%3C%26mut+%5Bu8;+38%5D%3E-for-%26mut+PushBytes"],[6595,"impl-From%3C%26mut+%5Bu8;+39%5D%3E-for-%26mut+PushBytes"],[6596,"impl-From%3C%26mut+%5Bu8;+58%5D%3E-for-%26mut+PushBytes"],[6597,"impl-From%3C%26%5Bu8;+18%5D%3E-for-%26PushBytes"],[6598,"impl-From%3C%26%5Bu8;+8%5D%3E-for-%26PushBytes"],[6599,"impl-From%3C%26mut+%5Bu8;+10%5D%3E-for-%26mut+PushBytes"],[6600,"impl-From%3C%26mut+%5Bu8;+34%5D%3E-for-%26mut+PushBytes"],[6601,"impl-From%3C%26%5Bu8;+0%5D%3E-for-%26PushBytes"],[6602,"impl-From%3C%26%5Bu8;+70%5D%3E-for-%26PushBytes"],[6603,"impl-From%3C%26%5Bu8;+2%5D%3E-for-%26PushBytes"],[6604,"impl-From%3C%26%5Bu8;+3%5D%3E-for-%26PushBytes"],[6605,"impl-From%3C%26mut+%5Bu8;+6%5D%3E-for-%26mut+PushBytes"],[6606,"impl-From%3C%26mut+%5Bu8;+35%5D%3E-for-%26mut+PushBytes"],[6607,"impl-From%3C%26%5Bu8;+63%5D%3E-for-%26PushBytes"],[6608,"impl-From%3C%26mut+%5Bu8;+71%5D%3E-for-%26mut+PushBytes"],[6609,"impl-From%3C%26%5Bu8;+43%5D%3E-for-%26PushBytes"],[6610,"impl-From%3C%26mut+%5Bu8;+46%5D%3E-for-%26mut+PushBytes"],[6611,"impl-From%3C%26mut+%5Bu8;+57%5D%3E-for-%26mut+PushBytes"],[6612,"impl-From%3C%26%5Bu8;+1%5D%3E-for-%26PushBytes"],[6613,"impl-From%3C%26mut+%5Bu8;+7%5D%3E-for-%26mut+PushBytes"],[6614,"impl-From%3C%26mut+%5Bu8;+53%5D%3E-for-%26mut+PushBytes"],[6615,"impl-From%3C%26mut+%5Bu8;+12%5D%3E-for-%26mut+PushBytes"],[6616,"impl-From%3C%26%5Bu8;+17%5D%3E-for-%26PushBytes"],[6617,"impl-From%3C%26%5Bu8;+21%5D%3E-for-%26PushBytes"],[6618,"impl-From%3C%26mut+%5Bu8;+32%5D%3E-for-%26mut+PushBytes"],[6619,"impl-From%3C%26%5Bu8;+45%5D%3E-for-%26PushBytes"],[6620,"impl-From%3C%26mut+%5Bu8;+63%5D%3E-for-%26mut+PushBytes"],[6621,"impl-From%3C%26%5Bu8;+26%5D%3E-for-%26PushBytes"],[6622,"impl-From%3C%26mut+%5Bu8;+41%5D%3E-for-%26mut+PushBytes"],[6623,"impl-From%3C%26%5Bu8;+53%5D%3E-for-%26PushBytes"],[6624,"impl-From%3C%26%5Bu8;+29%5D%3E-for-%26PushBytes"],[6625,"impl-From%3C%26mut+%5Bu8;+50%5D%3E-for-%26mut+PushBytes"],[6626,"impl-From%3C%26%5Bu8;+42%5D%3E-for-%26PushBytes"],[6627,"impl-From%3C%26mut+%5Bu8;+13%5D%3E-for-%26mut+PushBytes"],[6628,"impl-From%3C%26%5Bu8;+11%5D%3E-for-%26PushBytes"],[6629,"impl-From%3C%26mut+%5Bu8;+56%5D%3E-for-%26mut+PushBytes"],[6630,"impl-From%3C%26mut+%5Bu8;+55%5D%3E-for-%26mut+PushBytes"],[6631,"impl-From%3C%26%5Bu8;+7%5D%3E-for-%26PushBytes"],[6632,"impl-From%3C%26%5Bu8;+4%5D%3E-for-%26PushBytes"],[6633,"impl-From%3C%26%5Bu8;+15%5D%3E-for-%26PushBytes"],[6634,"impl-From%3C%26mut+%5Bu8;+74%5D%3E-for-%26mut+PushBytes"],[6635,"impl-From%3C%26%5Bu8;+40%5D%3E-for-%26PushBytes"],[6636,"impl-From%3C%26mut+%5Bu8;+25%5D%3E-for-%26mut+PushBytes"],[6637,"impl-From%3C%26mut+%5Bu8;+44%5D%3E-for-%26mut+PushBytes"],[6638,"impl-From%3C%26mut+%5Bu8;+17%5D%3E-for-%26mut+PushBytes"],[6639,"impl-From%3C%26%5Bu8;+14%5D%3E-for-%26PushBytes"],[6640,"impl-From%3C%26%5Bu8;+60%5D%3E-for-%26PushBytes"],[6641,"impl-From%3C%26mut+%5Bu8;+8%5D%3E-for-%26mut+PushBytes"],[6642,"impl-From%3C%26mut+%5Bu8;+62%5D%3E-for-%26mut+PushBytes"],[6643,"impl-From%3C%26%5Bu8;+44%5D%3E-for-%26PushBytes"],[6644,"impl-From%3C%26mut+%5Bu8;+36%5D%3E-for-%26mut+PushBytes"],[6645,"impl-From%3C%26mut+%5Bu8;+51%5D%3E-for-%26mut+PushBytes"],[6646,"impl-From%3C%26mut+%5Bu8;+28%5D%3E-for-%26mut+PushBytes"],[6647,"impl-From%3C%26mut+%5Bu8;+45%5D%3E-for-%26mut+PushBytes"],[6648,"impl-From%3C%26mut+%5Bu8;+54%5D%3E-for-%26mut+PushBytes"],[6649,"impl-From%3C%26mut+%5Bu8;+9%5D%3E-for-%26mut+PushBytes"],[6650,"impl-From%3C%26mut+%5Bu8;+22%5D%3E-for-%26mut+PushBytes"],[6651,"impl-From%3C%26mut+%5Bu8;+16%5D%3E-for-%26mut+PushBytes"],[6652,"impl-From%3C%26mut+%5Bu8;+40%5D%3E-for-%26mut+PushBytes"],[6653,"impl-From%3C%26mut+%5Bu8;+67%5D%3E-for-%26mut+PushBytes"],[6654,"impl-From%3C%26%5Bu8;+73%5D%3E-for-%26PushBytes"],[6655,"impl-From%3C%26%5Bu8;+9%5D%3E-for-%26PushBytes"],[6656,"impl-From%3C%26%5Bu8;+64%5D%3E-for-%26PushBytes"],[6657,"impl-From%3C%26mut+%5Bu8;+64%5D%3E-for-%26mut+PushBytes"],[6658,"impl-From%3C%26%5Bu8;+75%5D%3E-for-%26PushBytes"],[6659,"impl-From%3C%26mut+%5Bu8;+59%5D%3E-for-%26mut+PushBytes"],[6660,"impl-From%3C%26%5Bu8;+25%5D%3E-for-%26PushBytes"],[6661,"impl-From%3C%26%5Bu8;+12%5D%3E-for-%26PushBytes"],[6662,"impl-From%3C%26mut+%5Bu8;+33%5D%3E-for-%26mut+PushBytes"],[6663,"impl-From%3C%26%5Bu8;+16%5D%3E-for-%26PushBytes"],[6664,"impl-From%3C%26%5Bu8;+33%5D%3E-for-%26PushBytes"],[6665,"impl-From%3C%26%5Bu8;+54%5D%3E-for-%26PushBytes"],[6666,"impl-From%3C%26%5Bu8;+61%5D%3E-for-%26PushBytes"],[6667,"impl-From%3C%26%5Bu8;+76%5D%3E-for-%26PushBytes"],[6668,"impl-From%3C%26%5Bu8;+19%5D%3E-for-%26PushBytes"],[6669,"impl-From%3C%26%5Bu8;+55%5D%3E-for-%26PushBytes"],[6670,"impl-From%3C%26mut+%5Bu8;+75%5D%3E-for-%26mut+PushBytes"],[6671,"impl-From%3C%26%5Bu8;+48%5D%3E-for-%26PushBytes"],[6672,"impl-From%3C%26%5Bu8;+35%5D%3E-for-%26PushBytes"],[6673,"impl-From%3C%26%5Bu8;+52%5D%3E-for-%26PushBytes"],[6674,"impl-From%3C%26%5Bu8;+39%5D%3E-for-%26PushBytes"],[6675,"impl-From%3C%26%5Bu8;+30%5D%3E-for-%26PushBytes"],[6676,"impl-From%3C%26mut+%5Bu8;+69%5D%3E-for-%26mut+PushBytes"],[6677,"impl-From%3C%26%5Bu8;+58%5D%3E-for-%26PushBytes"],[6678,"impl-From%3C%26%5Bu8;+34%5D%3E-for-%26PushBytes"],[6679,"impl-From%3C%26mut+%5Bu8;+21%5D%3E-for-%26mut+PushBytes"],[6680,"impl-From%3C%26%5Bu8;+20%5D%3E-for-%26PushBytes"],[6681,"impl-From%3C%26%5Bu8;+68%5D%3E-for-%26PushBytes"],[6682,"impl-From%3C%26%5Bu8;+65%5D%3E-for-%26PushBytes"],[6683,"impl-From%3C%26mut+%5Bu8;+30%5D%3E-for-%26mut+PushBytes"],[6684,"impl-From%3C%26mut+%5Bu8;+52%5D%3E-for-%26mut+PushBytes"],[6685,"impl-From%3C%26mut+%5Bu8;+76%5D%3E-for-%26mut+PushBytes"],[6686,"impl-From%3C%26%5Bu8;+36%5D%3E-for-%26PushBytes"],[6687,"impl-From%3C%26mut+%5Bu8;+2%5D%3E-for-%26mut+PushBytes"],[6688,"impl-From%3C%26mut+%5Bu8;+72%5D%3E-for-%26mut+PushBytes"],[6689,"impl-From%3C%26mut+%5Bu8;+48%5D%3E-for-%26mut+PushBytes"],[6690,"impl-From%3C%26%5Bu8;+74%5D%3E-for-%26PushBytes"],[6691,"impl-From%3C%26%5Bu8;+69%5D%3E-for-%26PushBytes"],[6692,"impl-From%3C%26mut+%5Bu8;+1%5D%3E-for-%26mut+PushBytes"],[6693,"impl-From%3C%26%5Bu8;+5%5D%3E-for-%26PushBytes"],[6694,"impl-From%3C%26%5Bu8;+13%5D%3E-for-%26PushBytes"],[6695,"impl-From%3C%26%5Bu8;+46%5D%3E-for-%26PushBytes"],[6696,"impl-From%3C%26mut+%5Bu8;+66%5D%3E-for-%26mut+PushBytes"],[6697,"impl-From%3C%5Bu8;+13%5D%3E-for-PushBytesBuf"],[6698,"impl-From%3C%26%5Bu8;+75%5D%3E-for-PushBytesBuf"],[6700,"impl-From%3C%5Bu8;+76%5D%3E-for-PushBytesBuf"],[6701,"impl-From%3C%26%5Bu8;+37%5D%3E-for-PushBytesBuf"],[6702,"impl-From%3C%5Bu8;+57%5D%3E-for-PushBytesBuf"],[6703,"impl-From%3C%5Bu8;+29%5D%3E-for-PushBytesBuf"],[6704,"impl-From%3C%5Bu8;+55%5D%3E-for-PushBytesBuf"],[6705,"impl-From%3C%26%5Bu8;+74%5D%3E-for-PushBytesBuf"],[6706,"impl-From%3C%5Bu8;+6%5D%3E-for-PushBytesBuf"],[6707,"impl-From%3C%26%5Bu8;+29%5D%3E-for-PushBytesBuf"],[6708,"impl-From%3C%26%5Bu8;+41%5D%3E-for-PushBytesBuf"],[6709,"impl-From%3C%26%5Bu8;+47%5D%3E-for-PushBytesBuf"],[6710,"impl-From%3C%26%5Bu8;+19%5D%3E-for-PushBytesBuf"],[6711,"impl-From%3C%5Bu8;+52%5D%3E-for-PushBytesBuf"],[6712,"impl-From%3C%5Bu8;+38%5D%3E-for-PushBytesBuf"],[6713,"impl-From%3C%26%5Bu8;+57%5D%3E-for-PushBytesBuf"],[6714,"impl-From%3C%26%5Bu8;+22%5D%3E-for-PushBytesBuf"],[6715,"impl-From%3C%5Bu8;+0%5D%3E-for-PushBytesBuf"],[6716,"impl-From%3C%26%5Bu8;+42%5D%3E-for-PushBytesBuf"],[6717,"impl-From%3C%26%5Bu8;+12%5D%3E-for-PushBytesBuf"],[6718,"impl-From%3C%5Bu8;+9%5D%3E-for-PushBytesBuf"],[6719,"impl-From%3CWScriptHash%3E-for-PushBytesBuf"],[6720,"impl-From%3C%26%5Bu8;+11%5D%3E-for-PushBytesBuf"],[6721,"impl-From%3C%5Bu8;+34%5D%3E-for-PushBytesBuf"],[6722,"impl-From%3C%26%5Bu8;+68%5D%3E-for-PushBytesBuf"],[6723,"impl-From%3C%26%5Bu8;+24%5D%3E-for-PushBytesBuf"],[6724,"impl-From%3C%5Bu8;+73%5D%3E-for-PushBytesBuf"],[6725,"impl-From%3C%5Bu8;+5%5D%3E-for-PushBytesBuf"],[6726,"impl-From%3C%5Bu8;+68%5D%3E-for-PushBytesBuf"],[6727,"impl-From%3C%5Bu8;+39%5D%3E-for-PushBytesBuf"],[6728,"impl-From%3C%26%5Bu8;+33%5D%3E-for-PushBytesBuf"],[6729,"impl-From%3C%5Bu8;+56%5D%3E-for-PushBytesBuf"],[6730,"impl-From%3C%26%5Bu8;+71%5D%3E-for-PushBytesBuf"],[6731,"impl-From%3C%26%5Bu8;+72%5D%3E-for-PushBytesBuf"],[6732,"impl-From%3C%26%5Bu8;+2%5D%3E-for-PushBytesBuf"],[6733,"impl-From%3C%5Bu8;+64%5D%3E-for-PushBytesBuf"],[6734,"impl-From%3C%26%5Bu8;+63%5D%3E-for-PushBytesBuf"],[6735,"impl-From%3C%26%5Bu8;+52%5D%3E-for-PushBytesBuf"],[6736,"impl-From%3C%5Bu8;+44%5D%3E-for-PushBytesBuf"],[6737,"impl-From%3C%5Bu8;+37%5D%3E-for-PushBytesBuf"],[6738,"impl-From%3C%26%5Bu8;+21%5D%3E-for-PushBytesBuf"],[6739,"impl-From%3C%5Bu8;+60%5D%3E-for-PushBytesBuf"],[6740,"impl-From%3C%5Bu8;+33%5D%3E-for-PushBytesBuf"],[6741,"impl-From%3C%5Bu8;+3%5D%3E-for-PushBytesBuf"],[6742,"impl-From%3C%5Bu8;+41%5D%3E-for-PushBytesBuf"],[6743,"impl-From%3C%5Bu8;+27%5D%3E-for-PushBytesBuf"],[6744,"impl-From%3C%26%5Bu8;+53%5D%3E-for-PushBytesBuf"],[6745,"impl-From%3C%5Bu8;+22%5D%3E-for-PushBytesBuf"],[6746,"impl-From%3C%26%5Bu8;+34%5D%3E-for-PushBytesBuf"],[6747,"impl-From%3C%5Bu8;+58%5D%3E-for-PushBytesBuf"],[6748,"impl-From%3C%5Bu8;+20%5D%3E-for-PushBytesBuf"],[6749,"impl-From%3C%26%5Bu8;+30%5D%3E-for-PushBytesBuf"],[6750,"impl-From%3C%5Bu8;+59%5D%3E-for-PushBytesBuf"],[6751,"impl-From%3C%5Bu8;+18%5D%3E-for-PushBytesBuf"],[6752,"impl-From%3C%5Bu8;+30%5D%3E-for-PushBytesBuf"],[6753,"impl-From%3C%5Bu8;+54%5D%3E-for-PushBytesBuf"],[6754,"impl-From%3C%26%5Bu8;+15%5D%3E-for-PushBytesBuf"],[6755,"impl-From%3C%5Bu8;+63%5D%3E-for-PushBytesBuf"],[6756,"impl-From%3C%26%5Bu8;+70%5D%3E-for-PushBytesBuf"],[6757,"impl-From%3C%5Bu8;+26%5D%3E-for-PushBytesBuf"],[6758,"impl-From%3C%26%5Bu8;+43%5D%3E-for-PushBytesBuf"],[6759,"impl-From%3C%5Bu8;+71%5D%3E-for-PushBytesBuf"],[6760,"impl-From%3C%26%5Bu8;+35%5D%3E-for-PushBytesBuf"],[6761,"impl-From%3C%5Bu8;+70%5D%3E-for-PushBytesBuf"],[6762,"impl-From%3C%5Bu8;+16%5D%3E-for-PushBytesBuf"],[6763,"impl-From%3C%5Bu8;+74%5D%3E-for-PushBytesBuf"],[6764,"impl-From%3C%26%5Bu8;+55%5D%3E-for-PushBytesBuf"],[6765,"impl-From%3C%5Bu8;+21%5D%3E-for-PushBytesBuf"],[6766,"impl-From%3C%5Bu8;+31%5D%3E-for-PushBytesBuf"],[6767,"impl-From%3CPubkeyHash%3E-for-PushBytesBuf"],[6768,"impl-From%3C%26%5Bu8;+14%5D%3E-for-PushBytesBuf"],[6769,"impl-From%3C%26%5Bu8;+58%5D%3E-for-PushBytesBuf"],[6770,"impl-From%3C%5Bu8;+53%5D%3E-for-PushBytesBuf"],[6771,"impl-From%3C%5Bu8;+14%5D%3E-for-PushBytesBuf"],[6772,"impl-From%3C%26%5Bu8;+40%5D%3E-for-PushBytesBuf"],[6773,"impl-From%3C%5Bu8;+1%5D%3E-for-PushBytesBuf"],[6774,"impl-From%3C%26%5Bu8;+38%5D%3E-for-PushBytesBuf"],[6775,"impl-From%3C%5Bu8;+36%5D%3E-for-PushBytesBuf"],[6776,"impl-From%3C%26%5Bu8;+62%5D%3E-for-PushBytesBuf"],[6777,"impl-From%3C%5Bu8;+43%5D%3E-for-PushBytesBuf"],[6778,"impl-From%3C%26%5Bu8;+32%5D%3E-for-PushBytesBuf"],[6779,"impl-From%3CScriptHash%3E-for-PushBytesBuf"],[6780,"impl-From%3C%5Bu8;+8%5D%3E-for-PushBytesBuf"],[6781,"impl-From%3C%5Bu8;+75%5D%3E-for-PushBytesBuf"],[6782,"impl-From%3C%26%5Bu8;+59%5D%3E-for-PushBytesBuf"],[6783,"impl-From%3C%26%5Bu8;+50%5D%3E-for-PushBytesBuf"],[6784,"impl-From%3C%26%5Bu8;+5%5D%3E-for-PushBytesBuf"],[6785,"impl-From%3C%26%5Bu8;+10%5D%3E-for-PushBytesBuf"],[6786,"impl-From%3C%26%5Bu8;+27%5D%3E-for-PushBytesBuf"],[6787,"impl-From%3C%26%5Bu8;+13%5D%3E-for-PushBytesBuf"],[6788,"impl-From%3C%26%5Bu8;+0%5D%3E-for-PushBytesBuf"],[6789,"impl-From%3C%5Bu8;+62%5D%3E-for-PushBytesBuf"],[6790,"impl-From%3C%26%5Bu8;+7%5D%3E-for-PushBytesBuf"],[6791,"impl-From%3C%5Bu8;+28%5D%3E-for-PushBytesBuf"],[6792,"impl-From%3C%26%5Bu8;+51%5D%3E-for-PushBytesBuf"],[6793,"impl-From%3C%5Bu8;+7%5D%3E-for-PushBytesBuf"],[6794,"impl-From%3C%5Bu8;+50%5D%3E-for-PushBytesBuf"],[6795,"impl-From%3C%5Bu8;+49%5D%3E-for-PushBytesBuf"],[6796,"impl-From%3C%5Bu8;+67%5D%3E-for-PushBytesBuf"],[6797,"impl-From%3C%26%5Bu8;+48%5D%3E-for-PushBytesBuf"],[6798,"impl-From%3C%26%5Bu8;+6%5D%3E-for-PushBytesBuf"],[6799,"impl-From%3C%26%5Bu8;+76%5D%3E-for-PushBytesBuf"],[6800,"impl-From%3C%5Bu8;+35%5D%3E-for-PushBytesBuf"],[6801,"impl-From%3C%5Bu8;+45%5D%3E-for-PushBytesBuf"],[6802,"impl-From%3C%26%5Bu8;+67%5D%3E-for-PushBytesBuf"],[6803,"impl-From%3C%26%5Bu8;+39%5D%3E-for-PushBytesBuf"],[6804,"impl-From%3C%26%5Bu8;+66%5D%3E-for-PushBytesBuf"],[6805,"impl-From%3C%26%5Bu8;+69%5D%3E-for-PushBytesBuf"],[6806,"impl-From%3C%26%5Bu8;+20%5D%3E-for-PushBytesBuf"],[6807,"impl-From%3C%26%5Bu8;+65%5D%3E-for-PushBytesBuf"],[6808,"impl-From%3C%5Bu8;+72%5D%3E-for-PushBytesBuf"],[6809,"impl-From%3C%5Bu8;+17%5D%3E-for-PushBytesBuf"],[6810,"impl-From%3C%26%5Bu8;+45%5D%3E-for-PushBytesBuf"],[6811,"impl-From%3C%26%5Bu8;+26%5D%3E-for-PushBytesBuf"],[6812,"impl-From%3C%26%5Bu8;+46%5D%3E-for-PushBytesBuf"],[6813,"impl-From%3C%26%5Bu8;+64%5D%3E-for-PushBytesBuf"],[6814,"impl-From%3C%26%5Bu8;+3%5D%3E-for-PushBytesBuf"],[6815,"impl-From%3C%5Bu8;+11%5D%3E-for-PushBytesBuf"],[6816,"impl-From%3C%26%5Bu8;+56%5D%3E-for-PushBytesBuf"],[6817,"impl-From%3C%26%5Bu8;+31%5D%3E-for-PushBytesBuf"],[6818,"impl-From%3C%5Bu8;+51%5D%3E-for-PushBytesBuf"],[6819,"impl-From%3C%5Bu8;+61%5D%3E-for-PushBytesBuf"],[6820,"impl-From%3C%26%5Bu8;+23%5D%3E-for-PushBytesBuf"],[6821,"impl-From%3CWPubkeyHash%3E-for-PushBytesBuf"],[6822,"impl-From%3C%26%5Bu8;+73%5D%3E-for-PushBytesBuf"],[6823,"impl-From%3C%5Bu8;+4%5D%3E-for-PushBytesBuf"],[6824,"impl-From%3C%26%5Bu8;+9%5D%3E-for-PushBytesBuf"],[6825,"impl-From%3C%5Bu8;+66%5D%3E-for-PushBytesBuf"],[6826,"impl-From%3C%5Bu8;+40%5D%3E-for-PushBytesBuf"],[6827,"impl-From%3C%5Bu8;+12%5D%3E-for-PushBytesBuf"],[6828,"impl-From%3C%26%5Bu8;+8%5D%3E-for-PushBytesBuf"],[6829,"impl-From%3C%26%5Bu8;+54%5D%3E-for-PushBytesBuf"],[6830,"impl-From%3C%26%5Bu8;+61%5D%3E-for-PushBytesBuf"],[6831,"impl-From%3C%5Bu8;+24%5D%3E-for-PushBytesBuf"],[6832,"impl-From%3C%5Bu8;+23%5D%3E-for-PushBytesBuf"],[6833,"impl-From%3C%26%5Bu8;+60%5D%3E-for-PushBytesBuf"],[6834,"impl-From%3C%5Bu8;+15%5D%3E-for-PushBytesBuf"],[6835,"impl-From%3C%26%5Bu8;+1%5D%3E-for-PushBytesBuf"],[6836,"impl-From%3C%26%5Bu8;+28%5D%3E-for-PushBytesBuf"],[6837,"impl-From%3C%5Bu8;+10%5D%3E-for-PushBytesBuf"],[6838,"impl-From%3C%5Bu8;+2%5D%3E-for-PushBytesBuf"],[6839,"impl-From%3C%26%5Bu8;+18%5D%3E-for-PushBytesBuf"],[6840,"impl-From%3C%26%5Bu8;+36%5D%3E-for-PushBytesBuf"],[6841,"impl-From%3C%5Bu8;+25%5D%3E-for-PushBytesBuf"],[6842,"impl-From%3C%5Bu8;+19%5D%3E-for-PushBytesBuf"],[6843,"impl-From%3C%5Bu8;+32%5D%3E-for-PushBytesBuf"],[6844,"impl-From%3C%5Bu8;+65%5D%3E-for-PushBytesBuf"],[6845,"impl-From%3C%5Bu8;+48%5D%3E-for-PushBytesBuf"],[6846,"impl-From%3C%5Bu8;+47%5D%3E-for-PushBytesBuf"],[6847,"impl-From%3C%26%5Bu8;+16%5D%3E-for-PushBytesBuf"],[6848,"impl-From%3C%5Bu8;+69%5D%3E-for-PushBytesBuf"],[6849,"impl-From%3C%26%5Bu8;+17%5D%3E-for-PushBytesBuf"],[6850,"impl-From%3C%26%5Bu8;+25%5D%3E-for-PushBytesBuf"],[6851,"impl-From%3C%26%5Bu8;+44%5D%3E-for-PushBytesBuf"],[6852,"impl-From%3C%5Bu8;+42%5D%3E-for-PushBytesBuf"],[6853,"impl-From%3C%5Bu8;+46%5D%3E-for-PushBytesBuf"],[6854,"impl-From%3C%26%5Bu8;+49%5D%3E-for-PushBytesBuf"],[6855,"impl-From%3C%26%5Bu8;+4%5D%3E-for-PushBytesBuf"],[6858,"impl-From%3CUintError%3E-for-Error"],[6859,"impl-From%3CInfallible%3E-for-Error"],[6862,"impl-Index%3CRangeFrom%3Cusize%3E%3E-for-PushBytes"],[6863,"impl-Index%3C(Bound%3Cusize%3E,+Bound%3Cusize%3E)%3E-for-PushBytes"],[6864,"impl-Index%3CRangeInclusive%3Cusize%3E%3E-for-PushBytes"],[6865,"impl-Index%3CRangeFull%3E-for-PushBytes"],[6866,"impl-Index%3Cusize%3E-for-PushBytes"],[6867,"impl-Index%3CRangeTo%3Cusize%3E%3E-for-PushBytes"],[6868,"impl-Index%3CRangeToInclusive%3Cusize%3E%3E-for-PushBytes"],[6869,"impl-Index%3CRange%3Cusize%3E%3E-for-PushBytes"],[6948,"impl-TryFrom%3C%26%5Bu8%5D%3E-for-%26PushBytes"],[6949,"impl-TryFrom%3C%26mut+%5Bu8%5D%3E-for-%26mut+PushBytes"],[6996,"impl-Display-for-Error"],[6997,"impl-Debug-for-Error"],[7054,"impl-Debug-for-FromStrError"],[7055,"impl-Display-for-FromStrError"],[7056,"impl-Display-for-TryFromInstructionError"],[7057,"impl-Debug-for-TryFromInstructionError"],[7058,"impl-Display-for-TryFromError"],[7059,"impl-Debug-for-TryFromError"],[7060,"impl-From%3CParseIntError%3E-for-FromStrError"],[7061,"impl-From%3CInfallible%3E-for-FromStrError"],[7063,"impl-From%3CTryFromError%3E-for-FromStrError"],[7064,"impl-From%3CInfallible%3E-for-TryFromInstructionError"],[7066,"impl-From%3CTryFromError%3E-for-TryFromInstructionError"],[7161,"impl-Display-for-ParseOutPointError"],[7162,"impl-Debug-for-ParseOutPointError"],[7163,"impl-Debug-for-InputsIndexError"],[7164,"impl-Display-for-InputsIndexError"],[7165,"impl-Debug-for-OutputsIndexError"],[7166,"impl-Display-for-OutputsIndexError"],[7167,"impl-Debug-for-IndexOutOfBoundsError"],[7168,"impl-Display-for-IndexOutOfBoundsError"],[7169,"impl-Debug-for-Version"],[7170,"impl-Display-for-Version"],[7315,"impl-Debug-for-DecodeError%3CE%3E"],[7316,"impl-Display-for-DecodeError%3CE%3E"],[7318,"impl-From%3CNetwork%3E-for-Params"],[7319,"impl-From%3C%26Network%3E-for-Params"],[7320,"impl-From%3CNetwork%3E-for-%26Params"],[7321,"impl-From%3C%26Network%3E-for-%26Params"],[7408,"impl-Debug-for-Error"],[7409,"impl-Display-for-Error"],[7410,"impl-Display-for-FromHexError"],[7411,"impl-Debug-for-FromHexError"],[7413,"impl-From%3CError%3E-for-Error"],[7414,"impl-From%3CInfallible%3E-for-Error"],[7598,"impl-AsRef%3CPushBytes%3E-for-SerializedSignature"],[7599,"impl-AsRef%3C%5Bu8%5D%3E-for-SerializedSignature"],[7626,"impl-Debug-for-Signature"],[7627,"impl-Display-for-Signature"],[7628,"impl-UpperHex-for-SerializedSignature"],[7629,"impl-Display-for-SerializedSignature"],[7630,"impl-Debug-for-SerializedSignature"],[7631,"impl-LowerHex-for-SerializedSignature"],[7632,"impl-Debug-for-Error"],[7633,"impl-Display-for-Error"],[7636,"impl-From%3CError%3E-for-Error"],[7637,"impl-From%3CHexToBytesError%3E-for-Error"],[7638,"impl-From%3CInfallible%3E-for-Error"],[7640,"impl-From%3CNonStandardSighashTypeError%3E-for-Error"],[7650,"impl-Signature"],[7651,"impl-Serialize-for-Signature"],[7714,"impl-Display-for-PrefixedHexError"],[7715,"impl-Debug-for-PrefixedHexError"],[7716,"impl-Display-for-UnprefixedHexError"],[7717,"impl-Debug-for-UnprefixedHexError"],[7718,"impl-Debug-for-MissingPrefixError"],[7719,"impl-Display-for-MissingPrefixError"],[7720,"impl-Display-for-ContainsPrefixError"],[7721,"impl-Debug-for-ContainsPrefixError"],[7722,"impl-From%3CParseIntError%3E-for-PrefixedHexError"],[7724,"impl-From%3CMissingPrefixError%3E-for-PrefixedHexError"],[7725,"impl-From%3CContainsPrefixError%3E-for-UnprefixedHexError"],[7726,"impl-From%3CParseIntError%3E-for-UnprefixedHexError"],[7813,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[7814,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::hash160::%7Bimpl%2311%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[7826,"impl-UpperHex-for-Hash"],[7827,"impl-Display-for-Hash"],[7828,"impl-LowerHex-for-Hash"],[7829,"impl-Debug-for-Hash"],[7830,"impl-From%3CWPubkeyHash%3E-for-Hash"],[7831,"impl-From%3CPubkeyHash%3E-for-Hash"],[7833,"impl-From%3CXKeyIdentifier%3E-for-Hash"],[7834,"impl-From%3CScriptHash%3E-for-Hash"],[7918,"impl-Debug-for-HexToBytesError"],[7919,"impl-Display-for-HexToBytesError"],[7920,"impl-Display-for-InvalidCharError"],[7921,"impl-Debug-for-InvalidCharError"],[7922,"impl-Debug-for-OddLengthStringError"],[7923,"impl-Display-for-OddLengthStringError"],[7924,"impl-Debug-for-HexToArrayError"],[7925,"impl-Display-for-HexToArrayError"],[7931,"impl-From%3CInvalidCharError%3E-for-HexToBytesError"],[7932,"impl-From%3COddLengthStringError%3E-for-HexToBytesError"],[7935,"impl-From%3CInvalidCharError%3E-for-HexToArrayError"],[7937,"impl-From%3CInvalidLengthError%3E-for-HexToArrayError"],[8047,"impl-Debug-for-DisplayByteSlice%3C\'a%3E"],[8048,"impl-Display-for-DisplayByteSlice%3C\'a%3E"],[8049,"impl-UpperHex-for-DisplayByteSlice%3C\'a%3E"],[8050,"impl-LowerHex-for-DisplayByteSlice%3C\'a%3E"],[8051,"impl-Debug-for-DisplayArray%3C\'a,+LEN%3E"],[8052,"impl-LowerHex-for-DisplayArray%3C\'a,+LEN%3E"],[8053,"impl-UpperHex-for-DisplayArray%3C\'a,+LEN%3E"],[8054,"impl-Display-for-DisplayArray%3C\'a,+LEN%3E"],[8092,"impl-Display-for-InvalidLengthError"],[8093,"impl-Debug-for-InvalidLengthError"],[8141,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[8142,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::ripemd160::%7Bimpl%2314%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[8169,"impl-Write-for-HashEngine"],[8170,"impl-Write-for-HashEngine"],[8171,"impl-Display-for-Hash"],[8172,"impl-LowerHex-for-Hash"],[8173,"impl-Debug-for-Hash"],[8174,"impl-UpperHex-for-Hash"],[8206,"impl-Write-for-HashEngine"],[8207,"impl-Write-for-HashEngine"],[8392,"impl-Debug-for-Unexpected%3C\'a%3E"],[8393,"impl-Display-for-Unexpected%3C\'a%3E"],[8624,"impl-Error-for-Error"],[8625,"impl-Error-for-Error"],[9507,"impl-Debug-for-Error"],[9508,"impl-Display-for-Error"],[9647,"impl-MapAccess%3C\'de%3E-for-MapDeserializer%3C\'de,+I,+E%3E"],[9648,"impl-SeqAccess%3C\'de%3E-for-MapDeserializer%3C\'de,+I,+E%3E"],[9845,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9846,"impl-dyn+Error"],[9847,"impl-dyn+Error+%2B+Send"],[9848,"impl-dyn+Error+%2B+Send"],[9849,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9850,"impl-dyn+Error"],[9851,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9852,"impl-dyn+Error"],[9853,"impl-dyn+Error+%2B+Send"],[9861,"impl-SerializeTupleVariant-for-Impossible%3COk,+Error%3E"],[9862,"impl-SerializeMap-for-Impossible%3COk,+Error%3E"],[9863,"impl-SerializeSeq-for-Impossible%3COk,+Error%3E"],[9864,"impl-SerializeStructVariant-for-Impossible%3COk,+Error%3E"],[9865,"impl-SerializeTuple-for-Impossible%3COk,+Error%3E"],[9866,"impl-SerializeStruct-for-Impossible%3COk,+Error%3E"],[9867,"impl-SerializeTupleStruct-for-Impossible%3COk,+Error%3E"],[9870,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9871,"impl-dyn+Error"],[9872,"impl-dyn+Error+%2B+Send"],[9881,"impl-SerializeSeq-for-Impossible%3COk,+Error%3E"],[9882,"impl-SerializeTuple-for-Impossible%3COk,+Error%3E"],[9890,"impl-SerializeStruct-for-Impossible%3COk,+Error%3E"],[9891,"impl-SerializeTupleStruct-for-Impossible%3COk,+Error%3E"],[9892,"impl-SerializeStructVariant-for-Impossible%3COk,+Error%3E"],[9893,"impl-SerializeTupleVariant-for-Impossible%3COk,+Error%3E"],[9941,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha1::%7Bimpl%2314%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[9942,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[9969,"impl-Write-for-HashEngine"],[9970,"impl-Write-for-HashEngine"],[9971,"impl-Display-for-Hash"],[9972,"impl-Debug-for-Hash"],[9973,"impl-UpperHex-for-Hash"],[9974,"impl-LowerHex-for-Hash"],[10005,"impl-Write-for-HashEngine"],[10006,"impl-Write-for-HashEngine"],[10012,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha256::%7Bimpl%2320%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10013,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10055,"impl-Write-for-HashEngine"],[10056,"impl-Write-for-HashEngine"],[10057,"impl-LowerHex-for-Hash"],[10058,"impl-UpperHex-for-Hash"],[10059,"impl-Display-for-Hash"],[10060,"impl-Debug-for-Hash"],[10061,"impl-Debug-for-Midstate"],[10062,"impl-UpperHex-for-Midstate"],[10063,"impl-Display-for-Midstate"],[10064,"impl-LowerHex-for-Midstate"],[10065,"impl-From%3CDescriptorId%3E-for-Hash"],[10066,"impl-From%3CWScriptHash%3E-for-Hash"],[10119,"impl-Write-for-HashEngine"],[10120,"impl-Write-for-HashEngine"],[10124,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha256d::%7Bimpl%2311%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10125,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10139,"impl-UpperHex-for-Hash"],[10140,"impl-Debug-for-Hash"],[10141,"impl-Display-for-Hash"],[10142,"impl-LowerHex-for-Hash"],[10143,"impl-From%3CFilterHeader%3E-for-Hash"],[10144,"impl-From%3CTxMerkleNode%3E-for-Hash"],[10145,"impl-From%3CWtxid%3E-for-Hash"],[10146,"impl-From%3CWitnessMerkleNode%3E-for-Hash"],[10147,"impl-From%3CBlockHash%3E-for-Hash"],[10148,"impl-From%3CFilterHash%3E-for-Hash"],[10149,"impl-From%3CLegacySighash%3E-for-Hash"],[10150,"impl-From%3CSegwitV0Sighash%3E-for-Hash"],[10152,"impl-From%3CTxid%3E-for-Hash"],[10153,"impl-From%3CWitnessCommitment%3E-for-Hash"],[10154,"impl-From%3CHash%3E-for-Hash"],[10178,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash%3CT%3E"],[10179,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha256t::%7Bimpl%2311%7D::%7Bconstant%230%7D%5D%3E-for-Hash%3CT%3E"],[10193,"impl-Display-for-Hash%3CT%3E"],[10194,"impl-UpperHex-for-Hash%3CT%3E"],[10195,"impl-LowerHex-for-Hash%3CT%3E"],[10196,"impl-Debug-for-Hash%3CT%3E"],[10197,"impl-From%3CTapTweakHash%3E-for-Hash%3CTapTweakTag%3E"],[10198,"impl-From%3CTapLeafHash%3E-for-Hash%3CTapLeafTag%3E"],[10200,"impl-From%3CTapSighash%3E-for-Hash%3CTapSighashTag%3E"],[10201,"impl-From%3CTapNodeHash%3E-for-Hash%3CTapBranchTag%3E"],[10225,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10226,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha384::%7Bimpl%2313%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10243,"impl-Debug-for-Hash"],[10244,"impl-Display-for-Hash"],[10245,"impl-UpperHex-for-Hash"],[10246,"impl-LowerHex-for-Hash"],[10281,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10282,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha512::%7Bimpl%2315%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10309,"impl-Write-for-HashEngine"],[10310,"impl-Write-for-HashEngine"],[10311,"impl-UpperHex-for-Hash"],[10312,"impl-LowerHex-for-Hash"],[10313,"impl-Debug-for-Hash"],[10314,"impl-Display-for-Hash"],[10345,"impl-Write-for-HashEngine"],[10346,"impl-Write-for-HashEngine"],[10351,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10352,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha512_256::%7Bimpl%2313%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10369,"impl-LowerHex-for-Hash"],[10370,"impl-Display-for-Hash"],[10371,"impl-UpperHex-for-Hash"],[10372,"impl-Debug-for-Hash"],[10408,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::siphash24::%7Bimpl%2315%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10409,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10441,"impl-Write-for-HashEngine"],[10442,"impl-Write-for-HashEngine"],[10443,"impl-Debug-for-Hash"],[10444,"impl-Display-for-Hash"],[10445,"impl-UpperHex-for-Hash"],[10446,"impl-LowerHex-for-Hash"],[10493,"impl-Write-for-HashEngine"],[10494,"impl-Write-for-HashEngine"],[10544,"impl-BufRead-for-FromStd%3CT%3E"],[10545,"impl-BufRead-for-FromStd%3CT%3E"],[10546,"impl-BufRead-for-ToStd%3CT%3E"],[10547,"impl-BufRead-for-ToStd%3CT%3E"],[10585,"impl-BufRead-for-FromStd%3CT%3E"],[10586,"impl-BufRead-for-FromStd%3CT%3E"],[10587,"impl-BufRead-for-ToStd%3CT%3E"],[10588,"impl-BufRead-for-ToStd%3CT%3E"],[10592,"impl-Write-for-FromStd%3CT%3E"],[10593,"impl-Write-for-FromStd%3CT%3E"],[10594,"impl-Write-for-ToStd%3CT%3E"],[10595,"impl-Write-for-ToStd%3CT%3E"],[10596,"impl-Write-for-Sink"],[10597,"impl-Write-for-Sink"],[10598,"impl-Display-for-Error"],[10599,"impl-Debug-for-Error"],[10606,"impl-From%3CError%3E-for-Error"],[10608,"impl-From%3CErrorKind%3E-for-Error"],[10642,"impl-Read-for-FromStd%3CT%3E"],[10643,"impl-Read-for-FromStd%3CT%3E"],[10644,"impl-Read-for-ToStd%3CT%3E"],[10645,"impl-Read-for-ToStd%3CT%3E"],[10652,"impl-Read-for-FromStd%3CT%3E"],[10653,"impl-Read-for-FromStd%3CT%3E"],[10654,"impl-Read-for-ToStd%3CT%3E"],[10655,"impl-Read-for-ToStd%3CT%3E"],[10730,"impl-Write-for-FromStd%3CT%3E"],[10731,"impl-Write-for-FromStd%3CT%3E"],[10732,"impl-Write-for-ToStd%3CT%3E"],[10733,"impl-Write-for-ToStd%3CT%3E"],[10734,"impl-Write-for-Sink"],[10735,"impl-Write-for-Sink"],[10736,"impl-Write-for-FromStd%3CT%3E"],[10737,"impl-Write-for-FromStd%3CT%3E"],[10738,"impl-Write-for-ToStd%3CT%3E"],[10739,"impl-Write-for-ToStd%3CT%3E"],[10741,"impl-Write-for-Sink"],[10742,"impl-Write-for-Sink"],[10904,"impl-LowerHex-for-TweakedPublicKey"],[10905,"impl-Display-for-TweakedPublicKey"],[10906,"impl-Debug-for-TweakedPublicKey"],[10908,"impl-Display-for-FromSliceError"],[10909,"impl-Debug-for-FromSliceError"],[10910,"impl-Debug-for-FromWifError"],[10911,"impl-Display-for-FromWifError"],[10912,"impl-Debug-for-ParsePublicKeyError"],[10913,"impl-Display-for-ParsePublicKeyError"],[10914,"impl-Debug-for-ParseCompressedPublicKeyError"],[10915,"impl-Display-for-ParseCompressedPublicKeyError"],[10916,"impl-Debug-for-UncompressedPublicKeyError"],[10917,"impl-Display-for-UncompressedPublicKeyError"],[10918,"impl-Debug-for-InvalidBase58PayloadLengthError"],[10919,"impl-Display-for-InvalidBase58PayloadLengthError"],[10920,"impl-Display-for-InvalidAddressVersionError"],[10921,"impl-Debug-for-InvalidAddressVersionError"],[10931,"impl-From%3CError%3E-for-FromSliceError"],[10932,"impl-From%3CInfallible%3E-for-FromSliceError"],[10933,"impl-From%3CInvalidBase58PayloadLengthError%3E-for-FromWifError"],[10934,"impl-From%3CInfallible%3E-for-FromWifError"],[10935,"impl-From%3CInvalidAddressVersionError%3E-for-FromWifError"],[10937,"impl-From%3CError%3E-for-FromWifError"],[10938,"impl-From%3CError%3E-for-FromWifError"],[10939,"impl-From%3CFromSliceError%3E-for-ParsePublicKeyError"],[10940,"impl-From%3CInfallible%3E-for-ParsePublicKeyError"],[10942,"impl-From%3CInfallible%3E-for-ParseCompressedPublicKeyError"],[10944,"impl-From%3CError%3E-for-ParseCompressedPublicKeyError"],[10945,"impl-From%3CHexToArrayError%3E-for-ParseCompressedPublicKeyError"],[11009,"impl-Serialize-for-TweakedPublicKey"],[11010,"impl-TweakedPublicKey"],[11057,"impl-TryFrom%3Cu8%3E-for-Parity"],[11058,"impl-TryFrom%3Ci32%3E-for-Parity"],[11147,"impl-Display-for-MerkleBlockError"],[11148,"impl-Debug-for-MerkleBlockError"],[11197,"impl-Display-for-ParseNetworkError"],[11198,"impl-Debug-for-ParseNetworkError"],[11199,"impl-Debug-for-UnknownChainHashError"],[11200,"impl-Display-for-UnknownChainHashError"],[11244,"impl-AsMut%3C%5Bu8;+4%5D%3E-for-Magic"],[11245,"impl-AsMut%3C%5Bu8%5D%3E-for-Magic"],[11246,"impl-AsRef%3C%5Bu8;+4%5D%3E-for-Magic"],[11247,"impl-AsRef%3C%5Bu8%5D%3E-for-Magic"],[11254,"impl-Borrow%3C%5Bu8;+4%5D%3E-for-Magic"],[11255,"impl-Borrow%3C%5Bu8%5D%3E-for-Magic"],[11262,"impl-BorrowMut%3C%5Bu8;+4%5D%3E-for-Magic"],[11263,"impl-BorrowMut%3C%5Bu8%5D%3E-for-Magic"],[11301,"impl-Debug-for-ServiceFlags"],[11302,"impl-UpperHex-for-ServiceFlags"],[11303,"impl-LowerHex-for-ServiceFlags"],[11304,"impl-Display-for-ServiceFlags"],[11305,"impl-Debug-for-Magic"],[11306,"impl-UpperHex-for-Magic"],[11307,"impl-LowerHex-for-Magic"],[11308,"impl-Display-for-Magic"],[11309,"impl-Display-for-ParseMagicError"],[11310,"impl-Debug-for-ParseMagicError"],[11311,"impl-Display-for-UnknownMagicError"],[11312,"impl-Debug-for-UnknownMagicError"],[11516,"impl-Debug-for-CommandString"],[11517,"impl-Display-for-CommandString"],[11518,"impl-Debug-for-CommandStringError"],[11519,"impl-Display-for-CommandStringError"],[11542,"impl-TryFrom%3C%26str%3E-for-CommandString"],[11543,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-CommandString"],[11545,"impl-TryFrom%3CString%3E-for-CommandString"],[12018,"impl-Debug-for-ParseIntError"],[12019,"impl-Display-for-ParseIntError"],[12228,"impl-Debug-for-Error"],[12229,"impl-Display-for-Error"],[12233,"impl-Debug-for-GetKeyError"],[12234,"impl-Display-for-GetKeyError"],[12237,"impl-Display-for-SignError"],[12238,"impl-Debug-for-SignError"],[12239,"impl-Debug-for-ExtractTxError"],[12240,"impl-Display-for-ExtractTxError"],[12241,"impl-Debug-for-IndexOutOfBoundsError"],[12242,"impl-Display-for-IndexOutOfBoundsError"],[12243,"impl-Debug-for-PsbtParseError"],[12244,"impl-Display-for-PsbtParseError"],[12245,"impl-Display-for-PsbtSighashType"],[12246,"impl-Debug-for-PsbtSighashType"],[12248,"impl-From%3CInfallible%3E-for-Error"],[12249,"impl-From%3CError%3E-for-Error"],[12250,"impl-From%3CFromSliceError%3E-for-Error"],[12252,"impl-From%3CError%3E-for-Error"],[12257,"impl-From%3CInfallible%3E-for-GetKeyError"],[12258,"impl-From%3CError%3E-for-GetKeyError"],[12261,"impl-From%3CTaprootError%3E-for-SignError"],[12262,"impl-From%3CP2wpkhError%3E-for-SignError"],[12263,"impl-From%3CIndexOutOfBoundsError%3E-for-SignError"],[12265,"impl-From%3CInfallible%3E-for-SignError"],[12272,"impl-From%3CTapSighashType%3E-for-PsbtSighashType"],[12274,"impl-From%3CEcdsaSighashType%3E-for-PsbtSighashType"],[12465,"impl-Display-for-Key"],[12466,"impl-Debug-for-Key"],[12676,"impl-Display-for-PublicKey"],[12677,"impl-Debug-for-PublicKey"],[12678,"impl-LowerHex-for-PublicKey"],[12679,"impl-Display-for-InvalidParityValue"],[12680,"impl-Debug-for-InvalidParityValue"],[12682,"impl-LowerHex-for-Message"],[12683,"impl-Display-for-Message"],[12684,"impl-Debug-for-Message"],[12685,"impl-Display-for-Error"],[12686,"impl-Debug-for-Error"],[12693,"impl-From%3C%26Keypair%3E-for-SecretKey"],[12694,"impl-From%3CT%3E-for-SecretKey"],[12696,"impl-From%3CKeypair%3E-for-SecretKey"],[12697,"impl-From%3CPublicKey%3E-for-PublicKey"],[12698,"impl-From%3CKeypair%3E-for-PublicKey"],[12700,"impl-From%3C%26Keypair%3E-for-PublicKey"],[12704,"impl-From%3CSegwitV0Sighash%3E-for-Message"],[12705,"impl-From%3CLegacySighash%3E-for-Message"],[12706,"impl-From%3CTapSighash%3E-for-Message"],[12708,"impl-From%3CT%3E-for-Message"],[12780,"impl-Serialize-for-PublicKey"],[12781,"impl-PublicKey"],[12945,"impl-PartialEq-for-SerializedSignature"],[12946,"impl-PartialEq%3C%5Bu8%5D%3E-for-SerializedSignature"],[12959,"impl-Debug-for-SerializedSignature"],[12960,"impl-Display-for-SerializedSignature"],[12961,"impl-Debug-for-Signature"],[12962,"impl-Display-for-Signature"],[12966,"impl-From%3CSignature%3E-for-SerializedSignature"],[12968,"impl-From%3C%26Signature%3E-for-SerializedSignature"],[12985,"impl-IntoIterator-for-%26SerializedSignature"],[12986,"impl-IntoIterator-for-SerializedSignature"],[12992,"impl-PartialOrd%3C%5Bu8%5D%3E-for-SerializedSignature"],[12993,"impl-PartialOrd-for-SerializedSignature"],[13012,"impl-TryFrom%3C%26SerializedSignature%3E-for-Signature"],[13014,"impl-TryFrom%3CSerializedSignature%3E-for-Signature"],[13081,"impl-Debug-for-ElligatorSwift"],[13082,"impl-Display-for-ElligatorSwift"],[13083,"impl-LowerHex-for-ElligatorSwift"],[13482,"impl-Write-for-HmacEngine%3CT%3E"],[13483,"impl-Write-for-HmacEngine%3CT%3E"],[13484,"impl-Debug-for-FromSliceError"],[13485,"impl-Display-for-FromSliceError"],[13486,"impl-Display-for-Hmac%3CT%3E"],[13487,"impl-Debug-for-Hmac%3CT%3E"],[13488,"impl-LowerHex-for-Hmac%3CT%3E"],[13505,"impl-Index%3CRangeFrom%3Cusize%3E%3E-for-Hmac%3CT%3E"],[13506,"impl-Index%3CRange%3Cusize%3E%3E-for-Hmac%3CT%3E"],[13507,"impl-Index%3CRangeTo%3Cusize%3E%3E-for-Hmac%3CT%3E"],[13508,"impl-Index%3CRangeFull%3E-for-Hmac%3CT%3E"],[13509,"impl-Index%3Cusize%3E-for-Hmac%3CT%3E"],[13544,"impl-Write-for-HmacEngine%3CT%3E"],[13545,"impl-Write-for-HmacEngine%3CT%3E"],[13561,"impl-Debug-for-Error"],[13562,"impl-Display-for-Error"],[13564,"impl-From%3CError%3E-for-Error"],[13565,"impl-From%3CNonZero%3Cu32%3E%3E-for-Error"],[13676,"impl-Debug-for-BernoulliError"],[13677,"impl-Display-for-BernoulliError"],[13685,"impl-Debug-for-WeightedError"],[13686,"impl-Display-for-WeightedError"],[13700,"impl-From%3CRange%3CX%3E%3E-for-Uniform%3CX%3E"],[13701,"impl-From%3CRangeInclusive%3CX%3E%3E-for-Uniform%3CX%3E"],[13728,"impl-Distribution%3Cf64%3E-for-OpenClosed01"],[13729,"impl-Distribution%3Cf32%3E-for-OpenClosed01"],[13730,"impl-Distribution%3Cf64%3E-for-Open01"],[13731,"impl-Distribution%3Cf32%3E-for-Open01"],[13736,"impl-Distribution%3Cbool%3E-for-Standard"],[13737,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2340%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13738,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2327%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13739,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I,+J,+K)%3E-for-Standard"],[13740,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2350%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13741,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2349%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13742,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2329%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13743,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2338%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13744,"impl-Distribution%3Cu64%3E-for-Standard"],[13745,"impl-Distribution%3Ci16%3E-for-Standard"],[13746,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2354%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13747,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2334%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13748,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2335%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13749,"impl-Distribution%3Cchar%3E-for-Standard"],[13750,"impl-Distribution%3CWrapping%3CT%3E%3E-for-Standard"],[13751,"impl-Distribution%3Cisize%3E-for-Standard"],[13752,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2337%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13753,"impl-Distribution%3Ci8%3E-for-Standard"],[13754,"impl-Distribution%3Cu128%3E-for-Standard"],[13755,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2345%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13756,"impl-Distribution%3Ci32%3E-for-Standard"],[13757,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2352%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13758,"impl-Distribution%3C(A,+B,+C)%3E-for-Standard"],[13759,"impl-Distribution%3C()%3E-for-Standard"],[13760,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2342%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13761,"impl-Distribution%3Ci128%3E-for-Standard"],[13762,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I)%3E-for-Standard"],[13763,"impl-Distribution%3CNonZero%3Cu8%3E%3E-for-Standard"],[13764,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2343%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13765,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I,+J,+K,+L)%3E-for-Standard"],[13766,"impl-Distribution%3Cf32%3E-for-Standard"],[13767,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2331%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13768,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2328%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13769,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H)%3E-for-Standard"],[13770,"impl-Distribution%3CNonZero%3Cu32%3E%3E-for-Standard"],[13771,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2341%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13772,"impl-Distribution%3Cf64%3E-for-Standard"],[13773,"impl-Distribution%3C(A,+B,+C,+D)%3E-for-Standard"],[13774,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2332%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13775,"impl-Distribution%3CNonZero%3Cu128%3E%3E-for-Standard"],[13776,"impl-Distribution%3CNonZero%3Cu16%3E%3E-for-Standard"],[13777,"impl-Distribution%3Cusize%3E-for-Standard"],[13778,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2325%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13779,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2355%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13780,"impl-Distribution%3C(A,+B,+C,+D,+E,+F)%3E-for-Standard"],[13781,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2324%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13782,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I,+J)%3E-for-Standard"],[13783,"impl-Distribution%3C(A,+B)%3E-for-Standard"],[13784,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2346%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13785,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2348%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13786,"impl-Distribution%3COption%3CT%3E%3E-for-Standard"],[13787,"impl-Distribution%3Cu8%3E-for-Standard"],[13788,"impl-Distribution%3Cu16%3E-for-Standard"],[13789,"impl-Distribution%3Cu32%3E-for-Standard"],[13790,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2326%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13791,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2353%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13792,"impl-Distribution%3Ci64%3E-for-Standard"],[13793,"impl-Distribution%3C(A,)%3E-for-Standard"],[13794,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2336%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13795,"impl-Distribution%3CNonZero%3Cu64%3E%3E-for-Standard"],[13796,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2330%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13797,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2333%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13798,"impl-Distribution%3C(A,+B,+C,+D,+E)%3E-for-Standard"],[13799,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2339%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13800,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2347%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13801,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2344%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13802,"impl-Distribution%3CNonZero%3Cusize%3E%3E-for-Standard"],[13803,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G)%3E-for-Standard"],[13804,"impl-Distribution%3C%5BT;+32%5D%3E-for-Standard"],[13805,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2351%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13917,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13918,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13919,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13920,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13921,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13922,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13923,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13924,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13925,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13926,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13927,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13928,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13930,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13931,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13934,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13935,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13936,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13937,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13938,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13939,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13940,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13941,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13942,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13943,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13944,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13945,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13947,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13948,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13951,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13952,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13953,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13954,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13955,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13956,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13957,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13958,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13959,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13960,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13961,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13962,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13964,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13965,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13969,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13970,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13971,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13972,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13973,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13974,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13975,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13976,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13977,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13978,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13979,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13980,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13981,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13982,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13984,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13985,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13986,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13987,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13988,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13989,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13990,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13991,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13992,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13993,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13994,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13995,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[14157,"impl-Debug-for-ReadError"],[14158,"impl-Display-for-ReadError"],[14260,"impl-From%3CVec%3Cusize%3E%3E-for-IndexVec"],[14262,"impl-From%3CVec%3Cu32%3E%3E-for-IndexVec"],[14309,"impl-Display-for-OutOfRangeError"],[14310,"impl-Debug-for-OutOfRangeError"],[14333,"impl-LowerHex-for-Signature"],[14334,"impl-Display-for-Signature"],[14335,"impl-Debug-for-Signature"],[14343,"impl-Serialize-for-Signature"],[14344,"impl-Signature"],[14508,"impl-Debug-for-PrevoutsSizeError"],[14509,"impl-Display-for-PrevoutsSizeError"],[14510,"impl-Display-for-PrevoutsKindError"],[14511,"impl-Debug-for-PrevoutsKindError"],[14512,"impl-Display-for-PrevoutsIndexError"],[14513,"impl-Debug-for-PrevoutsIndexError"],[14514,"impl-Display-for-InvalidSighashTypeError"],[14515,"impl-Debug-for-InvalidSighashTypeError"],[14516,"impl-Display-for-NonStandardSighashTypeError"],[14517,"impl-Debug-for-NonStandardSighashTypeError"],[14518,"impl-Display-for-SighashTypeParseError"],[14519,"impl-Debug-for-SighashTypeParseError"],[14521,"impl-Display-for-TaprootError"],[14522,"impl-Debug-for-TaprootError"],[14523,"impl-Display-for-P2wpkhError"],[14524,"impl-Debug-for-P2wpkhError"],[14525,"impl-Debug-for-SingleMissingOutputError"],[14526,"impl-Display-for-SingleMissingOutputError"],[14527,"impl-Display-for-AnnexError"],[14528,"impl-Debug-for-AnnexError"],[14529,"impl-Display-for-SigningDataError%3CE%3E"],[14530,"impl-Debug-for-SigningDataError%3CE%3E"],[14543,"impl-From%3CInfallible%3E-for-TaprootError"],[14544,"impl-From%3CPrevoutsKindError%3E-for-TaprootError"],[14545,"impl-From%3CInputsIndexError%3E-for-TaprootError"],[14546,"impl-From%3CPrevoutsSizeError%3E-for-TaprootError"],[14547,"impl-From%3CPrevoutsIndexError%3E-for-TaprootError"],[14549,"impl-From%3CInputsIndexError%3E-for-P2wpkhError"],[14550,"impl-From%3CInfallible%3E-for-P2wpkhError"],[14555,"impl-From%3CInfallible%3E-for-SigningDataError%3CE%3E"],[14557,"impl-From%3CError%3E-for-SigningDataError%3CE%3E"],[14722,"impl-Display-for-MessageSignatureError"],[14723,"impl-Debug-for-MessageSignatureError"],[14724,"impl-Display-for-MessageSignature"],[14725,"impl-Debug-for-MessageSignature"],[14727,"impl-From%3CError%3E-for-MessageSignatureError"],[14728,"impl-From%3CInfallible%3E-for-MessageSignatureError"],[14973,"impl-Display-for-SigFromSliceError"],[14974,"impl-Debug-for-SigFromSliceError"],[14978,"impl-Debug-for-IncompleteBuilderError"],[14979,"impl-Display-for-IncompleteBuilderError"],[14980,"impl-Debug-for-HiddenNodesError"],[14981,"impl-Display-for-HiddenNodesError"],[14988,"impl-Debug-for-FutureLeafVersion"],[14989,"impl-UpperHex-for-FutureLeafVersion"],[14990,"impl-LowerHex-for-FutureLeafVersion"],[14991,"impl-Display-for-FutureLeafVersion"],[14992,"impl-LowerHex-for-LeafVersion"],[14993,"impl-UpperHex-for-LeafVersion"],[14994,"impl-Display-for-LeafVersion"],[14995,"impl-Debug-for-LeafVersion"],[14996,"impl-Display-for-TaprootBuilderError"],[14997,"impl-Debug-for-TaprootBuilderError"],[14998,"impl-Debug-for-TaprootError"],[14999,"impl-Display-for-TaprootError"],[15003,"impl-From%3CInvalidSighashTypeError%3E-for-SigFromSliceError"],[15004,"impl-From%3CError%3E-for-SigFromSliceError"],[15005,"impl-From%3CInfallible%3E-for-SigFromSliceError"],[15007,"impl-From%3C%5BTapNodeHash;+99%5D%3E-for-TaprootMerkleBranch"],[15008,"impl-From%3C%5BTapNodeHash;+118%5D%3E-for-TaprootMerkleBranch"],[15009,"impl-From%3C%5BTapNodeHash;+65%5D%3E-for-TaprootMerkleBranch"],[15010,"impl-From%3C%5BTapNodeHash;+35%5D%3E-for-TaprootMerkleBranch"],[15011,"impl-From%3C%5BTapNodeHash;+107%5D%3E-for-TaprootMerkleBranch"],[15012,"impl-From%3C%5BTapNodeHash;+27%5D%3E-for-TaprootMerkleBranch"],[15013,"impl-From%3C%5BTapNodeHash;+128%5D%3E-for-TaprootMerkleBranch"],[15014,"impl-From%3C%5BTapNodeHash;+55%5D%3E-for-TaprootMerkleBranch"],[15015,"impl-From%3C%5BTapNodeHash;+10%5D%3E-for-TaprootMerkleBranch"],[15016,"impl-From%3C%5BTapNodeHash;+115%5D%3E-for-TaprootMerkleBranch"],[15017,"impl-From%3C%5BTapNodeHash;+21%5D%3E-for-TaprootMerkleBranch"],[15018,"impl-From%3C%5BTapNodeHash;+61%5D%3E-for-TaprootMerkleBranch"],[15019,"impl-From%3C%5BTapNodeHash;+77%5D%3E-for-TaprootMerkleBranch"],[15020,"impl-From%3C%5BTapNodeHash;+76%5D%3E-for-TaprootMerkleBranch"],[15021,"impl-From%3C%5BTapNodeHash;+81%5D%3E-for-TaprootMerkleBranch"],[15022,"impl-From%3C%5BTapNodeHash;+45%5D%3E-for-TaprootMerkleBranch"],[15023,"impl-From%3C%5BTapNodeHash;+74%5D%3E-for-TaprootMerkleBranch"],[15024,"impl-From%3C%5BTapNodeHash;+116%5D%3E-for-TaprootMerkleBranch"],[15026,"impl-From%3C%5BTapNodeHash;+32%5D%3E-for-TaprootMerkleBranch"],[15027,"impl-From%3C%5BTapNodeHash;+36%5D%3E-for-TaprootMerkleBranch"],[15028,"impl-From%3C%5BTapNodeHash;+72%5D%3E-for-TaprootMerkleBranch"],[15029,"impl-From%3C%5BTapNodeHash;+37%5D%3E-for-TaprootMerkleBranch"],[15030,"impl-From%3C%5BTapNodeHash;+93%5D%3E-for-TaprootMerkleBranch"],[15031,"impl-From%3C%5BTapNodeHash;+84%5D%3E-for-TaprootMerkleBranch"],[15032,"impl-From%3C%5BTapNodeHash;+79%5D%3E-for-TaprootMerkleBranch"],[15033,"impl-From%3C%5BTapNodeHash;+92%5D%3E-for-TaprootMerkleBranch"],[15034,"impl-From%3C%5BTapNodeHash;+97%5D%3E-for-TaprootMerkleBranch"],[15035,"impl-From%3C%5BTapNodeHash;+82%5D%3E-for-TaprootMerkleBranch"],[15036,"impl-From%3C%5BTapNodeHash;+113%5D%3E-for-TaprootMerkleBranch"],[15037,"impl-From%3C%5BTapNodeHash;+60%5D%3E-for-TaprootMerkleBranch"],[15038,"impl-From%3C%5BTapNodeHash;+88%5D%3E-for-TaprootMerkleBranch"],[15039,"impl-From%3C%5BTapNodeHash;+127%5D%3E-for-TaprootMerkleBranch"],[15040,"impl-From%3C%5BTapNodeHash;+18%5D%3E-for-TaprootMerkleBranch"],[15041,"impl-From%3C%5BTapNodeHash;+47%5D%3E-for-TaprootMerkleBranch"],[15042,"impl-From%3C%5BTapNodeHash;+86%5D%3E-for-TaprootMerkleBranch"],[15043,"impl-From%3C%5BTapNodeHash;+33%5D%3E-for-TaprootMerkleBranch"],[15044,"impl-From%3C%5BTapNodeHash;+70%5D%3E-for-TaprootMerkleBranch"],[15045,"impl-From%3C%5BTapNodeHash;+71%5D%3E-for-TaprootMerkleBranch"],[15046,"impl-From%3C%5BTapNodeHash;+6%5D%3E-for-TaprootMerkleBranch"],[15047,"impl-From%3C%5BTapNodeHash;+41%5D%3E-for-TaprootMerkleBranch"],[15048,"impl-From%3C%5BTapNodeHash;+109%5D%3E-for-TaprootMerkleBranch"],[15049,"impl-From%3C%5BTapNodeHash;+120%5D%3E-for-TaprootMerkleBranch"],[15050,"impl-From%3C%5BTapNodeHash;+117%5D%3E-for-TaprootMerkleBranch"],[15051,"impl-From%3C%5BTapNodeHash;+30%5D%3E-for-TaprootMerkleBranch"],[15052,"impl-From%3C%5BTapNodeHash;+85%5D%3E-for-TaprootMerkleBranch"],[15053,"impl-From%3C%5BTapNodeHash;+95%5D%3E-for-TaprootMerkleBranch"],[15054,"impl-From%3C%5BTapNodeHash;+51%5D%3E-for-TaprootMerkleBranch"],[15055,"impl-From%3C%5BTapNodeHash;+90%5D%3E-for-TaprootMerkleBranch"],[15056,"impl-From%3C%5BTapNodeHash;+40%5D%3E-for-TaprootMerkleBranch"],[15057,"impl-From%3C%5BTapNodeHash;+14%5D%3E-for-TaprootMerkleBranch"],[15058,"impl-From%3C%5BTapNodeHash;+16%5D%3E-for-TaprootMerkleBranch"],[15059,"impl-From%3C%5BTapNodeHash;+102%5D%3E-for-TaprootMerkleBranch"],[15060,"impl-From%3C%5BTapNodeHash;+54%5D%3E-for-TaprootMerkleBranch"],[15061,"impl-From%3C%5BTapNodeHash;+24%5D%3E-for-TaprootMerkleBranch"],[15062,"impl-From%3C%5BTapNodeHash;+3%5D%3E-for-TaprootMerkleBranch"],[15063,"impl-From%3C%5BTapNodeHash;+50%5D%3E-for-TaprootMerkleBranch"],[15064,"impl-From%3C%5BTapNodeHash;+1%5D%3E-for-TaprootMerkleBranch"],[15065,"impl-From%3C%5BTapNodeHash;+9%5D%3E-for-TaprootMerkleBranch"],[15066,"impl-From%3C%5BTapNodeHash;+5%5D%3E-for-TaprootMerkleBranch"],[15067,"impl-From%3C%5BTapNodeHash;+31%5D%3E-for-TaprootMerkleBranch"],[15068,"impl-From%3C%5BTapNodeHash;+29%5D%3E-for-TaprootMerkleBranch"],[15069,"impl-From%3C%5BTapNodeHash;+62%5D%3E-for-TaprootMerkleBranch"],[15070,"impl-From%3C%5BTapNodeHash;+101%5D%3E-for-TaprootMerkleBranch"],[15071,"impl-From%3C%5BTapNodeHash;+58%5D%3E-for-TaprootMerkleBranch"],[15072,"impl-From%3C%5BTapNodeHash;+111%5D%3E-for-TaprootMerkleBranch"],[15073,"impl-From%3C%5BTapNodeHash;+28%5D%3E-for-TaprootMerkleBranch"],[15074,"impl-From%3C%5BTapNodeHash;+80%5D%3E-for-TaprootMerkleBranch"],[15075,"impl-From%3C%5BTapNodeHash;+39%5D%3E-for-TaprootMerkleBranch"],[15076,"impl-From%3C%5BTapNodeHash;+12%5D%3E-for-TaprootMerkleBranch"],[15077,"impl-From%3C%5BTapNodeHash;+66%5D%3E-for-TaprootMerkleBranch"],[15078,"impl-From%3C%5BTapNodeHash;+13%5D%3E-for-TaprootMerkleBranch"],[15079,"impl-From%3C%5BTapNodeHash;+53%5D%3E-for-TaprootMerkleBranch"],[15080,"impl-From%3C%5BTapNodeHash;+63%5D%3E-for-TaprootMerkleBranch"],[15081,"impl-From%3C%5BTapNodeHash;+75%5D%3E-for-TaprootMerkleBranch"],[15082,"impl-From%3C%5BTapNodeHash;+67%5D%3E-for-TaprootMerkleBranch"],[15083,"impl-From%3C%5BTapNodeHash;+87%5D%3E-for-TaprootMerkleBranch"],[15084,"impl-From%3C%5BTapNodeHash;+68%5D%3E-for-TaprootMerkleBranch"],[15085,"impl-From%3C%5BTapNodeHash;+2%5D%3E-for-TaprootMerkleBranch"],[15086,"impl-From%3C%5BTapNodeHash;+23%5D%3E-for-TaprootMerkleBranch"],[15087,"impl-From%3C%5BTapNodeHash;+78%5D%3E-for-TaprootMerkleBranch"],[15088,"impl-From%3C%5BTapNodeHash;+105%5D%3E-for-TaprootMerkleBranch"],[15089,"impl-From%3C%5BTapNodeHash;+114%5D%3E-for-TaprootMerkleBranch"],[15090,"impl-From%3C%5BTapNodeHash;+123%5D%3E-for-TaprootMerkleBranch"],[15091,"impl-From%3C%5BTapNodeHash;+49%5D%3E-for-TaprootMerkleBranch"],[15092,"impl-From%3C%5BTapNodeHash;+126%5D%3E-for-TaprootMerkleBranch"],[15093,"impl-From%3C%5BTapNodeHash;+26%5D%3E-for-TaprootMerkleBranch"],[15094,"impl-From%3C%5BTapNodeHash;+122%5D%3E-for-TaprootMerkleBranch"],[15095,"impl-From%3C%5BTapNodeHash;+46%5D%3E-for-TaprootMerkleBranch"],[15096,"impl-From%3C%5BTapNodeHash;+22%5D%3E-for-TaprootMerkleBranch"],[15097,"impl-From%3C%5BTapNodeHash;+124%5D%3E-for-TaprootMerkleBranch"],[15098,"impl-From%3C%5BTapNodeHash;+91%5D%3E-for-TaprootMerkleBranch"],[15099,"impl-From%3C%5BTapNodeHash;+56%5D%3E-for-TaprootMerkleBranch"],[15100,"impl-From%3C%5BTapNodeHash;+100%5D%3E-for-TaprootMerkleBranch"],[15101,"impl-From%3C%5BTapNodeHash;+15%5D%3E-for-TaprootMerkleBranch"],[15102,"impl-From%3C%5BTapNodeHash;+17%5D%3E-for-TaprootMerkleBranch"],[15103,"impl-From%3C%5BTapNodeHash;+112%5D%3E-for-TaprootMerkleBranch"],[15104,"impl-From%3C%5BTapNodeHash;+64%5D%3E-for-TaprootMerkleBranch"],[15105,"impl-From%3C%5BTapNodeHash;+106%5D%3E-for-TaprootMerkleBranch"],[15106,"impl-From%3C%5BTapNodeHash;+110%5D%3E-for-TaprootMerkleBranch"],[15107,"impl-From%3C%5BTapNodeHash;+0%5D%3E-for-TaprootMerkleBranch"],[15108,"impl-From%3C%5BTapNodeHash;+7%5D%3E-for-TaprootMerkleBranch"],[15109,"impl-From%3C%5BTapNodeHash;+4%5D%3E-for-TaprootMerkleBranch"],[15110,"impl-From%3C%5BTapNodeHash;+125%5D%3E-for-TaprootMerkleBranch"],[15111,"impl-From%3C%5BTapNodeHash;+59%5D%3E-for-TaprootMerkleBranch"],[15112,"impl-From%3C%5BTapNodeHash;+20%5D%3E-for-TaprootMerkleBranch"],[15113,"impl-From%3C%5BTapNodeHash;+34%5D%3E-for-TaprootMerkleBranch"],[15114,"impl-From%3C%5BTapNodeHash;+83%5D%3E-for-TaprootMerkleBranch"],[15115,"impl-From%3C%5BTapNodeHash;+94%5D%3E-for-TaprootMerkleBranch"],[15116,"impl-From%3C%5BTapNodeHash;+19%5D%3E-for-TaprootMerkleBranch"],[15117,"impl-From%3C%5BTapNodeHash;+25%5D%3E-for-TaprootMerkleBranch"],[15118,"impl-From%3C%5BTapNodeHash;+48%5D%3E-for-TaprootMerkleBranch"],[15119,"impl-From%3C%5BTapNodeHash;+44%5D%3E-for-TaprootMerkleBranch"],[15120,"impl-From%3C%5BTapNodeHash;+11%5D%3E-for-TaprootMerkleBranch"],[15121,"impl-From%3C%5BTapNodeHash;+119%5D%3E-for-TaprootMerkleBranch"],[15122,"impl-From%3C%5BTapNodeHash;+43%5D%3E-for-TaprootMerkleBranch"],[15123,"impl-From%3C%5BTapNodeHash;+42%5D%3E-for-TaprootMerkleBranch"],[15124,"impl-From%3C%5BTapNodeHash;+103%5D%3E-for-TaprootMerkleBranch"],[15125,"impl-From%3C%5BTapNodeHash;+8%5D%3E-for-TaprootMerkleBranch"],[15126,"impl-From%3C%5BTapNodeHash;+89%5D%3E-for-TaprootMerkleBranch"],[15127,"impl-From%3C%5BTapNodeHash;+38%5D%3E-for-TaprootMerkleBranch"],[15128,"impl-From%3C%5BTapNodeHash;+73%5D%3E-for-TaprootMerkleBranch"],[15129,"impl-From%3C%5BTapNodeHash;+52%5D%3E-for-TaprootMerkleBranch"],[15130,"impl-From%3C%5BTapNodeHash;+57%5D%3E-for-TaprootMerkleBranch"],[15131,"impl-From%3C%5BTapNodeHash;+108%5D%3E-for-TaprootMerkleBranch"],[15132,"impl-From%3C%5BTapNodeHash;+96%5D%3E-for-TaprootMerkleBranch"],[15133,"impl-From%3C%5BTapNodeHash;+121%5D%3E-for-TaprootMerkleBranch"],[15134,"impl-From%3C%5BTapNodeHash;+104%5D%3E-for-TaprootMerkleBranch"],[15135,"impl-From%3C%5BTapNodeHash;+98%5D%3E-for-TaprootMerkleBranch"],[15136,"impl-From%3C%5BTapNodeHash;+69%5D%3E-for-TaprootMerkleBranch"],[15200,"impl-IntoIterator-for-%26TaprootMerkleBranch"],[15201,"impl-IntoIterator-for-%26mut+TaprootMerkleBranch"],[15202,"impl-IntoIterator-for-TaprootMerkleBranch"],[15251,"impl-Signature"],[15252,"impl-Serialize-for-Signature"],[15253,"impl-Serialize-for-TaprootMerkleBranch"],[15254,"impl-TaprootMerkleBranch"],[15258,"impl-ControlBlock"],[15259,"impl-Serialize-for-ControlBlock"],[15305,"impl-TryFrom%3C%26SerializedSignature%3E-for-Signature"],[15307,"impl-TryFrom%3CSerializedSignature%3E-for-Signature"],[15310,"impl-TryFrom%3CVec%3CTapNodeHash%3E%3E-for-TaprootMerkleBranch"],[15311,"impl-TryFrom%3CBox%3C%5BTapNodeHash%5D%3E%3E-for-TaprootMerkleBranch"],[15312,"impl-TryFrom%3C%26%5BTapNodeHash%5D%3E-for-TaprootMerkleBranch"],[15317,"impl-TryFrom%3CTaprootBuilder%3E-for-TapTree"],[15318,"impl-TryFrom%3CNodeInfo%3E-for-TapTree"],[15435,"impl-PartialEq-for-SerializedSignature"],[15436,"impl-PartialEq%3C%5Bu8%5D%3E-for-SerializedSignature"],[15439,"impl-Debug-for-SerializedSignature"],[15440,"impl-Display-for-SerializedSignature"],[15442,"impl-From%3CSignature%3E-for-SerializedSignature"],[15444,"impl-From%3C%26Signature%3E-for-SerializedSignature"],[15451,"impl-IntoIterator-for-SerializedSignature"],[15452,"impl-IntoIterator-for-%26SerializedSignature"],[15458,"impl-PartialOrd-for-SerializedSignature"],[15459,"impl-PartialOrd%3C%5Bu8%5D%3E-for-SerializedSignature"],[15499,"impl-From%3CChangeSet%3E-for-ChangeSet%3CA,+ChangeSet%3E"],[15501,"impl-From%3CChangeSet%3CA%3E%3E-for-ChangeSet%3CA,+IA%3E"],[15546,"impl-Indexer-for-KeychainTxOutIndex%3CK%3E"],[15547,"impl-KeychainTxOutIndex%3CK%3E"],[15566,"impl-Display-for-InsertDescriptorError%3CK%3E"],[15567,"impl-Debug-for-InsertDescriptorError%3CK%3E"],[15731,"impl-Display-for-MissingGenesisError"],[15732,"impl-Debug-for-MissingGenesisError"],[15733,"impl-Display-for-AlterCheckPointError"],[15734,"impl-Debug-for-AlterCheckPointError"],[15735,"impl-Debug-for-CannotConnectError"],[15736,"impl-Display-for-CannotConnectError"],[15737,"impl-Display-for-ApplyHeaderError"],[15738,"impl-Debug-for-ApplyHeaderError"],[15749,"impl-FromIterator%3C(u32,+BlockHash)%3E-for-ChangeSet"],[15750,"impl-FromIterator%3C(u32,+Option%3CBlockHash%3E)%3E-for-ChangeSet"],[15865,"impl-Debug-for-SyncItem%3C\'i,+I%3E"],[15866,"impl-Display-for-SyncItem%3C\'i,+I%3E"],[16037,"impl-Debug-for-CalculateFeeError"],[16038,"impl-Display-for-CalculateFeeError"]],"c":"OjAAAAEAAAAAADYAEAAAADgCOgJWBM4H5QfpBw0IMgrICvsN/Q3+Df8NBQ4HDggOCQ5AFEEUQhRDFCgWcRymHCYdMh2WIJ0gcCZ1JiIqIyrlK/swCTEKMbIxwTHSMXIyczJ0MnUygDK8MjE2xzbINsk2zDbPNj83QDfdOV47","e":"OjAAAAEAAAAAAI4pEAAAAAAAjNh6+P//v///9/8HP99//z//n0sPYs6GAABwQMR95Kf/+z/4//8f/H//HwAAAAAAAAAAAAAAAAAAAAAAAIA//v/v//++AADA//////8fAPz/////////////////////oQEAwP//////////////////////////APj/////P7////////93wD/8////////////7/////////////////9/A/j3//////////////////////8/wE7Me1fzvO1NeffuxhQh6jng//8A/P8fAAEAAAAA+r/m//8//////w8AwP///////+P///8BAAAAAAAAAAgAAAAAAgCA/wAAAAAAAP///////w/8PwDgAYD/+z////8eAv4PAP7/D4AH/////////zEAABiY//////8BgPD///////////////////8/4P////////+AAfz///////8DAAAAAAAA+P/////////////7//+u/wIcAPD///////////8BAAAAAMD7/xv8f/j3DhgPfv4fnv//////P+Dn//j///7xf/+7KgCAfwTwB8QrmsP/GAAABsH+5x/wjx/w/z/w/wDA/wMAwP+fwP//AYD/P/i/4wPA/y9A/gfA//8BAABw8HgZwL8AAAAAAADA1/8//v/3Afj///4XcvkAAHwe//w/Afz///8BAADw//8AlNx/DwAAAMD////z/w/+///9/x/oNQIAAHw4/v//j///////wf8P8D8fAPDgP/z/P8D//8r/DwD8/wcA/v//8P//4Pf/B+DzH/8P4P9/4P8Z4B8A/9v5/wGY8/+/////7/////81wE8AfO1//3//PwCA//8dDhgAAOD/////AAAAAA//////AwD8/38G+Pn//8f//2tpHvL3cQA0AAABH/jDP//4/////wcAAADg//9//v/HDLDH/+95AABg/v9vGvsJAID/////////f4oDzgHw///x//////8BAPz//////v///y8OAD4AAP//g7//////8wcA4P8/+T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Dj+/5////f/v/8L/////////////////////////+//////////////////////////+X8B4AD+BgDw/w//////D8D//AEAAPz//38L/v8fAADA////+///3wICAIH////34wfGPQCA8AMAuJcAAMD/AQD8pgDA/wQA4P8/AAAAAB8I/gH///8jgL3//3/A/////+c6Ev7+H4D/////74D///8BAAAAAADw//+d3/8AAPD/+7//v/8wRQAsfv74j////8cCPPD/APYP4G/8AQAAw/P/////5M///wUBAAAAAAAAAAAAAAAAAAD8NwEAAADWBwAA8DcgJEWqSuQAAADg/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////P///wEAAAAAAAD4////G/9/+P////////////////////////8HAAAAwCEAwB8ADHggAAAID/D/////5M////j///v///+PWD/Hv///+////57ff/7f/87vP////+TP/z//////T/78/8///z/58/+P9/////8jXYb9/98AAACA///+//////3+g4YAAAD4//3/P///9P////vfAAAAAADz////////P8j3//v//////yfxvQZAfAAA8AEAFwAf/P9////////x/wEAz/+7gH8PAP//w/8/AADg//////////8r6AAw7H///w8A///PAP8HAAAAAMD/f/j//4cA/7//BwD/////ESD/zwH+/99/Dvjvh///9/////Dw3r/3gP////////8H8AMAwP///w+A3////wAA/p/7H38AAAAAAAAAAAAAAADg////////+fz////n//8vzNUqHwCAB3D8APj/3/////8f9v8BAMD///+PgZ37zwEAAAAAaOH/////////4B9+3///////QC6PANj/OQAA+D8w7f///////+//AQDw7zHqw8P//t/f/68KPIwfPP//j4/fg/3//3/Aw3H/HwQA4P8H////f/CD/39A+H4A4BP+/9///f//////8LdvN//n3cP/AaB////3+0NZfEGV//8HMGwAQJB4AAD4//////////8DYABAoP///////////3/+v//////n/wHA//8PwP+//3////z//v///4GfDwAAAAAA8P//P4b//3/8/wHe/3//8Q8DEE6P/78Ahnn+n//67f+5/QAAAAAAAMD///////////////////8PBN/YAwAAgP0f/v///f//////+/8H8O9/I0D/DwAAAAAAAMD8////////////f9h//v//////7////3H///v/////////////////owIM/D8AAIAPAAA88H9gN/jj//8ffzz///8////n//+AH/+e/v8vcf/6B4j/VwD2ewAA6P//AwsCAACQ/3Fw4M8RwJEAAP7///f/T8AQgEX///7fDwD+/wH4/n8KAgAAEjn8/4P//wAAgPz//P/v//gRAACABW1+8OcPAP8/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA","a":{"is_coin_base":[1974],"ntxid":[981],"read_to_end":[10678],"txid":[982],"wtxid":[984]}}],\ -["bdk_core",{"t":"FFFFIIKFOENONNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNMNNMNNNNNNNODNNCNNNNNNNNNNNNNNNNOONNNNNNNNNNFFFPPGFFFFPNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNOONNNNONONNNNNNNNNNNNNNNNNNNNNNNNOONOONNNNNNNNNNNNNNNN","n":["BlockId","CheckPoint","CheckPointIter","ConfirmationBlockTime","Indexed","KeychainIndexed","Merge","TxUpdate","anchors","bitcoin","block_id","block_id","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","confirmation_time","default","default","default","deserialize","deserialize","eq","eq","eq","eq_ptr","extend","extend","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_block_ids","from_header","get","hash","hash","hash","hash","height","height","insert","into","into","into","into","into","into_iter","into_iter","is_empty","iter","map_anchors","merge","new","next","partial_cmp","partial_cmp","prev","push","range","seen_ats","serde","serialize","serialize","spk_client","take","take","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","txouts","txs","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","FullScanRequest","FullScanRequestBuilder","FullScanResponse","OutPoint","Spk","SyncItem","SyncProgress","SyncRequest","SyncRequestBuilder","SyncResponse","Txid","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","builder","builder","chain_tip","chain_tip","chain_tip","chain_tip","chain_update","chain_update","clone","clone","clone_into","clone_into","cmp","consumed","default","default","default","default","default","default","eq","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","hash","inspect","inspect","into","into","into","into","into","into","into","into","iter_outpoints","iter_spks","iter_spks","iter_txids","keychains","last_active_indices","next_outpoint","next_spk","next_spk","next_txid","outpoints","outpoints_consumed","outpoints_remaining","partial_cmp","progress","remaining","spks","spks_consumed","spks_for_keychain","spks_remaining","spks_with_indexes","to_owned","to_owned","to_string","total","total_outpoints","total_spks","total_txids","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_update","tx_update","txids","txids_consumed","txids_remaining","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"bdk_core"],[116,"bdk_core::spk_client"],[257,"bdk_core::checkpoint"],[258,"bdk_core::block_id"],[259,"bdk_core::tx_update"],[260,"core::clone"],[261,"core::cmp"],[262,"core::result"],[263,"serde::de"],[264,"core::iter::traits::collect"],[265,"core::fmt"],[266,"bitcoin::blockdata::block"],[267,"core::option"],[268,"core::hash"],[269,"bdk_core::merge"],[270,"core::ops::function"],[271,"core::iter::traits::iterator"],[272,"core::ops::range"],[273,"serde::ser"],[274,"core::any"],[275,"core::marker"],[276,"bitcoin::blockdata::script::borrowed"],[277,"bitcoin::blockdata::transaction"],[278,"core::iter::traits::exact_size"],[279,"bitcoin::blockdata::script::owned"],[280,"alloc::vec"],[281,"alloc::string"]],"i":[0,0,0,0,0,0,0,0,6,0,1,5,26,3,5,1,6,26,3,5,1,6,3,5,1,6,3,5,1,6,3,5,5,3,5,6,3,5,3,5,1,1,1,6,3,5,1,6,26,3,3,3,5,1,6,1,1,1,3,5,1,3,1,3,1,26,3,5,1,6,26,1,25,1,6,25,1,26,3,5,1,1,1,6,0,3,5,0,25,25,3,5,1,6,26,3,5,1,6,26,3,5,1,6,6,6,26,3,5,1,6,26,3,5,1,6,0,0,0,37,37,0,0,0,0,0,37,33,34,35,36,37,38,40,41,33,34,35,36,37,38,40,41,33,35,34,36,33,34,35,36,40,41,37,38,37,38,37,38,33,34,35,36,40,41,37,37,37,38,40,41,33,34,34,35,36,36,37,38,40,41,37,33,35,33,34,35,36,37,38,40,41,34,34,36,34,36,41,34,34,36,34,33,38,38,37,34,38,33,38,35,38,33,37,38,37,38,38,38,38,33,34,35,36,37,38,40,41,33,34,35,36,37,38,40,41,40,41,33,38,38,33,34,35,36,37,38,40,41,33,34,35,36,37,38,40,41],"f":"``````````{{{d{b}}}f}`{{{d{c}}}{{d{e}}}{}{}}0000{{{d{hc}}}{{d{he}}}{}{}}0000{{{d{f}}}f}{{{d{j}}}j}{{{d{b}}}b}{{{d{{l{c}}}}}{{l{c}}}n}{{{d{c}}{d{he}}}A`{}{}}000{{{d{f}}{d{f}}}Ab}{{{d{j}}{d{j}}}Ab}`{{}f}{{}j}{{}{{l{c}}}{}}{c{{Ad{f}}}Af}{c{{Ad{j}}}Af}{{{d{f}}{d{f}}}Ah}{{{d{j}}{d{j}}}Ah}{{{d{b}}{d{b}}}Ah}0{{bc}{{Ad{bb}}}{{Al{}{{Aj{f}}}}}}{{{d{h{l{c}}}}{l{c}}}A`An}{{{d{f}}{d{hB`}}}Bb}{{{d{j}}{d{hB`}}}Bb}{{{d{b}}{d{hB`}}}Bb}{{{d{{l{c}}}}{d{hB`}}}BbBd}{cc{}}0{{{Bj{{d{Bf}}{d{Bh}}}}}f}{{{Bj{BfBh}}}f}222{c{{Ad{b{Bl{b}}}}}{{Al{}{{Aj{f}}}}}}{{{d{Bn}}Bf}b}{{{d{b}}Bf}{{Bl{b}}}}{{{d{f}}{d{hc}}}A`C`}{{{d{j}}{d{hc}}}A`C`}{{{d{b}}}Bh}`{{{d{b}}}Bf}`{{bf}b}{ce{}{}}00000{bc{}}{{{d{Cb}}}Ah}{{{d{b}}}Cd}{{{l{c}}g}{{l{e}}}AnAn{{Ch{c}{{Cf{e}}}}}}{{{d{hCb}}Cb}A`}{fb}{{{d{hCd}}}{{Bl{c}}}{}}{{{d{f}}{d{f}}}{{Bl{Ab}}}}{{{d{j}}{d{j}}}{{Bl{Ab}}}}{{{d{b}}}{{Bl{b}}}}{{bf}{{Ad{bb}}}}{{{d{b}}c}{{`{{Cj{}{{Aj{b}}}}}}}{{Cl{Bf}}}}``{{{d{f}}c}AdCn}{{{d{j}}c}AdCn}`{{{d{hCb}}}{{Bl{Cb}}}}0{{{d{c}}}e{}{}}000{c{{Ad{e}}}{}{}}000000000``{{{d{c}}}D`{}}0000{ce{}{}}0000```````````{{{d{c}}}{{d{e}}}{}{}}0000000{{{d{hc}}}{{d{he}}}{}{}}0000000{{{Db{c}}}{{Dd{c}}}{}}{{{Df{c}}}{{Dh{c}}}An}{{}{{Db{c}}}{}}{{}{{Df{c}}}{Ann}}{{{Db{c}}b}{{Db{c}}}{}}{{{d{{Dd{c}}}}}{{Bl{b}}}{}}{{{Df{c}}b}{{Df{c}}}An}{{{d{{Dh{c}}}}}{{Bl{b}}}{Ann}}``{{{d{{Dj{c}}}}}{{Dj{c}}}n}{{{d{Dl}}}Dl}{{{d{c}}{d{he}}}A`{}{}}0{{{d{{Dj{c}}}}{d{{Dj{c}}}}}AbAn}{{{d{Dl}}}Dn}:{{}{{Dd{c}}}{}}{{}{{Df{c}}}{}}{{}{{Dh{c}}}{}}{{}{{E`{c}}}{}}{{}{{Eb{ce}}}{}{}}{{{d{{Dj{c}}}}{d{{Dj{c}}}}}AhEd}{{{d{{Dj{c}}}}{d{hB`}}}BbBd}{{{d{{Dj{c}}}}{d{hB`}}}Bb{BdEf}}{{{d{Dl}}{d{hB`}}}Bb}{{{d{{E`{c}}}}{d{hB`}}}BbBd}{{{d{{Eb{ce}}}}{d{hB`}}}BbBdBd}{cc{}}{{{Db{c}}}{{Dd{c}}}{}}11{{{Df{c}}}{{Dh{c}}}{}}22222{{{d{{Dj{c}}}}{d{he}}}A`EhC`}{{{Db{c}}e}{{Db{c}}}{}{{Ch{{Dj{c}}Dl}}Ej}}{{{Df{c}}e}{{Df{c}}}An{{Ch{cBf{d{El}}}}Ej}}{ce{}{}}0000000{{{d{h{Dd{c}}}}}{{`{{F`{}{{Aj{En}}}}}}}{}}{{{d{h{Dd{c}}}}}{{`{{F`{}{{Aj{Fb}}}}}}}{}}{{{d{h{Dh{c}}}}c}{{`{{Cj{}{{Aj{{Fd{Fb}}}}}}}}}{Ann}}{{{d{h{Dd{c}}}}}{{`{{F`{}{{Aj{Ff}}}}}}}{}}{{{d{{Dh{c}}}}}{{Fh{c}}}{Ann}}`{{{d{h{Dd{c}}}}}{{Bl{En}}}{}}{{{d{h{Dd{c}}}}}{{Bl{Fb}}}{}}{{{d{h{Dh{c}}}}c}{{Bl{{Fd{Fb}}}}}{Ann}}{{{d{h{Dd{c}}}}}{{Bl{Ff}}}{}}{{{Db{c}}e}{{Db{c}}}{}{{Al{}{{Aj{En}}}}}}``{{{d{{Dj{c}}}}{d{{Dj{c}}}}}{{Bl{Ab}}}Fj}{{{d{{Dd{c}}}}}Dl{}}{{{d{Dl}}}Dn}{{{Db{A`}}c}{{Db{A`}}}{{Al{}{{Aj{Fb}}}}}}`{{{Df{c}}cg}{{Df{c}}}An{{Cj{}{{Aj{{Fd{Fb}}}}}}Ej}{{Al{}{{Fl{e}}}}}}`{{{Db{c}}e}{{Db{c}}}{}{{Al{}{{Aj{{Bj{cFb}}}}}}}}{{{d{c}}}e{}{}}0{{{d{c}}}Fn{}}5555{c{{Ad{e}}}{}{}}000000000000000``{{{Db{c}}e}{{Db{c}}}{}{{Al{}{{Aj{Ff}}}}}}``{{{d{c}}}D`{}}0000000{ce{}{}}0000000","D":"Nj","p":[[5,"CheckPoint",0,257],[1,"reference"],[5,"BlockId",0,258],[0,"mut"],[5,"ConfirmationBlockTime",0,258],[5,"TxUpdate",0,259],[10,"Clone",260],[1,"unit"],[6,"Ordering",261],[6,"Result",262],[10,"Deserializer",263],[1,"bool"],[17,"Item"],[10,"IntoIterator",264],[10,"Ord",261],[5,"Formatter",265],[8,"Result",265],[10,"Debug",265],[1,"u32"],[5,"BlockHash",266],[1,"tuple"],[6,"Option",267],[5,"Header",266],[10,"Hasher",268],[10,"Merge",0,269],[5,"CheckPointIter",0,257],[17,"Output"],[10,"FnMut",270],[10,"Iterator",271],[10,"RangeBounds",272],[10,"Serializer",273],[5,"TypeId",274],[5,"SyncRequestBuilder",116],[5,"SyncRequest",116],[5,"FullScanRequestBuilder",116],[5,"FullScanRequest",116],[6,"SyncItem",116],[5,"SyncProgress",116],[1,"usize"],[5,"SyncResponse",116],[5,"FullScanResponse",116],[10,"PartialEq",261],[10,"Any",274],[10,"Hash",268],[10,"Send",275],[5,"Script",276],[5,"OutPoint",277],[10,"ExactSizeIterator",278],[5,"ScriptBuf",279],[8,"Indexed",0],[5,"Txid",277],[5,"Vec",280],[10,"PartialOrd",261],[17,"IntoIter"],[5,"String",281]],"r":[[0,258],[1,257],[2,257],[3,258],[6,269],[7,259]],"b":[[50,"impl-From%3C(%26u32,+%26BlockHash)%3E-for-BlockId"],[51,"impl-From%3C(u32,+BlockHash)%3E-for-BlockId"],[166,"impl-Debug-for-SyncItem%3C\'i,+I%3E"],[167,"impl-Display-for-SyncItem%3C\'i,+I%3E"]],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAIwAFQAKAAAADQATACIABwAtAAMAMwABADsAAQBHAAEATgACAFUAAgBbAA0AawAJAIAADwCaAAQAoAALAK0AAACwAAAAtgAAAM4AAADWAAIA3QAPAPIADwA="}],\ +["bdk_chain",{"t":"KSFFKGFFFPKFRFFIEEIKFEFFPNNMNNONNNNDEONOONNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNMNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNONOONCCNNNNNNNNNNNNNNNNNNNMNNMNONECNMENNNNNNONNNNNNNNDCODNNNNNOCENNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNCOOOONNNNNNNNNNNNONNNNNNNNNNNNOOOFGPPPPFTTPPPFFPFFTTPGTTGFFFGFTTTTTTTTTTTTTTTTTTTPPFPPPTPGGPPPPTTTTFFPPPPPPFFFFPPTTPFFFFFFPPPPPFFFFFFGFFFPPPPFFFFFPPPPPPPPPPPPPPPPPFTFFFFFFFGFFFFTTTTTTNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCCNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNONNNNNNCNNNNNNNNNNNNNNNCONNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNCONONNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNONONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNCNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNONNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNOFGGPPPGTPFPFGPFPGGKPFPPPPGPPPGPPPFPFPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOPPPGPFPFPFPFGGFPFPPPPPFPPPKGFPPPPPPPPGPPFPNNNNMNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNKKCCMMMMMMMHCHHHHCHHHPGPFFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGPFFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRGPRGGKPPPPPPCNNNNNNNNNNNNMHNHHHNNNHCHNHHHNNHCNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNCFSSSPSPGPSSPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNKRKRFGKFFPPPNNNNNNNNNNNNNNMNNNNNMNNMNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFSSSSSSSSSSRRKMNNNNNNNFNNNNNNNNNNNNFFKNNNNMNNNNNNNNNNNNNNNNNNNNNNNNTGGKTTTKPTGTGGTFKPTTTFTTTTRTGTPTTTTTPPTTTPTTTTTTTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHHHHHHHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSFSGGGCCCCCCCTTKFTFRTKFTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNFFPGFGPPGPFFPPPPPPPPPPPGPFFGPPPFGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSFFPGFPFFPPSPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKFFKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFSPPSSGNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNHHNNFGPPSSPPNNNNNNNNHHHHHHHHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFGFPFFFPNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNONNNNNONONNNNNNNNNNNNNONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNFFFFFGFFFFPPNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPFGFFGIIIIFPPKPFPPPPIPPPPFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNOOOOOONNNOOOOOONNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOFFCCCCCCCCCPPGFFFTPPTTTFPPGFFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNOONNONNNNNONNNNNNNNNNNNNNNONNNNNONNNNNTSFSSSSSSSTSSTSSTTTSNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNFCCPFFSGTTTTFFTPFTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFFFFGTTTTTFPFTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGGPPPJJJJJFPPPPPPCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSFFPGGFFPPPFPFFKFFFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCHGPPSSFNNNNNNNNNNNNNNNNNNNPGPPFGPPPPPPPPPPPPPPPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFFFTFFTTTTTGFTPFFFFPFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNOONNONHHOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNOOONNNNNNNOSFFFNNNNNNNNNNNNNTPKGKTPFTKTTTTPKONOOOONNNNNNNNMHHNMMMMMMMMMMCNNNNNNNNNNNNNOOONOCOOOMMMMMMMMMMOCHNNNNNNNNNNNFKPKGGPPSPPPPKPFKNNNNNNNNNNNNMNNHHHMMMMMMMMMMNNNNNNNNNNNNNNNNNNNMMMMMMMMMMHHNNNNNNNNNNNNNNNNNOOOOJFJJJJJOOOOOOOOOOOOOKKRRKRFRKFNNNNNNMMNNMNCNNMNNNNNNNNNKFFFFGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNPFPFPPFGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFTRTRFKKFFTRMMQCNMMMNCNQQCMMMCQCCCCCQCCCCMHFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGRKRKIGGFPPFPPPFPNMNNNNNNNNNNNNNNCNNNNNNNNNNNCNNNNNNNNNNNNNNNCNNNNNNNNNQNNNNNNNNNNNMNNNQNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQFNNNNNNNNNNNNNNNNNRFFKNMNNNNNNNNNNNNQNNNQNNNNNNNNNNNNNNNGGPPFPFPFNNNNNNNONNNNONNNNNNNRKGGPPPPMRKRKNMMNNNNFFFNNNONONNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKYKRRRKYRRRRRRRKNNNCMMMMMMMMMNMMMMMMMMMMMMMMMNMMMMMMQNNCMMMMMMNMMMMMMMMMMMMMMMMNMMMMMMMPPPKKKKRPKKRRRRRKPFKPKPPPPPKPKPPPGPPPRRRKKNNNNNNNNNMNNMMNMMMMMMMMNMMMMMMMMMMMMMMMNMMMMMMNNNMNMNNNNNNNNNMNNNNNNMNMNNNMNMNNNNMNNNNNNNMNNMNNCNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFFFFFFFFFFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKRRRRRRRRFRRRRRRRRKKRKRKRKRKRKRKRKKNNNNNNMNNNNNNNNNNMMMMMMMNNNNNNNNNNNNNNMMMMMMNNNMMMMMMNNNNNMMMMMNMMMMMMMMMMMMNMMMMMMMMNNNNNNNNNCTKNMNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPKPPPFPFGFPPPPPPPPKIFFPFPPKPNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNMNNNNNNNNNNNNNNNNNNNHHNNQNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNPFPPGGPPFPFPPPPFPGGGFFFFPPPFKRRFFFIIKFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPFGPPPPPFPPNNNNNHHNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNONNNNPPGGFPPPPPFCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHFTTTTFTTTTSFTTFTTTFTNCONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCCCCCNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFFPPPPPPPOONNNNNNNNNNNNNNNNNNNNNNNNNNOOOONONNNNNNNNNNNPPPPPPPPPFFPPPPPPPPPPPPPPSSPPGPPPFPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOPPPFFGPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNOONNNNNNNNNNNNOONNNOOPGFFPPNNNNNNNNNNNNNNNNNNNNONNNNNNNNNOONNNNNNONNNNNNNNNNNNONNNNNNFFFFNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNONNNNNNNNONNNNONNNNFFFFFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOONNNNNNNNNNNNNNNNNNOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPPPPFGFNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONOOOOOOOONNNNNNNNNNNNOONNNFNNNNNNNNNNNNNNNNNNNNSSSSSSSSHFFFPPPPPPPPPPGRGPKGPGFPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPFGPPFPGFPPPPPPPPPGGIGIPPPPPPPPPPPPPPPOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNOOONNNNNNNNNNNNNOONNNNOOOOCOOOCNNNOONNNNNNNOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNONNNNNNNNNNNNNOOOOOOOOOOOOOOOOOFFFINNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNONNNONNNNNNNNNNNNNNOONNNGFKTGPTPPPFPPPPPPPPFTFPTPGKFFFFGFKKKGFFTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMNNNNNNNNNCCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCQNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSSSSSSSSSSSSSSFNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNPPFGFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKFIFIFIPPPPFSSSSSIFFPPPPRFMNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQQNNNNNNNNNNNNNNNNNNHNNNNNCHHHHHHJHHHHHHHHHHHHHHHHHHHJHHHHHHHHHHHJHHHHHJJJHHHHHHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNHHHHHNNNNNFTNNNNIIIIGNNNNNNNNINNNNNNNNNNTRTRFKKFFTRMNMNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNMNNNNNQQNNNNNMNNNNNMNMNNNQNQMNNNNNNNNNNNNNNNNNNNNTKFKTKKRKNNNCNMNNNNNNNMNNNNNNNMMCHNNCNNNCNNHNMNMNNNNPFFGFFKKPPPFFFFPFGFMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNCKKKRFFFFFKRMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPGFCKFNNNNNNNNNNKKRKKKRKKFFMNMNNMMNMMNMNNMNNNNNMMMHMNNNNMHNMFFFCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNRKFKNNMNMNNMMNMMNNCNNNNNMMNNNNNNGGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPFGPGPGPPPPPFPFFPPPPPPGGPGPFPFFFPPFPFGPPPFPPFFGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNSPPPFGPNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNOHNNNNNNNNNNNNNNFPPPFPGPPGPPPPPPPPFFGFPPPPFFPGPFSSSSSSSFGFFFPFFFFGGFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONCNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNRKMMMMMCCFSPKGPFTTKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNMNNNNMNNNNNNNNNNNNNNNNNNNNMNNNOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGTPFFFFPFFTNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNONNNNNNSHFFFPPGFFFFPNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNOONNNNNONNONNNNNNNNNNNNNNNNNNNNNNNNOONOONNNNNNNNNNNNNNNNNTGFFPPTTTFFFFFNNNOOONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNONOOOONNNNNNNNNNNNNNNNNN","n":["Anchor","BIP32_MAX_INDEX","Balance","BlockId","ChainOracle","ChainPosition","CheckPoint","CheckPointIter","ConfirmationBlockTime","Confirmed","DescriptorExt","DescriptorId","Error","FullTxOut","Impl","Indexed","IndexedTxGraph","Indexer","KeychainIndexed","Merge","SpkIterator","TxGraph","TxPosInBlock","TxUpdate","Unconfirmed","add","all_zeros","anchor_block","anchor_block","anchor_block","anchors","as_byte_array","as_raw_hash","as_ref","as_ref","bdk_core","bitcoin","block","block_id","block_id","block_id","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","chain_position","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloned","cmp","cmp","cmp","cmp","cmp","column_result","column_result","column_result","column_result","column_result","column_result","column_result","column_result","confirmation_height_upper_bound","confirmation_height_upper_bound","confirmation_height_upper_bound","confirmation_height_upper_bound","confirmation_time","confirmed","default","default","default","default","deref","descriptor","descriptor_id","deserialize","deserialize","deserialize","deserialize","deserialize","dust_value","engine","eq","eq","eq","eq","eq","eq","eq","eq","eq_ptr","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_block_ids","from_byte_array","from_engine","from_header","from_raw_hash","from_slice","from_slice_delegated","from_str","get","get_chain_tip","hash","hash","hash","hash","hash","hash","height","height","immature","index","indexed_tx_graph","indexer","insert","into","into","into","into","into","into","into","into","into","into","into","into","into_fallible","into_fallible","into_inner","into_iter","into_iter","into_iter","is_block_in_chain","is_confirmed","is_confirmed_and_spendable","is_empty","is_mature","is_on_coinbase","iter","keychain_txout","local_chain","map_anchors","merge","miniscript","new","new","new_with_range","next","next","nth","outpoint","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","prev","push","range","rusqlite","rusqlite_impl","seen_ats","serde","serialize","serialize","serialize","serialize","serialize","spent_by","spk_client","spk_txout","take","to_byte_array","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_raw_hash","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_sql","to_string","to_string","total","transpose_into_fallible","transpose_into_fallible","trusted_pending","trusted_spendable","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_graph","tx_pos","txout","txouts","txs","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","untrusted_pending","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","anchor","last_seen","transitively","Address","AddressType","All","All","AllPlusAnyoneCanPay","AllPlusAnyoneCanPay","Amount","BROADCAST_MIN","BTC","Bit","Bitcoin","Bitcoin","Block","BlockHash","CentiBitcoin","CompactTarget","CompressedPublicKey","DEFAULT_MAX_FEE_RATE","DUST","Default","Denomination","ENABLE_LOCKTIME_NO_RBF","ENABLE_RBF_NO_LOCKTIME","EcdsaSighashType","FeeRate","FilterHash","FilterHeader","KnownHrp","LegacySighash","MAX","MAX","MAX","MAX","MAX","MAX","MAX_ATTAINABLE_MAINNET","MAX_ATTAINABLE_REGTEST","MAX_ATTAINABLE_SIGNET","MAX_ATTAINABLE_TESTNET","MAX_BLOCK","MAX_MONEY","MAX_MONEY","MAX_STANDARD_WEIGHT","MIN","MIN","MIN","MIN","MIN_TRANSACTION","Main","Mainnet","MerkleBlock","MicroBitcoin","MilliBitcoin","MilliSatoshi","NULL","NanoBitcoin","Network","NetworkKind","None","None","NonePlusAnyoneCanPay","NonePlusAnyoneCanPay","ONE_BTC","ONE_BTC","ONE_SAT","ONE_SAT","Opcode","OutPoint","P2pkh","P2sh","P2tr","P2wpkh","P2wsh","PicoBitcoin","PrivateKey","Psbt","PubkeyHash","PublicKey","Regtest","Regtest","SAT","SIZE","Satoshi","Script","ScriptBuf","ScriptHash","SegwitV0Sighash","Sequence","SignedAmount","Signet","Single","Single","SinglePlusAnyoneCanPay","SinglePlusAnyoneCanPay","TapBranchTag","TapLeafHash","TapLeafTag","TapNodeHash","TapSighash","TapSighashTag","TapSighashType","TapTweakHash","TapTweakTag","Target","Test","Testnet","Testnet4","Testnets","Transaction","TxIn","TxMerkleNode","TxOut","Txid","V0","V1","V10","V11","V12","V13","V14","V15","V16","V2","V3","V4","V5","V6","V7","V8","V9","VarInt","WITNESS_SCALE_FACTOR","WPubkeyHash","WScriptHash","Weight","Witness","WitnessCommitment","WitnessMerkleNode","WitnessProgram","WitnessVersion","Work","Wtxid","XKeyIdentifier","XOnlyPublicKey","ZERO","ZERO","ZERO","ZERO","ZERO","ZERO","abs","add","add","add","add","add_assign","add_assign","add_assign","add_tweak","address","address_type","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","all_zeros","amount","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_byte_array","as_bytes","as_c_ptr","as_mut","as_mut","as_mut","as_mut","as_mut_bytes","as_mut_c_ptr","as_mut_ptr","as_mut_script","as_ptr","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_raw_hash","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_script","as_unchecked","assume_checked","assume_checked_ref","assume_hidden","base_size","base_size","bip152","bip158","bip32","bip34_block_height","block_hash","blockdata","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","builder","bytes","chain_hash","check_after","check_merkle_root","check_older","check_older","check_witness_commitment","checked_abs","checked_add","checked_add","checked_add","checked_div","checked_div","checked_div","checked_div","checked_mul","checked_mul","checked_mul","checked_mul","checked_mul_by_weight","checked_rem","checked_rem","checked_sub","checked_sub","checked_sub","classify","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","coinbase","combine","compressed","compressed","compute_merkle_root","compute_ntxid","compute_txid","compute_witness_commitment","compute_wtxid","consensus","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","count_sigops","count_sigops_legacy","dangerous_assume_tweaked","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref_mut","des_btc","des_btc","des_sat","des_sat","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize_from_reader","difficulty","difficulty_float","display_dynamic","display_dynamic","display_in","display_in","div","div","div","div","div","div_assign","div_assign","div_assign","dust_value","ecdsa","enables_absolute_lock_time","enables_lock_time","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","engine","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","extend","extract","extract_matches","extract_tx","extract_tx_fee_rate_limit","extract_tx_unchecked_fee_rate","extract_tx_with_fee_rate_limit","fee","fee_vb","fee_wu","filter_header","finalize","finalize_inp","finalize_inp_mall","finalize_inp_mall_mut","finalize_inp_mut","finalize_mall","finalize_mall_mut","finalize_mut","first_opcode","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_asm","fmt_value_in","fmt_value_in","fmt_wif","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_512_second_intervals","from_be_bytes","from_be_bytes","from_block_with_predicate","from_btc","from_btc","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_byte_array","from_bytes","from_bytes","from_bytes_mut","from_chain_hash","from_compact","from_consensus","from_consensus","from_consensus","from_consensus_u8","from_core_arg","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_engine","from_float_in","from_float_in","from_header_difficulty_adjustment","from_header_txids_with_predicate","from_height","from_hex","from_hex","from_hex","from_hex","from_hex","from_int_btc","from_iter","from_key_and_tweak","from_keypair","from_kwu","from_le_bytes","from_le_bytes","from_magic","from_next_work_required","from_node_hashes","from_non_witness_data_size","from_private_key","from_private_key","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_raw_hash","from_sat","from_sat","from_sat_per_kwu","from_sat_per_vb","from_sat_per_vb_unchecked","from_script","from_script","from_script","from_seconds_ceil","from_seconds_floor","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_slice_delegated","from_standard","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str_in","from_str_in","from_str_with_denomination","from_str_with_denomination","from_unprefixed_hex","from_unprefixed_hex","from_unprefixed_hex","from_unprefixed_hex","from_unsigned_tx","from_vb","from_vb_unchecked","from_vb_unwrap","from_wif","from_witness_data_size","from_witness_program","from_wu","from_wu_usize","generate","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash_types","header","header","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","inner","inner","input","inputs","instruction_indices","instruction_indices_minimal","instructions","instructions_minimal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_boxed_script","into_bytes","into_iter","into_script_buf","into_unchecked","is_absolute_timelock_satisfied","is_coinbase","is_empty","is_empty","is_explicitly_rbf","is_final","is_height_locked","is_lock_time_enabled","is_mainnet","is_met_by","is_multisig","is_negative","is_null","is_op_return","is_p2pk","is_p2pkh","is_p2sh","is_p2tr","is_p2tr","is_p2wpkh","is_p2wpkh","is_p2wsh","is_p2wsh","is_positive","is_provably_unspendable","is_push_only","is_rbf","is_related_to_pubkey","is_related_to_xonly_pubkey","is_relative_lock_time","is_spend_standard","is_time_locked","is_uncompressed","is_valid_for_network","is_witness_program","is_x_only_key","iter","iter_funding_utxos","key","last","legacy_weight","len","len","lock_time","log2","magic","matches_script_pubkey","max_difficulty_transition_threshold","max_transition_threshold","max_transition_threshold_unchecked","merkle_tree","min_difficulty_transition_threshold","min_transition_threshold","minimal_non_dust","minimal_non_dust","minimal_non_dust_custom","minimal_non_dust_custom","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","neg","network","network","new","new","new","new","new","new","new","new_op_return","new_p2pk","new_p2pkh","new_p2sh","new_p2tr","new_p2tr_tweaked","new_p2wpkh","new_p2wsh","new_uncompressed","new_uncompressed","new_witness_program","nth","ntxid","null","output","outputs","p2p","p2pk_public_key","p2pkh","p2sh","p2sh_from_hash","p2shwpkh","p2shwsh","p2tr","p2tr","p2tr_key_spend","p2tr_tweaked","p2tr_tweaked","p2wpkh","p2wpkh","p2wpkh","p2wpkh_script_code","p2wpkh_script_code","p2wpkh_script_code","p2wpkh_script_code","p2wsh","p2wsh","params","parse","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","policy","positive_sub","pow","previous_output","program","proprietary","provider_lookup_ecdsa_sig","provider_lookup_hash160","provider_lookup_hash256","provider_lookup_raw_pkh_ecdsa_sig","provider_lookup_raw_pkh_pk","provider_lookup_raw_pkh_tap_leaf_script_sig","provider_lookup_raw_pkh_x_only_pk","provider_lookup_ripemd160","provider_lookup_sha256","provider_lookup_tap_control_block_map","provider_lookup_tap_key_spend_sig","provider_lookup_tap_leaf_script_sig","psbt","pubkey_hash","pubkey_hash","pubkey_hash","public_key","public_key","push","push_ecdsa_signature","push_instruction","push_instruction_no_opt","push_opcode","push_slice","read_from","read_from","redeem_script","rem","rem","rem_assign","rem_assign","require_network","reserve","reserve_exact","scale_by_witness_factor","scan_and_push_verify","script_hash","script_hash","script_pubkey","script_pubkey","script_pubkey_lens","script_sig","second_to_last","segwit_weight","sequence","ser_btc","ser_btc","ser_btc_opt","ser_btc_opt","ser_sat","ser_sat","ser_sat_opt","ser_sat_opt","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize_hex","serialize_to_writer","sighash","sighash_ecdsa","sighash_msg","sign","sign_message","signum","size","size","size","spend_utxo","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","tap_tweak","taproot","taproot_annex","taproot_control_block","tapscript","tapscript_leaf_hash","third_to_last","to_address_data","to_asm_string","to_be_bytes","to_be_bytes","to_btc","to_btc","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_byte_array","to_bytes","to_bytes","to_bytes","to_bytes","to_compact_lossy","to_consensus","to_consensus_u32","to_core_arg","to_fe","to_float_in","to_float_in","to_hash160","to_hash160","to_hash256","to_hash256","to_hex_string","to_kwu_floor","to_le_bytes","to_le_bytes","to_num","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_p2sh","to_p2tr","to_p2wsh","to_public_key","to_public_key","to_qr_uri","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_raw_hash","to_relative_lock_time","to_ripemd160","to_ripemd160","to_sat","to_sat","to_sat_per_kwu","to_sat_per_vb_ceil","to_sat_per_vb_floor","to_scalar","to_sha256","to_sha256","to_signed","to_sort_key","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string_in","to_string_in","to_string_with_denomination","to_string_with_denomination","to_target","to_u32","to_u8","to_unsigned","to_vbytes_ceil","to_vbytes_floor","to_vec","to_wif","to_work","to_wu","to_x_only_pubkey","total_sigop_cost","total_size","total_size","total_size","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tweak_add_check","tx_in","tx_out","txdata","txid","txid","txn","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_prefix","type_prefix","unchecked_add","unchecked_add","unchecked_sub","unchecked_sub","unknown","unsigned_abs","unsigned_tx","update_input_with_descriptor","update_output_with_descriptor","value","verify","verify","verify","version","version","version","vout","vsize","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weight","weight","weight","with_capacity","witness","witness_program","witness_root","witness_script","witness_version","wpubkey_hash","wpubkey_hash","write_into","write_into","wscript_hash","wtxid","xpub","Address","AddressData","AddressType","Base58","Bech32","ExcessiveScriptSize","FromScriptError","IS_CHECKED","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidLegacyPrefix","InvalidLegacyPrefixError","KnownHrp","LegacyAddressTooLong","LegacyAddressTooLongError","Mainnet","NetworkChecked","NetworkUnchecked","NetworkValidation","NetworkValidation","NetworkValidationError","P2pkh","P2pkh","P2sh","P2sh","P2shError","P2tr","P2wpkh","P2wsh","ParseError","Regtest","Segwit","Testnets","UnknownAddressTypeError","UnknownHrp","UnknownHrpError","UnrecognizedScript","WitnessProgram","WitnessProgram","WitnessVersion","WitnessVersion","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","into","into","into","into","into","into","into","into","into","into","into","into","invalid_base58_payload_length","invalid_legacy_address_prefix","invalid_legcay_address_length","partial_cmp","partial_cmp","partial_cmp","source","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","pubkey_hash","script_hash","witness_program","Base58","Bech32","ExcessiveScriptSize","FromScriptError","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidLegacyPrefix","InvalidLegacyPrefixError","LegacyAddressTooLong","LegacyAddressTooLongError","NetworkValidation","NetworkValidationError","P2shError","ParseError","UnknownAddressTypeError","UnknownHrp","UnknownHrpError","UnrecognizedScript","WitnessProgram","WitnessProgram","WitnessVersion","WitnessVersion","Amount","Bit","Bitcoin","CentiBitcoin","CheckedSum","Denomination","Display","InputTooLarge","InvalidCharacter","MicroBitcoin","MilliBitcoin","MilliSatoshi","MissingDigits","NanoBitcoin","OutOfRange","ParseAmountError","PicoBitcoin","Satoshi","SignedAmount","TooPrecise","borrow","borrow","borrow_mut","borrow_mut","checked_sum","clone","clone","clone_into","clone_into","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","serde","show_denomination","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","SerdeAmount","SerdeAmountForOpt","as_btc","as_sat","des_btc","des_sat","ser_btc","ser_btc_opt","ser_sat","ser_sat_opt","type_prefix","deserialize","opt","serialize","deserialize","serialize","deserialize","opt","serialize","deserialize","serialize","Decode","Error","IncorrectChecksum","InvalidCharacterError","String","TooShort","Vec","add","add_assign","allocator","append","as_bytes","as_hex","as_mut","as_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_str","as_mut_vec","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_slice","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clear","clear","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column_result","column_result","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consume","decode","decode_check","dedup","dedup_by","dedup_by_key","default","default","deref","deref","deref_mut","deref_mut","deserialize","deserialize","drain","drain","drop","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","encode","encode_check","encode_check_to_fmt","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","extend","extend","extend","extend","extend","extend","extend","extend","extend_from_slice","extend_from_within","extend_from_within","extend_one","extend_one","extend_one","extend_one","extend_one","extend_one","extend_one","extend_reserve","extend_reserve","extend_reserve","extend_reserve","extract_if","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hex","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_raw_parts","from_raw_parts","from_raw_parts_in","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","hash","hex_reserve_suggestion","index","index","index_mut","index_mut","insert","insert","insert_str","into","into","into","into","into_assets","into_boxed_slice","into_boxed_str","into_bytes","into_derivation_path","into_derivation_path","into_deserializer","into_deserializer","into_flattened","into_iter","into_iter","into_iter","into_raw_parts","into_raw_parts","into_raw_parts_with_alloc","into_searcher","invalid_base58_character","is_contained_in","is_empty","is_empty","is_empty","is_prefix_of","is_suffix_of","is_write_vectored","leak","leak","len","len","merge","ne","ne","ne","ne","ne","ne","ne","ne","ne","new","new","new_in","partial_cmp","partial_cmp","pop","pop","pop_if","push","push","push_str","push_within_capacity","remove","remove","remove_matches","replace_range","reserve","reserve","reserve_exact","reserve_exact","resize","resize_with","retain","retain","retain_mut","serialize","serialize","set_len","shrink_to","shrink_to","shrink_to_fit","shrink_to_fit","source","spare_capacity_mut","splice","split_at_spare_mut","split_off","split_off","strip_prefix_of","strip_suffix_of","swap_remove","to_owned","to_owned","to_owned","to_owned","to_socket_addrs","to_sql","to_sql","to_string","to_string","to_string","truncate","truncate","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_reserve","try_reserve","try_reserve_exact","try_reserve_exact","try_with_capacity","try_with_capacity","try_with_capacity_in","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","with_capacity","with_capacity","with_capacity_in","write","write","write_all","write_char","write_str","write_vectored","Decode","Error","IncorrectChecksum","IncorrectChecksumError","InvalidCharacterError","TooShort","TooShortError","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","incorrect_checksum","into","into","invalid_base58_length","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Config","DecodeError","DecodeError","DecodeEstimate","DecodeSliceError","EncodeSliceError","Engine","InvalidByte","InvalidLastSymbol","InvalidLength","InvalidPadding","OutputSliceTooSmall","OutputSliceTooSmall","alphabet","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","config","decode","decode","decode_engine","decode_engine_slice","decode_engine_vec","decode_slice","decode_slice_unchecked","decode_vec","decoded_len_estimate","display","encode","encode","encode_engine","encode_engine_slice","encode_engine_string","encode_slice","encode_string","encoded_len","engine","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","into","into","into","prelude","read","source","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write","Alphabet","BCRYPT","BIN_HEX","CRYPT","DuplicatedByte","IMAP_MUTF7","InvalidLength","ParseAlphabetError","ReservedByte","STANDARD","URL_SAFE","UnprintableByte","as_str","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","into","into","new","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Base64Display","borrow","borrow_mut","fmt","from","into","new","to_string","try_from","try_into","type_id","vzip","Config","Config","DecodeEstimate","DecodeEstimate","DecodeMetadata","DecodePaddingMode","Engine","GeneralPurpose","GeneralPurposeConfig","Indifferent","RequireCanonical","RequireNone","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","config","config","decode","decode_slice","decode_slice_unchecked","decode_vec","decoded_len_estimate","default","encode","encode_padding","encode_padding","encode_slice","encode_string","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","general_purpose","into","into","into","into","new","new","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","with_decode_allow_trailing_bits","with_decode_padding_mode","with_encode_padding","GeneralPurpose","GeneralPurposeConfig","NO_PAD","PAD","STANDARD","STANDARD_NO_PAD","URL_SAFE","URL_SAFE_NO_PAD","BASE64_STANDARD","BASE64_STANDARD_NO_PAD","BASE64_URL_SAFE","BASE64_URL_SAFE_NO_PAD","Config","DecodeEstimate","Engine","config","decode","decode_slice","decode_slice_unchecked","decode_vec","encode","encode_slice","encode_string","DecoderReader","borrow","borrow_mut","fmt","from","into","into_inner","new","read","try_from","try_into","type_id","vzip","EncoderStringWriter","EncoderWriter","StrConsumer","borrow","borrow","borrow_mut","borrow_mut","consume","drop","finish","flush","flush","fmt","from","from","from_consumer","into","into","into_inner","into_inner","new","new","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","A","Bech32","Bech32m","ByteIterExt","C","CHECKSUM_LENGTH","CODE_LENGTH","Checksum","Checksum","D","DecodeError","E","EncodeError","EncodeIoError","F","Fe32","Fe32IterExt","Fmt","G","GENERATOR_SH","H","Hrp","J","K","L","M","MidstateRepr","N","NoChecksum","P","Parse","Q","R","S","T","TARGET_RESIDUE","TooLong","TooLong","U","V","W","Write","X","Y","Z","_0","_2","_3","_4","_5","_6","_7","_8","_9","add","add","add","add","add_assign","as_bytes","as_ref","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte_iter","bytes_to_fes","char_iter","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","decode","div","div","div","div","div_assign","encode","encode_lower","encode_lower_to_fmt","encode_lower_to_writer","encode_to_fmt","encode_to_writer","encode_upper","encode_upper_to_fmt","encode_upper_to_writer","encoded_length","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fes_to_bytes","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_char","from_char_unchecked","hash","hash","hash","hash","hash","hrp","into","into","into","into","into","into","into","into","is_valid_on_mainnet","is_valid_on_regtest","is_valid_on_signet","is_valid_on_testnet","is_valid_segwit","iter_alpha","len","lowercase_byte_iter","lowercase_char_iter","mul","mul","mul","mul","mul_assign","parse","parse_unchecked","partial_cmp","partial_cmp","partial_cmp","partial_cmp","primitives","sanity_check","segwit","source","source","source","sub","sub","sub","sub","sub_assign","to_char","to_lowercase","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_u8","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_checksum","BC","BCRT","Hrp","TB","Bech32","Bech32m","NoChecksum","checksum","decode","encode","gf32","hrp","iter","segwit","CHECKSUM_LENGTH","CODE_LENGTH","Checksum","Engine","GENERATOR_SH","HrpFe32Iter","MidstateRepr","ONE","PackedFe32","PackedNull","TARGET_RESIDUE","WIDTH","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","input_fe","input_hrp","input_target_residue","into","into","into","into_fallible","into_iter","mul_by_x_then_add","mul_by_x_then_add","new","new","next","residue","sanity_check","size_hint","to_owned","to_owned","transpose_into_fallible","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","unpack","unpack","vzip","vzip","vzip","AsciiToFe32Iter","ByteIter","Char","CharError","CheckedHrpstring","CheckedHrpstringError","Checksum","Checksum","ChecksumError","CodeLength","CodeLengthError","Fe32Iter","Hrp","InvalidChar","InvalidLength","InvalidResidue","InvalidWitnessVersion","MissingSeparator","MixedCase","NoData","NonZero","NothingAfterSeparator","Padding","PaddingError","Parse","SegwitCodeLengthError","SegwitHrpstring","SegwitHrpstringError","TooLong","TooMuch","Unchecked","UncheckedHrpstring","UncheckedHrpstringError","WitnessLength","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte_iter","byte_iter","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","code_length","data_part_ascii","data_part_ascii_no_checksum","data_part_ascii_no_witver_no_checksum","encoded_length","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fe32_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","has_valid_checksum","has_valid_hrp","hrp","hrp","hrp","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","len","len","new","new","new","new_bech32","next","next","next","remove_checksum","remove_witness_version","remove_witness_version","size_hint","size_hint","size_hint","source","source","source","source","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","validate_and_remove_checksum","validate_checksum","validate_segwit","validate_segwit_padding","validate_witness_program_length","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","witness_version","witness_version","witness_version","ByteIter","CharIter","Encoder","Fe32Iter","WitnessVersionIter","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","chars","clone","clone_into","eq","equivalent","equivalent","fes","from","from","from","from","from","into","into","into","into","into","into_fallible","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_iter","new","new","new","new","new","next","next","next","next","size_hint","size_hint","size_hint","size_hint","to_owned","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_witness_version","Fe32","FromCharError","Invalid","InvalidByte","NotAByte","NotAscii","TryFromError","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","into","into","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BC","BCRT","ByteIter","CharIter","Empty","Error","Hrp","InvalidAsciiByte","LowercaseByteIter","LowercaseCharIter","MixedCase","NonAsciiChar","TB","TooLong","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","from","from","from","from","into","into","into","into","into","into_fallible","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_iter","len","len","len","len","next","next","next","next","next_back","next_back","next_back","next_back","size_hint","size_hint","size_hint","size_hint","source","to_owned","to_string","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","ByteIterExt","BytesToFes","Checksummed","Fe32IterExt","FesToBytes","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bytes_to_fes","clone","clone","clone","clone_into","clone_into","clone_into","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fes_to_bytes","from","from","from","into","into","into","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","len","len","new","new_hrp","next","next","next","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_checksum","InvalidSegwitV0","InvalidWitnessVersionError","MAX_STRING_LENGTH","TooLong","TooShort","VERSION_0","VERSION_1","WitnessLengthError","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","into","into","is_valid_witness_program_length","is_valid_witness_version","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","validate_witness_program_length","validate_witness_version","vzip","vzip","DecodeError","EncodeError","Fmt","TooLong","VERSION_0","VERSION_1","WitnessLength","WitnessVersion","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","decode","encode","encode_lower_to_fmt_unchecked","encode_lower_to_writer_unchecked","encode_to_fmt_unchecked","encode_to_writer_unchecked","encode_upper_to_fmt_unchecked","encode_upper_to_writer_unchecked","encode_v0","encode_v1","encoded_length","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BlockTransactions","BlockTransactionsRequest","Error","HeaderAndShortIds","InvalidPrefill","PrefilledTransaction","ShortId","TxIndexOutOfRangeError","UnknownVersion","as_bytes","as_mut","as_mut","as_mut_ptr","as_ptr","as_ref","as_ref","as_ref","block_hash","block_hash","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","calculate_siphash_keys","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","default","deserialize","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_block","from_hex","from_request","from_str","hash","hash","hash","hash","hash","header","idx","index","indexes","into","into","into","into","into","into","into","is_empty","len","nonce","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","prefilled_txs","serialize","short_ids","source","source","to_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","transactions","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_siphash_keys","BitStreamReader","BitStreamWriter","BlockFilter","BlockFilterReader","BlockFilterWriter","Error","FilterHash","FilterHeader","GcsFilterReader","GcsFilterWriter","Io","UtxoMissing","add_element","add_element","add_input_scripts","add_output_scripts","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","content","eq","equivalent","equivalent","filter_header","finish","finish","flush","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","match_all","match_all","match_all","match_any","match_any","match_any","new","new","new","new","new","new","new","new_script_filter","read","source","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","Base58","CannotDeriveFromHardenedKey","ChainCode","ChildNumber","DerivationPath","DerivationPathIterator","Error","ExtendedPrivKey","ExtendedPubKey","ExtendendPrivKey","ExtendendPubKey","Fingerprint","Hardened","Hex","IntoDerivationPath","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidChildNumber","InvalidChildNumberFormat","InvalidDerivationPathFormat","InvalidPublicKeyHexLength","KeySource","Normal","Secp256k1","UnknownVersion","WrongExtendedKeyLength","XKeyIdentifier","Xpriv","Xpub","as_bytes","as_bytes","as_mut","as_mut","as_mut","as_mut","as_mut_ptr","as_mut_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_derive_hardened","can_derive_hardened","chain_code","chain_code","chain_code","chain_code","chain_code","chain_code","child","child_number","child_number","child_number","child_number","child_number","child_number","children_from","ckd_pub","ckd_pub_tweak","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","decode","decode","default","default","depth","depth","depth","depth","depth","depth","derive_priv","derive_pub","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","fingerprint","fingerprint","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hardened_idx","from_hex","from_hex","from_iter","from_normal_idx","from_priv","from_str","from_str","from_str","from_str","from_str","from_str","get_key","hardened_children","hash","hash","hash","hash","hash","identifier","identifier","increment","index","index","index","into","into","into","into","into","into","into","into","into","into_child","into_derivation_path","into_derivation_path","into_fallible","into_iter","into_iter","invalid_base58_payload_length","is_empty","is_empty","is_empty","is_hardened","is_master","is_normal","len","len","len","master","network","network","network","network","network","network","new_master","next","normal_children","parent_fingerprint","parent_fingerprint","parent_fingerprint","parent_fingerprint","parent_fingerprint","parent_fingerprint","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","private_key","private_key","private_key","public_key","public_key","public_key","serialize","serialize","serialize","serialize","serialize","serialize","source","start_from","to_bytes","to_bytes","to_keypair","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_priv","to_pub","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_u32_vec","to_x_only_pub","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","xkey_fingerprint","xkey_fingerprint","index","index","FeeRate","Weight","block","constants","fee_rate","locktime","opcodes","script","transaction","weight","witness","BadProofOfWork","BadTarget","Bip34Error","Block","BlockHash","Header","NO_SOFT_FORK_SIGNALLING","NegativeHeight","NotPresent","ONE","SIZE","TWO","TxMerkleNode","UnexpectedPush","Unsupported","ValidationError","Version","WitnessCommitment","WitnessMerkleNode","bits","block_hash","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","default","deserialize","deserialize","difficulty","difficulty_float","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_consensus","hash","hash","header","into","into","into","into","is_signalling_soft_fork","merkle_root","nonce","partial_cmp","partial_cmp","prev_blockhash","serialize","serialize","source","source","target","time","to_consensus","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","txdata","type_id","type_id","type_id","type_id","validate_pow","version","vzip","vzip","vzip","vzip","work","BITCOIN","COINBASE_MATURITY","ChainHash","DIFFCHANGE_INTERVAL","DIFFCHANGE_TIMESPAN","MAX_BLOCK_SIGOPS_COST","MAX_SCRIPTNUM_VALUE","MAX_SCRIPT_ELEMENT_SIZE","PUBKEY_ADDRESS_PREFIX_MAIN","PUBKEY_ADDRESS_PREFIX_TEST","REGTEST","SCRIPT_ADDRESS_PREFIX_MAIN","SCRIPT_ADDRESS_PREFIX_TEST","SIGNET","SUBSIDY_HALVING_INTERVAL","TARGET_BLOCK_SPACING","TESTNET","TESTNET3","TESTNET4","WITNESS_SCALE_FACTOR","as_bytes","as_mut","as_mut","as_mut_ptr","as_ptr","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","cmp","deserialize","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from_genesis_block_hash","from_hex","from_str","genesis_block","hash","index","into","is_empty","len","partial_cmp","serialize","to_bytes","to_owned","to_string","try_from","try_from","try_into","type_id","using_genesis_block","using_genesis_block_const","vzip","FeeRate","absolute","relative","Blocks","ConversionError","Height","LOCK_TIME_THRESHOLD","LockTime","MAX","MAX","MIN","MIN","ParseHeightError","ParseTimeError","SIZE","Seconds","Time","ZERO","ZERO","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_after","check_after","check_older","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_encode","deserialize","deserialize","deserialize","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_consensus","from_consensus","from_consensus","from_height","from_hex","from_hex","from_hex","from_str","from_str","from_str","from_time","from_unprefixed_hex","hash","hash","hash","into","into","into","into","into","into","is_block_height","is_block_time","is_implied_by","is_same_unit","is_satisfied_by","partial_cmp","partial_cmp","partial_cmp","provider_lookup_ecdsa_sig","provider_lookup_hash160","provider_lookup_hash256","provider_lookup_raw_pkh_ecdsa_sig","provider_lookup_raw_pkh_pk","provider_lookup_raw_pkh_tap_leaf_script_sig","provider_lookup_raw_pkh_x_only_pk","provider_lookup_ripemd160","provider_lookup_sha256","provider_lookup_tap_control_block_map","provider_lookup_tap_key_spend_sig","provider_lookup_tap_leaf_script_sig","serialize","serialize","serialize","source","source","source","to_consensus_u32","to_consensus_u32","to_consensus_u32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","Blocks","DisabledLockTimeError","Height","IncompatibleHeightError","IncompatibleTimeError","LockTime","MAX","MAX","MIN","MIN","SIZE","Time","Time","TimeOverflowError","ZERO","ZERO","ZERO","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_after","check_older","check_older","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","deserialize","deserialize","deserialize","disabled_locktime_value","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_512_second_intervals","from_512_second_intervals","from_consensus","from_height","from_height","from_seconds_ceil","from_seconds_ceil","from_seconds_floor","from_seconds_floor","from_sequence","from_str","from_str","hash","hash","hash","height","height","into","into","into","into","into","into","into","is_block_height","is_block_time","is_implied_by","is_implied_by_sequence","is_same_unit","is_satisfied_by","is_satisfied_by_height","is_satisfied_by_time","new","partial_cmp","partial_cmp","partial_cmp","provider_lookup_ecdsa_sig","provider_lookup_hash160","provider_lookup_hash256","provider_lookup_raw_pkh_ecdsa_sig","provider_lookup_raw_pkh_pk","provider_lookup_raw_pkh_tap_leaf_script_sig","provider_lookup_raw_pkh_x_only_pk","provider_lookup_ripemd160","provider_lookup_sha256","provider_lookup_tap_control_block_map","provider_lookup_tap_key_spend_sig","provider_lookup_tap_leaf_script_sig","serialize","serialize","serialize","time","time","to_consensus_u32","to_consensus_u32","to_consensus_u32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_sequence","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","value","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Class","ClassifyContext","IllegalOp","Legacy","NoOp","OP_0","OP_FALSE","OP_NOP2","OP_NOP3","OP_TRUE","Opcode","Ordinary","PushBytes","PushNum","ReturnOp","SuccessOp","TapScript","all","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","hash","into","into","partial_cmp","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","OP_0NOTEQUAL","OP_1ADD","OP_1SUB","OP_2DIV","OP_2DROP","OP_2DUP","OP_2MUL","OP_2OVER","OP_2ROT","OP_2SWAP","OP_3DUP","OP_ABS","OP_ADD","OP_AND","OP_BOOLAND","OP_BOOLOR","OP_CAT","OP_CHECKMULTISIG","OP_CHECKMULTISIGVERIFY","OP_CHECKSIG","OP_CHECKSIGADD","OP_CHECKSIGVERIFY","OP_CLTV","OP_CODESEPARATOR","OP_CSV","OP_DEPTH","OP_DIV","OP_DROP","OP_DUP","OP_ELSE","OP_ENDIF","OP_EQUAL","OP_EQUALVERIFY","OP_FROMALTSTACK","OP_GREATERTHAN","OP_GREATERTHANOREQUAL","OP_HASH160","OP_HASH256","OP_IF","OP_IFDUP","OP_INVALIDOPCODE","OP_INVERT","OP_LEFT","OP_LESSTHAN","OP_LESSTHANOREQUAL","OP_LSHIFT","OP_MAX","OP_MIN","OP_MOD","OP_MUL","OP_NEGATE","OP_NIP","OP_NOP","OP_NOP1","OP_NOP10","OP_NOP4","OP_NOP5","OP_NOP6","OP_NOP7","OP_NOP8","OP_NOP9","OP_NOT","OP_NOTIF","OP_NUMEQUAL","OP_NUMEQUALVERIFY","OP_NUMNOTEQUAL","OP_OR","OP_OVER","OP_PICK","OP_PUSHBYTES_0","OP_PUSHBYTES_1","OP_PUSHBYTES_10","OP_PUSHBYTES_11","OP_PUSHBYTES_12","OP_PUSHBYTES_13","OP_PUSHBYTES_14","OP_PUSHBYTES_15","OP_PUSHBYTES_16","OP_PUSHBYTES_17","OP_PUSHBYTES_18","OP_PUSHBYTES_19","OP_PUSHBYTES_2","OP_PUSHBYTES_20","OP_PUSHBYTES_21","OP_PUSHBYTES_22","OP_PUSHBYTES_23","OP_PUSHBYTES_24","OP_PUSHBYTES_25","OP_PUSHBYTES_26","OP_PUSHBYTES_27","OP_PUSHBYTES_28","OP_PUSHBYTES_29","OP_PUSHBYTES_3","OP_PUSHBYTES_30","OP_PUSHBYTES_31","OP_PUSHBYTES_32","OP_PUSHBYTES_33","OP_PUSHBYTES_34","OP_PUSHBYTES_35","OP_PUSHBYTES_36","OP_PUSHBYTES_37","OP_PUSHBYTES_38","OP_PUSHBYTES_39","OP_PUSHBYTES_4","OP_PUSHBYTES_40","OP_PUSHBYTES_41","OP_PUSHBYTES_42","OP_PUSHBYTES_43","OP_PUSHBYTES_44","OP_PUSHBYTES_45","OP_PUSHBYTES_46","OP_PUSHBYTES_47","OP_PUSHBYTES_48","OP_PUSHBYTES_49","OP_PUSHBYTES_5","OP_PUSHBYTES_50","OP_PUSHBYTES_51","OP_PUSHBYTES_52","OP_PUSHBYTES_53","OP_PUSHBYTES_54","OP_PUSHBYTES_55","OP_PUSHBYTES_56","OP_PUSHBYTES_57","OP_PUSHBYTES_58","OP_PUSHBYTES_59","OP_PUSHBYTES_6","OP_PUSHBYTES_60","OP_PUSHBYTES_61","OP_PUSHBYTES_62","OP_PUSHBYTES_63","OP_PUSHBYTES_64","OP_PUSHBYTES_65","OP_PUSHBYTES_66","OP_PUSHBYTES_67","OP_PUSHBYTES_68","OP_PUSHBYTES_69","OP_PUSHBYTES_7","OP_PUSHBYTES_70","OP_PUSHBYTES_71","OP_PUSHBYTES_72","OP_PUSHBYTES_73","OP_PUSHBYTES_74","OP_PUSHBYTES_75","OP_PUSHBYTES_8","OP_PUSHBYTES_9","OP_PUSHDATA1","OP_PUSHDATA2","OP_PUSHDATA4","OP_PUSHNUM_1","OP_PUSHNUM_10","OP_PUSHNUM_11","OP_PUSHNUM_12","OP_PUSHNUM_13","OP_PUSHNUM_14","OP_PUSHNUM_15","OP_PUSHNUM_16","OP_PUSHNUM_2","OP_PUSHNUM_3","OP_PUSHNUM_4","OP_PUSHNUM_5","OP_PUSHNUM_6","OP_PUSHNUM_7","OP_PUSHNUM_8","OP_PUSHNUM_9","OP_PUSHNUM_NEG1","OP_RESERVED","OP_RESERVED1","OP_RESERVED2","OP_RETURN","OP_RETURN_187","OP_RETURN_188","OP_RETURN_189","OP_RETURN_190","OP_RETURN_191","OP_RETURN_192","OP_RETURN_193","OP_RETURN_194","OP_RETURN_195","OP_RETURN_196","OP_RETURN_197","OP_RETURN_198","OP_RETURN_199","OP_RETURN_200","OP_RETURN_201","OP_RETURN_202","OP_RETURN_203","OP_RETURN_204","OP_RETURN_205","OP_RETURN_206","OP_RETURN_207","OP_RETURN_208","OP_RETURN_209","OP_RETURN_210","OP_RETURN_211","OP_RETURN_212","OP_RETURN_213","OP_RETURN_214","OP_RETURN_215","OP_RETURN_216","OP_RETURN_217","OP_RETURN_218","OP_RETURN_219","OP_RETURN_220","OP_RETURN_221","OP_RETURN_222","OP_RETURN_223","OP_RETURN_224","OP_RETURN_225","OP_RETURN_226","OP_RETURN_227","OP_RETURN_228","OP_RETURN_229","OP_RETURN_230","OP_RETURN_231","OP_RETURN_232","OP_RETURN_233","OP_RETURN_234","OP_RETURN_235","OP_RETURN_236","OP_RETURN_237","OP_RETURN_238","OP_RETURN_239","OP_RETURN_240","OP_RETURN_241","OP_RETURN_242","OP_RETURN_243","OP_RETURN_244","OP_RETURN_245","OP_RETURN_246","OP_RETURN_247","OP_RETURN_248","OP_RETURN_249","OP_RETURN_250","OP_RETURN_251","OP_RETURN_252","OP_RETURN_253","OP_RETURN_254","OP_RIGHT","OP_RIPEMD160","OP_ROLL","OP_ROT","OP_RSHIFT","OP_SHA1","OP_SHA256","OP_SIZE","OP_SUB","OP_SUBSTR","OP_SWAP","OP_TOALTSTACK","OP_TUCK","OP_VER","OP_VERIF","OP_VERIFY","OP_VERNOTIF","OP_WITHIN","OP_XOR","Builder","Bytes","EarlyEndOfScript","Error","Instruction","InstructionIndices","Instructions","NonMinimalPush","NumericOverflow","Op","PushBytes","PushBytes","PushBytesBuf","PushBytesError","PushBytesErrorReport","Script","ScriptBuf","ScriptHash","Serialization","UnknownSpentOutput","WScriptHash","as_bytes","as_bytes","as_mut","as_mut","as_mut","as_mut_bytes","as_mut_push_bytes","as_push_bytes","as_ref","as_ref","as_ref","as_script","as_script","as_script","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","deref","deref_mut","empty","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend_from_slice","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","index","index","index","index","index","index","index","index","input_len","input_len","into","into","into","into","into","into","into","into","into_bytes","into_fallible","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_script","is_empty","is_empty","is_empty","len","len","len","new","new","next","next","next","next_back","nth","nth","nth_back","opcode","partial_cmp","partial_cmp","pop","push","push_bytes","push_int","push_key","push_lock_time","push_opcode","push_sequence","push_slice","push_verify","push_x_only_key","read_scriptbool","read_scriptint","read_scriptint_non_minimal","remove","reserve","script_num","size_hint","size_hint","size_hint","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","transpose_into_fallible","transpose_into_fallible","transpose_into_fallible","truncate","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","witness_program","witness_version","write_scriptint","Error","InvalidLength","InvalidSegwitV0Length","MAX_SIZE","MIN_SIZE","WitnessProgram","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","from","into","source","to_owned","to_string","try_from","try_into","type_id","vzip","DataPush","FromStrError","Invalid","TryFrom","TryFromError","TryFromInstructionError","Unparsable","V0","V1","V10","V11","V12","V13","V14","V15","V16","V2","V3","V4","V5","V6","V7","V8","V9","WitnessVersion","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","invalid_version","source","source","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","Format","IndexOutOfBoundsError","InputWeightPrediction","InputsIndexError","ONE","OutPoint","OutputsIndexError","P2PKH_COMPRESSED_MAX","P2PKH_UNCOMPRESSED_MAX","P2TR_KEY_DEFAULT_SIGHASH","P2TR_KEY_NON_DEFAULT_SIGHASH","P2WPKH_MAX","ParseOutPointError","Sequence","TWO","TooLong","Transaction","TxIn","TxOut","Txid","Txid","Version","Vout","VoutNotCanonical","Wtxid","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","consensus_decode","consensus_encode","deserialize","effective_value","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_slice","ground_p2pkh_compressed","ground_p2wpkh","hash","index","input","into","into","into","into","into","into","is_standard","length","lock_time","new","non_standard","output","partial_cmp","predict_weight","predict_weight_from_slices","previous_output","script_pubkey","script_sig","sequence","serialize","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","txid","type_id","type_id","type_id","type_id","type_id","type_id","value","version","vout","vzip","vzip","vzip","vzip","vzip","vzip","weight","witness","WITNESS_SCALE_FACTOR","Weight","Iter","Witness","borrow","borrow_mut","from","into","into_fallible","into_iter","next","size_hint","transpose_into_fallible","try_from","try_into","type_id","vzip","BITCOIN","Consensus","Decodable","DecodeError","Encodable","MAINNET","Other","Params","REGTEST","ReadExt","SIGNET","TESTNET","TESTNET3","TESTNET4","TooManyBytes","WriteExt","allow_min_difficulty_blocks","as_ref","bip16_time","bip34_height","bip65_height","bip66_height","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","consensus_decode","consensus_decode_from_finite_reader","consensus_encode","deserialize","deserialize_partial","difficulty_adjustment_interval","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","encode","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","into_de_error","max_attainable_target","miner_confirmation_window","network","new","no_pow_retargeting","params","pow_limit","pow_target_spacing","pow_target_timespan","read_bool","read_i16","read_i32","read_i64","read_i8","read_slice","read_u16","read_u32","read_u64","read_u8","rule_change_activation_threshold","serde","serialize","source","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","CheckedData","Decodable","Decode","Encodable","Error","FromHexError","InvalidChecksum","Io","MAX_VEC_SIZE","NonMinimalVarInt","OddLengthString","OversizedVectorAllocation","ParseFailed","ReadExt","UnsupportedSegwitFlag","VarInt","WriteExt","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","checksum","clone","clone_into","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","data","deserialize","deserialize_hex","deserialize_partial","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","into","into","into","into_data","new","read_bool","read_i16","read_i32","read_i64","read_i8","read_slice","read_u16","read_u32","read_u64","read_u8","serialize","serialize_hex","source","source","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","actual","expected","max","requested","MAINNET","Params","REGTEST","SIGNET","TESTNET","TESTNET3","TESTNET4","allow_min_difficulty_blocks","bip16_time","bip34_height","bip65_height","bip66_height","max_attainable_target","miner_confirmation_window","network","no_pow_retargeting","pow_limit","pow_target_spacing","pow_target_timespan","rule_change_activation_threshold","ByteDecoder","ByteEncoder","DecodeError","Decoder","EncodeBytes","Encoder","Hex","InitError","IntoDeError","With","borrow","borrow","borrow_mut","borrow_mut","default","deserialize","encode_chunk","flush","from","from","from_str","from_str","hex","into","into","into_de_error","serialize","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Case","DecodeError","DecodeInitError","Decoder","Encoder","Lower","Upper","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","encode_chunk","eq","eq","equivalent","equivalent","equivalent","equivalent","flush","fmt","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into","into_de_error","into_de_error","into_fallible","into_iter","next","to_owned","to_owned","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","EmptySignature","Error","Hex","Secp256k1","SerializedSignature","SighashType","Signature","as_mut","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","deref","deref_mut","deserialize","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_slice","from_str","hash","hash","into","into","into","into_iter","iter","serialize","serialize","serialize_to_writer","sighash_all","sighash_type","signature","source","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_vec","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write_to","ContainsPrefix","ContainsPrefixError","MissingPrefix","MissingPrefixError","ParseInt","ParseInt","ParseIntError","PrefixedHexError","UnprefixedHexError","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","into","source","source","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","BlockHash","FilterHash","FilterHeader","TxMerkleNode","Txid","WitnessCommitment","WitnessMerkleNode","Wtxid","BLOCK_SIZE","Bytes","DISPLAY_BACKWARD","Engine","FromSliceError","Hash","HashEngine","Hmac","HmacEngine","LEN","MidState","all_zeros","as_byte_array","borrow_slice_impl","cmp","engine","from_byte_array","from_engine","from_slice","hash","hash160","hash_byte_chunks","hash_newtype","hex_fmt_impl","hmac","input","midstate","n_bytes_hashed","ripemd160","serde_impl","serde_macros","sha1","sha256","sha256d","sha256t","sha256t_hash_newtype","sha384","sha512","sha512_256","siphash24","to_byte_array","fixed_time_eq","Hash","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","into","into_assets","partial_cmp","serialize","to_byte_array","to_owned","to_string","try_from","try_into","type_id","vzip","BytesToHexIter","Case","Display","DisplayHex","Error","FromHex","HexSliceToBytesIter","HexToArrayError","HexToBytesError","HexToBytesIter","InvalidChar","InvalidChar","InvalidCharError","InvalidLength","Lower","OddLengthString","OddLengthStringError","Upper","append_hex_to_string","as_hex","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buf_encoder","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","default","display","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_hex_exact","from","from","from","from","from","from","from","from","from","from","from","from_hex","from_pairs","hash","hex_reserve_suggestion","impl_fmt_traits","into","into","into","into","into","into","into","into_fallible","into_fallible","into_iter","into_iter","invalid_char","len","length","new","new","next","next","next_back","next_back","nth","nth_back","parse","prelude","read","size_hint","size_hint","source","source","source","source","test_hex_unwrap","to_hex_string","to_lower_hex_string","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_upper_hex_string","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write_err","BufEncoder","as_str","borrow","borrow_mut","clear","default","from","into","is_full","new","put_byte","put_bytes","put_bytes_min","space_remaining","try_from","try_into","type_id","vzip","Display","DisplayArray","DisplayByteSlice","DisplayHex","append_hex_to_string","as_hex","borrow","borrow","borrow_mut","borrow_mut","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_hex_exact","from","from","hex_reserve_suggestion","impl_fmt_traits","into","into","to_hex_string","to_lower_hex_string","to_string","to_string","to_upper_hex_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","HexToArrayError","HexToBytesError","InvalidChar","InvalidChar","InvalidCharError","InvalidLength","InvalidLengthError","OddLengthString","OddLengthStringError","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","expected","fmt","fmt","from","into","invalid","source","to_owned","to_string","try_from","try_into","type_id","vzip","Error","FromHex","HexToArrayError","HexToBytesError","InvalidChar","InvalidChar","InvalidLength","OddLengthString","from_hex","Display","DisplayHex","Error","FromHex","append_hex_to_string","as_hex","from_hex","hex_reserve_suggestion","to_hex_string","to_lower_hex_string","to_upper_hex_string","Hmac","HmacEngine","HmacMidState","borrow","borrow_mut","from","inner","into","outer","try_from","try_into","type_id","vzip","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","into_assets","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","Deserialize","Deserialize","Deserializer","Error","Error","Ok","Serialize","Serialize","SerializeMap","SerializeSeq","SerializeStruct","SerializeStructVariant","SerializeTuple","SerializeTupleStruct","SerializeTupleVariant","Serializer","collect_map","collect_seq","collect_str","de","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","forward_to_deserialize_any","is_human_readable","is_human_readable","ser","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","Bool","Bytes","Char","Deserialize","DeserializeOwned","DeserializeSeed","Deserializer","Deserializer","Enum","EnumAccess","Error","Error","Error","Error","Error","Error","Expected","Float","IgnoredAny","IntoDeserializer","Map","MapAccess","NewtypeStruct","NewtypeVariant","Option","Other","Seq","SeqAccess","Signed","StdError","Str","StructVariant","TupleVariant","Unexpected","Unit","UnitVariant","Unsigned","Value","Value","Variant","VariantAccess","Visitor","borrow","borrow","borrow_mut","borrow_mut","cause","clone","clone","clone_into","clone_into","custom","default","description","deserialize","deserialize","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","duplicate_field","eq","eq","expecting","expecting","fmt","fmt","fmt","fmt","fmt","fmt","from","from","into","into","into_deserializer","invalid_length","invalid_type","invalid_value","is_human_readable","missing_field","newtype_variant","newtype_variant_seed","next_element","next_element_seed","next_entry","next_entry_seed","next_key","next_key_seed","next_value","next_value_seed","provide","size_hint","size_hint","source","struct_variant","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","tuple_variant","type_id","type_id","unit_variant","unknown_field","unknown_variant","value","variant","variant_seed","visit_bool","visit_bool","visit_borrowed_bytes","visit_borrowed_str","visit_byte_buf","visit_bytes","visit_bytes","visit_char","visit_enum","visit_enum","visit_f32","visit_f64","visit_f64","visit_i128","visit_i128","visit_i16","visit_i32","visit_i64","visit_i64","visit_i8","visit_map","visit_map","visit_newtype_struct","visit_newtype_struct","visit_none","visit_none","visit_seq","visit_seq","visit_some","visit_some","visit_str","visit_str","visit_string","visit_u128","visit_u128","visit_u16","visit_u32","visit_u64","visit_u64","visit_u8","visit_unit","visit_unit","vzip","vzip","BoolDeserializer","BorrowedBytesDeserializer","BorrowedStrDeserializer","BytesDeserializer","CharDeserializer","CowStrDeserializer","EnumAccessDeserializer","Error","F32Deserializer","F64Deserializer","I128Deserializer","I16Deserializer","I32Deserializer","I64Deserializer","I8Deserializer","IsizeDeserializer","MapAccessDeserializer","MapDeserializer","SeqAccessDeserializer","SeqDeserializer","StrDeserializer","StringDeserializer","U128Deserializer","U16Deserializer","U32Deserializer","U64Deserializer","U8Deserializer","UnitDeserializer","UsizeDeserializer","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","custom","custom","description","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","end","end","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","into_deserializer","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","next_element_seed","next_element_seed","next_entry_seed","next_key_seed","next_value_seed","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Error","Error","Error","Error","Error","Error","Error","Error","Error","Impossible","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Serialize","SerializeMap","SerializeMap","SerializeSeq","SerializeSeq","SerializeStruct","SerializeStruct","SerializeStructVariant","SerializeStructVariant","SerializeTuple","SerializeTuple","SerializeTupleStruct","SerializeTupleStruct","SerializeTupleVariant","SerializeTupleVariant","Serializer","StdError","borrow","borrow_mut","cause","collect_map","collect_seq","collect_str","custom","description","downcast","downcast","downcast","downcast_mut","downcast_mut","downcast_mut","downcast_ref","downcast_ref","downcast_ref","end","end","end","end","end","end","end","end","end","end","end","end","end","end","from","into","is","is","is","is_human_readable","provide","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_element","serialize_element","serialize_element","serialize_element","serialize_entry","serialize_f32","serialize_f64","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_key","serialize_key","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","serialize_value","serialize_value","skip_field","skip_field","source","sources","try_from","try_into","type_id","vzip","serde_details","N","SerdeHash","deserialize","from_slice_delegated","serialize","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","Hash","HashEngine","Midstate","all_zeros","as_byte_array","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_encode","const_hash","default","default","deserialize","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","eq","equivalent","equivalent","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_byte_array","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_hex","from_midstate","from_slice","from_slice","from_slice_delegated","from_slice_delegated","from_str","from_str","hash","hash","hash_again","hash_tag","index","index","input","into","into","into","into_assets","midstate","n_bytes_hashed","partial_cmp","partial_cmp","serialize","serialize","to_byte_array","to_byte_array","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write","write","Hash","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","consensus_decode","consensus_encode","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","into","partial_cmp","serialize","to_byte_array","to_owned","to_string","try_from","try_into","type_id","vzip","Hash","Tag","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","default","deserialize","engine","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","into","partial_cmp","serialize","to_byte_array","to_owned","to_string","try_from","try_into","type_id","vzip","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","write","Hash","HashEngine","all_zeros","as_byte_array","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","deserialize","engine","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_slice","from_slice_delegated","from_str","hash","index","input","into","into","midstate","n_bytes_hashed","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Hash","HashEngine","State","all_zeros","as_byte_array","as_ref","as_ref","as_u64","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","equivalent","equivalent","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from_byte_array","from_bytes_mut","from_bytes_ref","from_engine","from_engine_to_u64","from_slice","from_slice_delegated","from_str","from_u64","hash","hash_to_u64_with_keys","hash_with_keys","index","input","into","into","into","keys","midstate","n_bytes_hashed","new","partial_cmp","serialize","to_byte_array","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_keys","write","write","AddrInUse","AddrNotAvailable","AlreadyExists","BrokenPipe","BufRead","ConnectionAborted","ConnectionRefused","ConnectionReset","Cursor","Err","Error","ErrorKind","FromStd","Interrupted","InvalidData","InvalidInput","NotConnected","NotFound","Ok","Other","PermissionDenied","Read","Result","Sink","Take","TimedOut","ToStd","UnexpectedEof","WouldBlock","Write","WriteZero","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","clone","clone_into","consume","consume","consume","consume","consume","consume","consume","description","emit_bool","emit_bool","emit_bool","emit_i16","emit_i16","emit_i16","emit_i32","emit_i32","emit_i32","emit_i64","emit_i64","emit_i64","emit_i8","emit_i8","emit_i8","emit_slice","emit_slice","emit_slice","emit_u16","emit_u16","emit_u16","emit_u32","emit_u32","emit_u32","emit_u64","emit_u64","emit_u64","emit_u8","emit_u8","emit_u8","eq","equivalent","equivalent","fill_buf","fill_buf","fill_buf","fill_buf","fill_buf","fill_buf","fill_buf","flush","flush","flush","flush","flush","flush","flush","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_std","from_std_mut","get_ref","hash","impl_write","inner","inner","inner","inner_mut","inner_mut","into","into","into","into","into","into","into","into_inner","into_inner","into_inner","kind","new","new","new","new","new_boxed","new_boxed","new_mut","new_mut","position","read","read","read","read","read","read","read","read_bool","read_bool","read_bool","read_bool","read_exact","read_exact","read_exact","read_exact","read_exact","read_i16","read_i16","read_i16","read_i16","read_i32","read_i32","read_i32","read_i32","read_i64","read_i64","read_i64","read_i64","read_i8","read_i8","read_i8","read_i8","read_slice","read_slice","read_slice","read_slice","read_to_end","read_to_limit","read_u16","read_u16","read_u16","read_u16","read_u32","read_u32","read_u32","read_u32","read_u64","read_u64","read_u64","read_u64","read_u8","read_u8","read_u8","read_u8","set_position","sink","source","take","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","write","write","write","write","write","write","write_all","write_all","write_all","write_all","write_all","write_all","write_all","Base58","CompressedPublicKey","Encoding","Even","FromSliceError","FromWifError","Hex","InvalidAddressVersion","InvalidAddressVersionError","InvalidBase58PayloadLength","InvalidBase58PayloadLengthError","InvalidChar","InvalidHexLength","InvalidKeyPrefix","InvalidLength","Keypair","Odd","Parity","ParseCompressedPublicKeyError","ParsePublicKeyError","PrivateKey","PubkeyHash","PublicKey","Secp256k1","Secp256k1","Secp256k1","Secp256k1","SortKey","TapTweak","TweakedAux","TweakedKey","TweakedKeypair","TweakedPublicKey","UncompressedPublicKeyError","UntweakedKeypair","UntweakedPublicKey","Verification","WPubkeyHash","XOnlyPublicKey","add_xonly_tweak","as_c_ptr","as_mut_c_ptr","as_mut_ptr","as_ptr","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","compressed","compressed","ctx","dangerous_assume_tweaked","dangerous_assume_tweaked","dangerous_assume_tweaked","dangerous_assume_tweaked","default","deserialize","deserialize","deserialize","deserialize","display_secret","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_i32","from_keypair","from_raw_all","from_raw_signing_only","from_raw_verification_only","from_seckey_slice","from_seckey_str","from_secret_key","from_str","from_u8","gen_new","generate_keypair","hash","hash","hash","hash","hash","inner","inner","into","into","into","into","into","into","into","into","into","into","into","into","into","invalid_address_version","invalid_base58_payload_length","network","new","new","non_secure_erase","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","preallocate_signing_size","preallocate_size","preallocate_size_gen","preallocate_verification_size","preallocated_gen_new","preallocated_new","preallocated_signing_only","preallocated_verification_only","public_key","public_parts","randomize","recover_ecdsa","secret_bytes","secret_key","seeded_randomize","serialize","serialize","serialize","serialize","serialize","sign_ecdsa","sign_ecdsa_grind_r","sign_ecdsa_low_r","sign_ecdsa_recoverable","sign_ecdsa_recoverable_with_noncedata","sign_ecdsa_with_noncedata","sign_schnorr","sign_schnorr_no_aux_rand","sign_schnorr_with_aux_rand","sign_schnorr_with_rng","signing_only","source","source","source","source","source","tap_tweak","tap_tweak","to_i32","to_inner","to_inner","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_u8","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verification_only","verify_ecdsa","verify_schnorr","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","x_only_public_key","BitsArrayOverflow","HashesArrayOverflow","IdenticalHashesFound","MerkleBlock","MerkleBlockError","MerkleRootMismatch","NoTransactions","NotAllBitsConsumed","NotAllHashesConsumed","NotEnoughBits","PartialMerkleTree","TooManyHashes","TooManyTransactions","bits","borrow","borrow","borrow_mut","borrow_mut","calculate_root","calculate_root_inline","clone","clone","clone_into","clone_into","consensus_decode_from_finite_reader","consensus_encode","eq","eq","equivalent","equivalent","equivalent","equivalent","extract_matches","fmt","fmt","fmt","from","from","from","from_txids","hashes","header","into","into","num_transactions","source","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","txn","type_id","type_id","vzip","vzip","Bitcoin","Main","Network","NetworkKind","ParseNetworkError","Regtest","Signet","Test","Testnet","Testnet4","UnknownChainHashError","as_core_arg","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","into","into","source","source","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","deserialize","serialize","Address","BITCOIN","BLOOM","COMPACT_FILTERS","GETUTXO","Magic","NETWORK","NETWORK_LIMITED","NONE","P2P_V2","PROTOCOL_VERSION","ParseMagicError","REGTEST","SIGNET","ServiceFlags","TESTNET","TESTNET3","TESTNET4","UnknownMagicError","WITNESS","add","address","address","as_mut","as_mut","as_ref","as_ref","bitor","bitor_assign","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_decode","consensus_decode","consensus_encode","consensus_encode","consensus_encode","default","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_bytes","from_params","from_str","has","hash","hash","hash","into","into","into","into","into","message","message_blockdata","message_bloom","message_compact_blocks","message_filter","message_network","new","partial_cmp","partial_cmp","port","remove","services","socket_addr","source","source","to_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_socket_addrs","to_string","to_string","to_string","to_string","to_u64","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","AddrV2","AddrV2Message","Address","Cjdns","I2p","Ipv4","Ipv6","TorV2","TorV3","Unknown","addr","address","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","consensus_decode","consensus_decode","consensus_encode","consensus_encode","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","hash","hash","into","into","port","port","services","services","socket_addr","time","to_owned","to_owned","to_socket_addrs","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Addr","AddrV2","Alert","Block","BlockTxn","CFCheckpt","CFHeaders","CFilter","CmpctBlock","CommandString","CommandStringError","FeeFilter","FilterAdd","FilterClear","FilterLoad","GetAddr","GetBlockTxn","GetBlocks","GetCFCheckpt","GetCFHeaders","GetCFilters","GetData","GetHeaders","Headers","Inv","MAX_INV_SIZE","MAX_MSG_SIZE","MemPool","MerkleBlock","NetworkMessage","NotFound","Ping","Pong","RawNetworkMessage","Reject","SendAddrV2","SendCmpct","SendHeaders","Tx","Unknown","Verack","Version","WtxidRelay","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmd","cmd","command","command","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from_str","into","into","into","into","into_payload","magic","new","payload","source","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_static","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","command","payload","Block","CompactBlock","Error","GetBlocksMessage","GetHeadersMessage","Inventory","Transaction","Unknown","WTx","WitnessBlock","WitnessTransaction","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from","hash","into","into","into","locator_hashes","locator_hashes","network_hash","new","new","partial_cmp","stop_hash","stop_hash","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","version","version","vzip","vzip","vzip","hash","inv_type","All","BloomFlags","FilterAdd","FilterLoad","None","PubkeyOnly","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","data","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter","flags","fmt","fmt","fmt","from","from","from","hash_funcs","into","into","into","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","tweak","type_id","type_id","type_id","vzip","vzip","vzip","BlockTxn","CmpctBlock","GetBlockTxn","SendCmpct","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","compact_block","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","hash","hash","hash","hash","into","into","into","into","partial_cmp","partial_cmp","partial_cmp","partial_cmp","send_compact","to_owned","to_owned","to_owned","to_owned","transactions","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","txs_request","type_id","type_id","type_id","type_id","version","vzip","vzip","vzip","vzip","CFCheckpt","CFHeaders","CFilter","GetCFCheckpt","GetCFHeaders","GetCFilters","block_hash","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter","filter_hashes","filter_headers","filter_type","filter_type","filter_type","filter_type","filter_type","filter_type","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","into","into","into","into","into","into","previous_filter_header","start_height","start_height","stop_hash","stop_hash","stop_hash","stop_hash","stop_hash","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","Checkpoint","Duplicate","Dust","Fee","Invalid","Malformed","NonStandard","Obsolete","Reject","RejectReason","VersionMessage","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","ccode","clone","clone","clone","clone_into","clone_into","clone_into","consensus_decode","consensus_decode","consensus_decode","consensus_decode_from_finite_reader","consensus_decode_from_finite_reader","consensus_encode","consensus_encode","consensus_encode","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from","hash","into","into","into","message","new","nonce","reason","receiver","relay","sender","services","start_height","timestamp","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","user_agent","version","vzip","vzip","vzip","ParseIntError","as_ref","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","input","into","source","to_owned","to_string","try_from","try_into","type_id","vzip","DEFAULT_BYTES_PER_SIGOP","DEFAULT_INCREMENTAL_RELAY_FEE","DEFAULT_MEMPOOL_EXPIRY","DEFAULT_MIN_RELAY_TX_FEE","DUST_RELAY_TX_FEE","MAX_STANDARD_TX_SIGOPS_COST","MAX_STANDARD_TX_WEIGHT","MIN_STANDARD_TX_NONWITNESS_SIZE","get_virtual_tx_size","CompactTarget","Target","Work","AbsurdFeeRate","Bare","Base64Encoding","Bip32","Bip32","CombineInconsistentKeySources","ConsensusEncoding","DuplicateKey","Ecdsa","Ecdsa","Error","Error","ExtractTxError","FeeOverflow","GetKey","GetKeyError","IndexOutOfBounds","IndexOutOfBoundsError","Input","Inputs","InvalidControlBlock","InvalidEcdsaSignature","InvalidHash","InvalidKey","InvalidLeafVersion","InvalidMagic","InvalidPreimageHashPair","InvalidProprietaryKey","InvalidPublicKey","InvalidSecp256k1PublicKey","InvalidSeparator","InvalidSighashType","InvalidTaprootSignature","InvalidXOnlyPublicKey","Io","KeyNotFound","KeyRequest","MismatchedAlgoKey","MissingInputUtxo","MissingInputValue","MissingRedeemScript","MissingSpendUtxo","MissingUtxo","MissingWitnessScript","MustHaveUnsignedTx","NegativeFee","NoMorePairs","NonStandardSighashType","NotEcdsa","NotSupported","NotWpkh","Output","OutputType","P2wpkhSighash","PartialDataConsumption","Psbt","PsbtEncoding","PsbtParseError","PsbtSighashType","PsbtUtxoOutOfbounds","Pubkey","Schnorr","Schnorr","SegwitV0Sighash","SendingTooMuch","Sh","ShWpkh","ShWsh","SignError","SigningAlgorithm","SigningErrors","SigningKeys","SigningKeysMap","TapTree","Taproot","TaprootError","Tr","TxInput","UnexpectedUnsignedTx","UnknownOutputType","UnsignedTxHasScriptSigs","UnsignedTxHasScriptWitnesses","Unsupported","Version","Wpkh","WrongSigningAlgorithm","Wsh","XPubKey","bip32_derivation","bip32_derivation","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","combine","combine","default","default","deserialize","deserialize","deserialize","ecdsa_hash_ty","ecdsa_hash_ty","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","final_script_sig","final_script_witness","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","from_u32","get_key","hash","hash","hash","hash","hash","hash160_preimages","hash256_preimages","inputs","into","into","into","into","into","into","into","into","into","into","into","into","into","non_witness_utxo","outputs","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_sigs","proprietary","proprietary","proprietary","raw","redeem_script","redeem_script","ripemd160_preimages","serialize","serialize","serialize","serialize","sha256_preimages","sighash_type","signing_algorithm","source","source","source","source","source","source","tap_internal_key","tap_internal_key","tap_key_origins","tap_key_origins","tap_key_sig","tap_merkle_root","tap_script_sigs","tap_scripts","tap_tree","taproot_hash_ty","taproot_hash_ty","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_u32","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unknown","unknown","unknown","unsigned_tx","update_with_descriptor_unchecked","update_with_descriptor_unchecked","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","witness_script","witness_script","witness_utxo","xpub","actual","expected","hash","hash_type","preimage","fee_rate","psbt","tx","tx","index","index","length","length","Key","Pair","ProprietaryKey","ProprietaryType","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","consensus_decode","consensus_encode","deserialize","deserialize","deserialize","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","hash","hash","into","into","into","key","key","key","partial_cmp","partial_cmp","prefix","serialize","serialize","serialize","subtype","to_key","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_value","value","vzip","vzip","vzip","All","AllPreallocated","Context","DESCRIPTION","Error","Even","FLAGS","IncorrectSignature","InvalidEllSwift","InvalidMessage","InvalidParityValue","InvalidParityValue","InvalidPublicKey","InvalidPublicKeySum","InvalidRecoveryId","InvalidSecretKey","InvalidSharedSecret","InvalidSignature","InvalidTweak","Keypair","MAX","Message","NotEnoughMemory","ONE","Odd","Parity","PreallocatedContext","PublicKey","Scalar","Secp256k1","SecretKey","SignOnly","SignOnlyPreallocated","Signing","ThirtyTwoByteHash","Verification","VerifyOnly","VerifyOnlyPreallocated","XOnlyPublicKey","ZERO","add_exp_tweak","add_tweak","as_c_ptr","as_c_ptr","as_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_ptr","as_ptr","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","combine","combine_keys","constants","deallocate","deallocate","deallocate","deallocate","deallocate","deallocate","deallocate","deserialize","deserialize","display_secret","ecdh","ecdsa","ellswift","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_be_bytes","from_digest","from_digest_slice","from_ellswift","from_keypair","from_keypair","from_le_bytes","from_secret_key","from_slice","from_slice","from_slice","from_str","from_str","from_x_only_public_key","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hashes","impl_array_newtype","index","index","index","into","into","into","into","into","into","into","into","into","into","into","into","into_32","keypair","mul_tweak","mul_tweak","negate","negate","new","non_secure_erase","non_secure_erase","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","public_key","random","random_custom","scalar","schnorr","secret_bytes","serialize","serialize","serialize","serialize_uncompressed","source","to_be_bytes","to_hash160","to_hash256","to_le_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_public_key","to_ripemd160","to_sha256","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","x_only_public_key","x_only_public_key","COMPACT_SIGNATURE_SIZE","CURVE_ORDER","ELLSWIFT_ENCODING_SIZE","FIELD_SIZE","GENERATOR_X","GENERATOR_Y","KEY_PAIR_SIZE","MAX_SIGNATURE_SIZE","MESSAGE_SIZE","ONE","PUBLIC_KEY_SIZE","SCHNORR_PUBLIC_KEY_SIZE","SCHNORR_SIGNATURE_SIZE","SECRET_KEY_SIZE","UNCOMPRESSED_PUBLIC_KEY_SIZE","ZERO","SharedSecret","as_ref","borrow","borrow","borrow_mut","clone","clone_into","cmp","deserialize","display_secret","eq","equivalent","equivalent","fmt","from","from_bytes","from_slice","from_str","hash","into","new","non_secure_erase","partial_cmp","secret_bytes","serialize","shared_secret_point","to_owned","try_from","try_into","type_id","vzip","RecoverableSignature","RecoveryId","SerializedSignature","Signature","as_c_ptr","as_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_ptr","as_mut_ptr","as_ptr","as_ptr","as_ref","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp_fast_unstable","deref","deserialize","eq","eq","eq","eq","eq","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_compact","from_compact","from_der","from_der_lax","from_i32","from_signature","from_str","hash","hash","hash","into","into","into","into","into_iter","into_iter","is_empty","len","normalize_s","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","serialize","serialize_compact","serialize_compact","serialize_der","serialized_signature","to_i32","to_owned","to_owned","to_owned","to_owned","to_signature","to_standard","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","IntoIter","SerializedSignature","as_slice","borrow","borrow_mut","clone","clone_into","fmt","from","into","into_fallible","into_iter","next","next_back","nth","size_hint","to_owned","transpose_into_fallible","try_from","try_into","type_id","vzip","A","B","ElligatorSwift","ElligatorSwiftParty","ElligatorSwiftSharedSecret","as_c_ptr","as_mut_c_ptr","as_secret_bytes","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","cmp","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from_array","from_pubkey","from_seckey","from_secret_bytes","from_str","hash","hash","hash","into","into","into","new","partial_cmp","partial_cmp","partial_cmp","shared_secret","shared_secret_with_hasher","to_array","to_owned","to_owned","to_owned","to_secret_bytes","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","CPtr","Context","EcdhHashFn","ElligatorSwift","EllswiftEcdhHashFn","Keypair","NonceFn","None","None","None","None","PublicKey","SECP256K1_SER_COMPRESSED","SECP256K1_SER_UNCOMPRESSED","SECP256K1_START_NONE","SECP256K1_START_SIGN","SECP256K1_START_VERIFY","SchnorrNonceFn","SchnorrSigExtraParams","Signature","Some","Some","Some","Some","Target","XOnlyPublicKey","as_c_ptr","as_c_ptr","as_c_ptr","as_c_ptr","as_c_ptr","as_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_mut_c_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp_fast_unstable","cmp_fast_unstable","cmp_fast_unstable","cmp_fast_unstable","cmp_fast_unstable","ecdsa_signature_parse_der_lax","eq","eq","eq","eq","eq","eq_fast_unstable","eq_fast_unstable","eq_fast_unstable","eq_fast_unstable","eq_fast_unstable","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_array","from_array_unchecked","from_array_unchecked","from_array_unchecked","from_array_unchecked","hash","hash","hash","hash","hash","impl_array_newtype","impl_raw_debug","index","index","index","index","index","into","into","into","into","into","into","into","new","new","new","new","new","non_secure_erase","non_secure_erase_impl","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","recovery","rustsecp256k1_v0_10_0_context_create","rustsecp256k1_v0_10_0_context_destroy","rustsecp256k1_v0_10_0_default_error_callback_fn","rustsecp256k1_v0_10_0_default_illegal_callback_fn","secp256k1_context_create","secp256k1_context_destroy","secp256k1_context_no_precomp","secp256k1_context_preallocated_clone","secp256k1_context_preallocated_clone_size","secp256k1_context_preallocated_create","secp256k1_context_preallocated_destroy","secp256k1_context_preallocated_size","secp256k1_context_randomize","secp256k1_ec_pubkey_cmp","secp256k1_ec_pubkey_combine","secp256k1_ec_pubkey_create","secp256k1_ec_pubkey_negate","secp256k1_ec_pubkey_parse","secp256k1_ec_pubkey_serialize","secp256k1_ec_pubkey_tweak_add","secp256k1_ec_pubkey_tweak_mul","secp256k1_ec_seckey_negate","secp256k1_ec_seckey_tweak_add","secp256k1_ec_seckey_tweak_mul","secp256k1_ec_seckey_verify","secp256k1_ecdh","secp256k1_ecdh_hash_function_default","secp256k1_ecdsa_sign","secp256k1_ecdsa_signature_normalize","secp256k1_ecdsa_signature_parse_compact","secp256k1_ecdsa_signature_parse_der","secp256k1_ecdsa_signature_serialize_compact","secp256k1_ecdsa_signature_serialize_der","secp256k1_ecdsa_verify","secp256k1_ellswift_create","secp256k1_ellswift_decode","secp256k1_ellswift_encode","secp256k1_ellswift_xdh","secp256k1_ellswift_xdh_hash_function_bip324","secp256k1_keypair_create","secp256k1_keypair_pub","secp256k1_keypair_sec","secp256k1_keypair_xonly_pub","secp256k1_keypair_xonly_tweak_add","secp256k1_nonce_function_bip340","secp256k1_nonce_function_default","secp256k1_nonce_function_rfc6979","secp256k1_schnorrsig_sign","secp256k1_schnorrsig_sign_custom","secp256k1_schnorrsig_verify","secp256k1_xonly_pubkey_cmp","secp256k1_xonly_pubkey_from_pubkey","secp256k1_xonly_pubkey_parse","secp256k1_xonly_pubkey_serialize","secp256k1_xonly_pubkey_tweak_add","secp256k1_xonly_pubkey_tweak_add_check","to_array","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","underlying_bytes","underlying_bytes","underlying_bytes","underlying_bytes","vzip","vzip","vzip","vzip","vzip","vzip","vzip","RecoverableSignature","as_c_ptr","as_mut_c_ptr","as_ref","borrow","borrow_mut","clone","clone_into","cmp","cmp_fast_unstable","default","eq","eq_fast_unstable","equivalent","equivalent","fmt","from","hash","index","into","new","partial_cmp","secp256k1_ecdsa_recover","secp256k1_ecdsa_recoverable_signature_convert","secp256k1_ecdsa_recoverable_signature_parse_compact","secp256k1_ecdsa_recoverable_signature_serialize_compact","secp256k1_ecdsa_sign_recoverable","to_owned","try_from","try_into","type_id","vzip","AlignedType","ZERO","borrow","borrow","borrow_mut","borrow_mut","c_char","c_int","c_uchar","c_uint","c_void","clone","clone_into","default","fmt","from","from","into","into","size_t","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","zeroed","BLOCK_SIZE","Bytes","DISPLAY_BACKWARD","Engine","FromSliceError","Hash","HashEngine","Hmac","HmacEngine","LEN","MidState","all_zeros","all_zeros","as_byte_array","as_byte_array","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_slice_impl","clone","clone","clone","clone_into","clone_into","clone_into","cmp","default","deserialize","emit_bool","emit_i16","emit_i32","emit_i64","emit_i8","emit_slice","emit_u16","emit_u32","emit_u64","emit_u8","engine","eq","eq","equivalent","equivalent","equivalent","equivalent","expected_length","flush","flush","fmt","fmt","fmt","fmt","fmt","from","from","from","from_byte_array","from_byte_array","from_engine","from_engine","from_inner_engines","from_slice","from_slice","from_str","hash","hash","hash_byte_chunks","hash_newtype","hex_fmt_impl","index","index","index","index","index","input","input","into","into","into","invalid_length","midstate","midstate","n_bytes_hashed","n_bytes_hashed","new","partial_cmp","serde_impl","serialize","sha256t_hash_newtype","to_byte_array","to_byte_array","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","write","write","CUSTOM_START","CryptoRng","Error","Fill","INTERNAL_START","Rng","RngCore","Seed","SeedableRng","borrow","borrow_mut","code","distributions","fill","fill_bytes","fmt","fmt","from","from","from","from_entropy","from_rng","from_seed","gen","gen_bool","gen_range","gen_ratio","inner","into","new","next_u32","next_u64","prelude","random","raw_os_error","read","rngs","sample","sample_iter","seed_from_u64","seq","source","take_inner","thread_rng","to_string","try_fill","try_fill","try_fill_bytes","try_from","try_into","type_id","vzip","AllWeightsZero","Alphanumeric","Bernoulli","BernoulliError","DistIter","DistMap","DistString","Distribution","InvalidProbability","InvalidWeight","NoItem","Open01","OpenClosed01","Slice","Standard","TooMany","Uniform","WeightedError","WeightedIndex","append_string","append_string","append_string","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","checked_sum","checked_sum","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_ratio","into","into","into","into","into","into","into","into","into","into","into","into","into_fallible","into_iter","map","new","new","new","new","new_inclusive","next","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_iter","sample_string","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uniform","update_weights","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weighted","SampleBorrow","SampleRange","SampleUniform","Sampler","Uniform","UniformChar","UniformDuration","UniformFloat","UniformInt","UniformSampler","X","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from","into","into","into","into","is_empty","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","AllWeightsZero","InvalidWeight","NoItem","TooMany","WeightedError","WeightedIndex","alias_method","Weight","WeightedIndex","borrow","borrow_mut","fmt","from","into","new","try_from","try_into","type_id","vzip","CryptoRng","Distribution","Item","IteratorRandom","Rng","RngCore","Seed","SeedableRng","SliceRandom","StdRng","ThreadRng","choose","choose","choose_multiple","choose_multiple","choose_multiple_fill","choose_multiple_weighted","choose_mut","choose_stable","choose_weighted","choose_weighted_mut","fill","fill_bytes","from_entropy","from_rng","from_seed","gen","gen_bool","gen_range","gen_ratio","map","next_u32","next_u64","partial_shuffle","random","sample","sample","sample_iter","sample_iter","seed_from_u64","shuffle","thread_rng","try_fill","try_fill_bytes","OsRng","StdRng","ThreadRng","adapter","as_rngcore","as_rngcore","as_rngcore","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default","eq","equivalent","equivalent","fill_bytes","fill_bytes","fill_bytes","fmt","fmt","fmt","from","from","from","from_rng","from_seed","into","into","into","mock","next_u32","next_u32","next_u32","next_u64","next_u64","next_u64","to_owned","to_owned","to_owned","try_fill_bytes","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","ReadError","ReadRng","ReseedingRng","as_rngcore","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","fill_bytes","fill_bytes","fmt","fmt","fmt","fmt","from","from","from","into","into","into","new","new","next_u32","next_u32","next_u64","next_u64","reseed","source","to_owned","to_string","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","StepRng","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fill_bytes","fmt","from","into","new","next_u32","next_u64","to_owned","try_fill_bytes","try_from","try_into","type_id","vzip","Item","IteratorRandom","SliceChooseIter","SliceRandom","borrow","borrow_mut","choose","choose","choose_multiple","choose_multiple","choose_multiple_fill","choose_multiple_weighted","choose_mut","choose_stable","choose_weighted","choose_weighted_mut","fmt","from","index","into","into_fallible","into_iter","len","next","partial_shuffle","shuffle","size_hint","transpose_into_fallible","try_from","try_into","type_id","vzip","IndexVec","IndexVecIntoIter","IndexVecIter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","fmt","fmt","fmt","from","from","from","from","from","index","into","into","into","into_fallible","into_fallible","into_iter","into_iter","into_iter","into_vec","is_empty","iter","len","next","next","sample","sample_weighted","size_hint","size_hint","to_owned","to_owned","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","OutOfRangeError","Scalar","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","fmt","from","hash","into","to_owned","to_string","try_from","try_into","type_id","vzip","Signature","as_c_ptr","as_mut_c_ptr","as_ref","borrow","borrow_mut","clone","clone_into","cmp","deserialize","eq","equivalent","equivalent","fmt","fmt","fmt","from","from_slice","from_str","hash","index","into","partial_cmp","serialize","serialize","to_owned","to_string","try_from","try_into","type_id","vzip","All","All","All","AllPlusAnyoneCanPay","AllPlusAnyoneCanPay","Annex","AnnexError","Default","EcdsaSighashType","Empty","EncodeSigningDataResult","IncorrectPrefix","InputsIndex","InvalidAllIndex","InvalidOneIndex","InvalidSighashType","InvalidSighashTypeError","Io","LegacySighash","NonStandardSighashTypeError","None","None","NonePlusAnyoneCanPay","NonePlusAnyoneCanPay","NotP2wpkhScript","One","P2wpkhError","Prevouts","PrevoutsIndex","PrevoutsIndexError","PrevoutsKind","PrevoutsKindError","PrevoutsSize","PrevoutsSizeError","ScriptPath","SegwitV0Sighash","Sighash","Sighash","SighashCache","SighashSingleBug","SighashTypeParseError","SigningDataError","Single","Single","SingleMissingOutput","SingleMissingOutputError","SinglePlusAnyoneCanPay","SinglePlusAnyoneCanPay","TapSighash","TapSighashTag","TapSighashType","TaprootError","WriteResult","as_bytes","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","consensus_encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","input_index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_transaction","is_sighash_single_bug","leaf_hash","legacy_encode_signing_data_to","legacy_signature_hash","map_err","new","new","new","outputs_length","p2wpkh_signature_hash","p2wsh_signature_hash","partial_cmp","partial_cmp","segwit_v0_encode_signing_data_to","source","source","source","source","source","source","source","source","source","source","source","taproot_encode_signing_data_to","taproot_key_spend_signature_hash","taproot_script_spend_signature_hash","taproot_signature_hash","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","transaction","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unrecognized","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_defaults","witness_mut","BITCOIN_SIGNED_MSG_PREFIX","InvalidBase64","InvalidEncoding","InvalidLength","MessageSignature","MessageSignatureError","UnsupportedAddressType","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compressed","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from_base64","from_slice","from_str","into","into","is_signed_by_address","new","recover_pubkey","serialize","signature","signed_msg_hash","source","to_base64","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","ControlBlock","EmptyTree","EmptyTree","Future","FutureLeafVersion","Hidden","HiddenNodesError","HiddenParts","HiddenParts","IncompleteBuilderError","InvalidControlBlockSize","InvalidInternalKey","InvalidInternalKey","InvalidMerkleBranchSize","InvalidMerkleTreeDepth","InvalidMerkleTreeDepth","InvalidSignatureSize","InvalidTaprootLeafVersion","LeafNode","LeafNodes","LeafVersion","NodeInfo","NodeNotInDfsOrder","NotFinalized","OverCompleteTree","Script","ScriptLeaf","ScriptLeaves","Secp256k1","SigFromSliceError","SighashType","Signature","TAPROOT_ANNEX_PREFIX","TAPROOT_CONTROL_BASE_SIZE","TAPROOT_CONTROL_MAX_NODE_COUNT","TAPROOT_CONTROL_MAX_SIZE","TAPROOT_CONTROL_NODE_SIZE","TAPROOT_LEAF_MASK","TAPROOT_LEAF_TAPSCRIPT","TapBranchTag","TapLeaf","TapLeafHash","TapLeafTag","TapNodeHash","TapScript","TapTree","TapTweakHash","TapTweakTag","TaprootBuilder","TaprootBuilderError","TaprootError","TaprootMerkleBranch","TaprootSpendInfo","add_hidden_node","add_leaf","add_leaf_with_ver","as_hidden","as_inner","as_mut","as_ref","as_script","as_slice","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","combine","control_block","decode","decode","default","default","depth","deref","deref_mut","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finalize","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_consensus","from_leaf_node","from_node_info","from_slice","has_hidden_nodes","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","internal_key","internal_key","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_builder","into_fallible","into_fallible","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_node_info","into_node_info","into_vec","is_empty","is_finalizable","leaf","leaf_hash","leaf_nodes","leaf_version","leaf_version","len","merkle_branch","merkle_branch","merkle_branch","merkle_branch","merkle_root","new","new_hidden","new_hidden_node","new_key_spend","new_leaf_with_ver","new_script","next","next","next_back","next_back","node_hash","node_hash","node_info","output_key","output_key_parity","output_key_parity","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","root_hash","script","script","script_leaves","script_map","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize_to_writer","serialized_signature","sighash_type","signature","size","size_hint","size_hint","source","source","source","source","source","tap_tweak","to_consensus","to_consensus","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_vec","transpose_into_fallible","transpose_into_fallible","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_node_info","try_into_taptree","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify_taproot_commitment","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","with_huffman_tree","with_huffman_tree","IntoIter","TaprootMerkleBranch","as_mut_slice","as_slice","borrow","borrow_mut","clone","clone_into","count","fmt","from","into","into_fallible","into_iter","last","next","next_back","nth","nth_back","size_hint","to_owned","transpose_into_fallible","try_from","try_into","type_id","vzip","IntoIter","SerializedSignature","as_ref","as_slice","borrow","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","deref","eq","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","from","from_signature","hash","into","into","into_fallible","into_iter","into_iter","into_iter","len","next","next_back","nth","partial_cmp","partial_cmp","size_hint","to_owned","to_owned","to_signature","to_string","transpose_into_fallible","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write_to","ChangeSet","IndexedTxGraph","apply_block","apply_block_relevant","apply_changeset","apply_update","apply_update_at","as_ref","batch_insert_relevant","batch_insert_relevant_unconfirmed","batch_insert_unconfirmed","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","default","deserialize","eq","fmt","fmt","from","from","from","from","graph","index","indexer","initial_changeset","insert_anchor","insert_seen_at","insert_tx","insert_txout","into","into","is_empty","merge","new","serialize","to_owned","try_from","try_from","try_into","try_into","tx_graph","type_id","type_id","vzip","vzip","ChangeSet","Indexer","apply_changeset","index_tx","index_txout","initial_changeset","is_tx_relevant","keychain_txout","spk_txout","ChangeSet","DEFAULT_LOOKAHEAD","DescriptorAlreadyAssigned","FullScanRequestBuilderExt","InsertDescriptorError","KeychainAlreadyAssigned","KeychainTxOutIndex","LAST_REVEALED_TABLE_NAME","SCHEMA_NAME","SyncRequestBuilderExt","all_unbounded_spk_iters","apply_changeset","apply_changeset","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default","deserialize","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from_sqlite","get_descriptor","index_of_spk","index_tx","index_txout","init_sqlite_tables","initial_changeset","insert_descriptor","into","into","into","is_empty","is_tx_relevant","is_used","keychain_outpoints","keychain_outpoints_in_range","keychains","last_revealed","last_revealed_index","last_revealed_indices","last_used_index","last_used_indices","lookahead","lookahead_to_target","mark_used","merge","net_value","new","next_index","next_unused_spk","outpoints","persist_to_sqlite","reveal_next_spk","reveal_to_target","reveal_to_target_multi","revealed_keychain_spks","revealed_spks","revealed_spks_from_indexer","schema_v0","sent_and_received","serialize","spk_at_index","spks_from_indexer","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","try_into","txout","txouts","txouts_in_tx","type_id","type_id","type_id","unbounded_spk_iter","unmark_used","unused_keychain_spks","unused_spks","unused_spks_from_indexer","vzip","vzip","vzip","descriptor","existing_assignment","existing_assignment","keychain","SpkTxOutIndex","all_spks","apply_changeset","borrow","borrow_mut","clone","clone_into","default","fmt","from","index_of_spk","index_tx","index_txout","initial_changeset","insert_spk","into","is_relevant","is_tx_relevant","is_used","mark_used","net_value","outpoints","outputs_in_range","scan","scan_txout","sent_and_received","spk_at_index","to_owned","try_from","try_into","txout","txouts","txouts_in_tx","type_id","unmark_used","unused_spks","vzip","AlterCheckPointError","ApplyHeaderError","BLOCKS_TABLE_NAME","CannotConnect","CannotConnectError","ChangeSet","CheckPoint","CheckPointIter","InconsistentBlocks","LocalChain","MissingGenesisError","SCHEMA_NAME","apply_changeset","apply_header","apply_header_connected_to","apply_update","blocks","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","default","deserialize","disconnect_from","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_blocks","from_changeset","from_genesis_hash","from_iter","from_iter","from_sqlite","from_tip","genesis_hash","get","get_chain_tip","height","init_sqlite_tables","initial_changeset","insert_block","into","into","into","into","into","into","is_block_in_chain","is_empty","iter_checkpoints","merge","original_hash","persist_to_sqlite","range","schema_v0","serialize","tip","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_include_height","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","update_hash","vzip","vzip","vzip","vzip","vzip","vzip","SCHEMAS_TABLE_NAME","migrate_schema","FullScanRequest","FullScanRequestBuilder","FullScanResponse","OutPoint","Spk","SyncItem","SyncProgress","SyncRequest","SyncRequestBuilder","SyncResponse","Txid","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","builder","builder","chain_tip","chain_tip","chain_tip","chain_tip","chain_update","chain_update","clone","clone","clone_into","clone_into","cmp","consumed","default","default","default","default","default","default","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","hash","inspect","inspect","into","into","into","into","into","into","into","into","iter_outpoints","iter_spks","iter_spks","iter_txids","keychains","last_active_indices","next_outpoint","next_spk","next_spk","next_txid","outpoints","outpoints_consumed","outpoints_remaining","partial_cmp","progress","remaining","revealed_spks_from_indexer","spks","spks_consumed","spks_for_keychain","spks_from_indexer","spks_remaining","spks_with_indexes","to_owned","to_owned","to_string","total","total_outpoints","total_spks","total_txids","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_update","tx_update","txids","txids_consumed","txids_remaining","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unused_spks_from_indexer","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","ANCHORS_TABLE_NAME","CalculateFeeError","CanonicalTx","ChangeSet","MissingTxOut","NegativeFee","SCHEMA_NAME","TXOUTS_TABLE_NAME","TXS_TABLE_NAME","TxAncestors","TxDescendants","TxGraph","TxNode","TxUpdate","all_anchors","all_txouts","anchor_heights","anchors","anchors","anchors","apply_changeset","apply_update","apply_update_at","as_ref","balance","batch_insert_unconfirmed","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","calculate_fee","chain_position","checked_sum","checked_sum","checked_sum","checked_sum","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","deref","deserialize","direct_conflicts","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter_chain_txouts","filter_chain_unspents","floating_txouts","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_sqlite","full_txs","get_chain_position","get_chain_spend","get_tx","get_tx_node","get_txout","init_sqlite_tables","initial_changeset","insert_anchor","insert_seen_at","insert_tx","insert_txout","into","into","into","into","into","into","into","into_fallible","into_fallible","into_iter","into_iter","is_empty","is_empty","last_seen","last_seen_unconfirmed","list_canonical_txs","map_anchors","map_anchors","merge","new","next","next","outspends","partial_cmp","partial_cmp","persist_to_sqlite","schema_v0","schema_v1","seen_ats","serialize","to_owned","to_owned","to_owned","to_owned","to_string","transpose_into_fallible","transpose_into_fallible","try_balance","try_filter_chain_txouts","try_filter_chain_unspents","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_get_chain_position","try_get_chain_spend","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_list_canonical_txs","tx","tx_node","tx_outputs","tx_spends","txid","txouts","txouts","txouts","txs","txs","txs_with_no_anchor_or_last_seen","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","walk_ancestors","walk_conflicts","walk_descendants"],"q":[[0,"bdk_chain"],[341,"bdk_chain::ChainPosition"],[344,"bdk_chain::bitcoin"],[2746,"bdk_chain::bitcoin::address"],[3017,"bdk_chain::bitcoin::address::AddressData"],[3020,"bdk_chain::bitcoin::address::error"],[3042,"bdk_chain::bitcoin::amount"],[3103,"bdk_chain::bitcoin::amount::serde"],[3114,"bdk_chain::bitcoin::amount::serde::as_btc"],[3117,"bdk_chain::bitcoin::amount::serde::as_btc::opt"],[3119,"bdk_chain::bitcoin::amount::serde::as_sat"],[3122,"bdk_chain::bitcoin::amount::serde::as_sat::opt"],[3124,"bdk_chain::bitcoin::base58"],[3492,"bdk_chain::bitcoin::base58::error"],[3535,"bdk_chain::bitcoin::base64"],[3625,"bdk_chain::bitcoin::base64::alphabet"],[3669,"bdk_chain::bitcoin::base64::display"],[3681,"bdk_chain::bitcoin::base64::engine"],[3763,"bdk_chain::bitcoin::base64::engine::general_purpose"],[3771,"bdk_chain::bitcoin::base64::prelude"],[3786,"bdk_chain::bitcoin::base64::read"],[3799,"bdk_chain::bitcoin::base64::write"],[3831,"bdk_chain::bitcoin::bech32"],[4097,"bdk_chain::bitcoin::bech32::hrp"],[4101,"bdk_chain::bitcoin::bech32::primitives"],[4111,"bdk_chain::bitcoin::bech32::primitives::checksum"],[4179,"bdk_chain::bitcoin::bech32::primitives::decode"],[4462,"bdk_chain::bitcoin::bech32::primitives::encode"],[4542,"bdk_chain::bitcoin::bech32::primitives::gf32"],[4587,"bdk_chain::bitcoin::bech32::primitives::hrp"],[4679,"bdk_chain::bitcoin::bech32::primitives::iter"],[4748,"bdk_chain::bitcoin::bech32::primitives::segwit"],[4796,"bdk_chain::bitcoin::bech32::segwit"],[4856,"bdk_chain::bitcoin::bip152"],[5046,"bdk_chain::bitcoin::bip158"],[5160,"bdk_chain::bitcoin::bip32"],[5506,"bdk_chain::bitcoin::bip32::ChildNumber"],[5508,"bdk_chain::bitcoin::blockdata"],[5519,"bdk_chain::bitcoin::blockdata::block"],[5639,"bdk_chain::bitcoin::blockdata::constants"],[5707,"bdk_chain::bitcoin::blockdata::fee_rate"],[5708,"bdk_chain::bitcoin::blockdata::locktime"],[5710,"bdk_chain::bitcoin::blockdata::locktime::absolute"],[5896,"bdk_chain::bitcoin::blockdata::locktime::relative"],[6106,"bdk_chain::bitcoin::blockdata::opcodes"],[6157,"bdk_chain::bitcoin::blockdata::opcodes::all"],[6413,"bdk_chain::bitcoin::blockdata::script"],[6967,"bdk_chain::bitcoin::blockdata::script::witness_program"],[6992,"bdk_chain::bitcoin::blockdata::script::witness_version"],[7076,"bdk_chain::bitcoin::blockdata::transaction"],[7236,"bdk_chain::bitcoin::blockdata::weight"],[7238,"bdk_chain::bitcoin::blockdata::witness"],[7253,"bdk_chain::bitcoin::consensus"],[7344,"bdk_chain::bitcoin::consensus::encode"],[7437,"bdk_chain::bitcoin::consensus::encode::Error"],[7441,"bdk_chain::bitcoin::consensus::params"],[7461,"bdk_chain::bitcoin::consensus::serde"],[7496,"bdk_chain::bitcoin::consensus::serde::hex"],[7574,"bdk_chain::bitcoin::ecdsa"],[7661,"bdk_chain::bitcoin::error"],[7744,"bdk_chain::bitcoin::hash_types"],[7752,"bdk_chain::bitcoin::hashes"],[7793,"bdk_chain::bitcoin::hashes::cmp"],[7794,"bdk_chain::bitcoin::hashes::hash160"],[7839,"bdk_chain::bitcoin::hashes::hex"],[8003,"bdk_chain::bitcoin::hashes::hex::buf_encoder"],[8021,"bdk_chain::bitcoin::hashes::hex::display"],[8059,"bdk_chain::bitcoin::hashes::hex::error"],[8088,"bdk_chain::bitcoin::hashes::hex::parse"],[8097,"bdk_chain::bitcoin::hashes::hex::prelude"],[8108,"bdk_chain::bitcoin::hashes::hmac"],[8121,"bdk_chain::bitcoin::hashes::ripemd160"],[8192,"bdk_chain::bitcoin::hashes::serde"],[8279,"bdk_chain::bitcoin::hashes::serde::de"],[8463,"bdk_chain::bitcoin::hashes::serde::de::value"],[9786,"bdk_chain::bitcoin::hashes::serde::ser"],[9915,"bdk_chain::bitcoin::hashes::serde_macros"],[9916,"bdk_chain::bitcoin::hashes::serde_macros::serde_details"],[9921,"bdk_chain::bitcoin::hashes::sha1"],[9991,"bdk_chain::bitcoin::hashes::sha256"],[10105,"bdk_chain::bitcoin::hashes::sha256d"],[10158,"bdk_chain::bitcoin::hashes::sha256t"],[10205,"bdk_chain::bitcoin::hashes::sha384"],[10261,"bdk_chain::bitcoin::hashes::sha512"],[10331,"bdk_chain::bitcoin::hashes::sha512_256"],[10387,"bdk_chain::bitcoin::hashes::siphash24"],[10479,"bdk_chain::bitcoin::io"],[10727,"bdk_chain::bitcoin::key"],[11097,"bdk_chain::bitcoin::merkle_tree"],[11155,"bdk_chain::bitcoin::network"],[11203,"bdk_chain::bitcoin::network::as_core_arg"],[11205,"bdk_chain::bitcoin::p2p"],[11363,"bdk_chain::bitcoin::p2p::address"],[11418,"bdk_chain::bitcoin::p2p::message"],[11546,"bdk_chain::bitcoin::p2p::message::NetworkMessage"],[11548,"bdk_chain::bitcoin::p2p::message_blockdata"],[11624,"bdk_chain::bitcoin::p2p::message_blockdata::Inventory"],[11626,"bdk_chain::bitcoin::p2p::message_bloom"],[11690,"bdk_chain::bitcoin::p2p::message_compact_blocks"],[11783,"bdk_chain::bitcoin::p2p::message_filter"],[11915,"bdk_chain::bitcoin::p2p::message_network"],[11993,"bdk_chain::bitcoin::parse"],[12014,"bdk_chain::bitcoin::policy"],[12023,"bdk_chain::bitcoin::pow"],[12026,"bdk_chain::bitcoin::psbt"],[12404,"bdk_chain::bitcoin::psbt::Error"],[12409,"bdk_chain::bitcoin::psbt::ExtractTxError"],[12413,"bdk_chain::bitcoin::psbt::IndexOutOfBoundsError"],[12417,"bdk_chain::bitcoin::psbt::raw"],[12488,"bdk_chain::bitcoin::secp256k1"],[12842,"bdk_chain::bitcoin::secp256k1::constants"],[12858,"bdk_chain::bitcoin::secp256k1::ecdh"],[12889,"bdk_chain::bitcoin::secp256k1::ecdsa"],[13011,"bdk_chain::bitcoin::secp256k1::ecdsa::serialized_signature"],[13033,"bdk_chain::bitcoin::secp256k1::ellswift"],[13108,"bdk_chain::bitcoin::secp256k1::ffi"],[13354,"bdk_chain::bitcoin::secp256k1::ffi::recovery"],[13386,"bdk_chain::bitcoin::secp256k1::ffi::types"],[13416,"bdk_chain::bitcoin::secp256k1::hashes"],[13530,"bdk_chain::bitcoin::secp256k1::rand"],[13582,"bdk_chain::bitcoin::secp256k1::rand::distributions"],[13857,"bdk_chain::bitcoin::secp256k1::rand::distributions::uniform"],[14000,"bdk_chain::bitcoin::secp256k1::rand::distributions::weighted"],[14007,"bdk_chain::bitcoin::secp256k1::rand::distributions::weighted::alias_method"],[14019,"bdk_chain::bitcoin::secp256k1::rand::prelude"],[14063,"bdk_chain::bitcoin::secp256k1::rand::rngs"],[14126,"bdk_chain::bitcoin::secp256k1::rand::rngs::adapter"],[14174,"bdk_chain::bitcoin::secp256k1::rand::rngs::mock"],[14195,"bdk_chain::bitcoin::secp256k1::rand::seq"],[14227,"bdk_chain::bitcoin::secp256k1::rand::seq::index"],[14284,"bdk_chain::bitcoin::secp256k1::scalar"],[14304,"bdk_chain::bitcoin::secp256k1::schnorr"],[14335,"bdk_chain::bitcoin::sighash"],[14684,"bdk_chain::bitcoin::sign_message"],[14739,"bdk_chain::bitcoin::taproot"],[15378,"bdk_chain::bitcoin::taproot::merkle_branch"],[15404,"bdk_chain::bitcoin::taproot::serialized_signature"],[15459,"bdk_chain::indexed_tx_graph"],[15510,"bdk_chain::indexer"],[15519,"bdk_chain::indexer::keychain_txout"],[15623,"bdk_chain::indexer::keychain_txout::InsertDescriptorError"],[15627,"bdk_chain::indexer::spk_txout"],[15664,"bdk_chain::local_chain"],[15797,"bdk_chain::rusqlite_impl"],[15799,"bdk_chain::spk_client"],[15945,"bdk_chain::tx_graph"],[16132,"bdk_chain::balance"],[16133,"bdk_chain::descriptor_ext"],[16134,"bdk_chain::tx_data_traits"],[16135,"bdk_core::block_id"],[16136,"bitcoin_hashes::sha256"],[16137,"bdk_core::checkpoint"],[16138,"bdk_core::tx_update"],[16139,"core::clone"],[16140,"bdk_chain::chain_data"],[16141,"bdk_chain::spk_iter"],[16142,"core::cmp"],[16143,"rusqlite::types::value_ref"],[16144,"rusqlite::types::from_sql"],[16145,"bitcoin::blockdata::transaction"],[16146,"bitcoin::network"],[16147,"bitcoin_units::amount"],[16148,"bitcoin::blockdata::block"],[16149,"bitcoin::blockdata::script::owned"],[16150,"miniscript::descriptor::key"],[16151,"miniscript::descriptor"],[16152,"core::option"],[16153,"core::borrow"],[16154,"core::result"],[16155,"serde::de"],[16156,"core::iter::traits::collect"],[16157,"core::fmt"],[16158,"bitcoin_hashes"],[16159,"bdk_chain::chain_oracle"],[16160,"core::hash"],[16161,"core::slice::index"],[16162,"fallible_iterator"],[16163,"core::iter::traits::iterator"],[16164,"bdk_core::merge"],[16165,"core::ops::function"],[16166,"core::ops::range"],[16167,"serde::ser"],[16168,"rusqlite::types::to_sql"],[16169,"rusqlite"],[16170,"alloc::string"],[16171,"core::any"],[16172,"bitcoin_units::weight"],[16173,"bitcoin::pow"],[16174,"secp256k1::key"],[16175,"secp256k1"],[16176,"secp256k1::scalar"],[16177,"secp256k1::context"],[16178,"bitcoin::address"],[16179,"bitcoin::bip158"],[16180,"bitcoin::bip32"],[16181,"bitcoin::blockdata::script"],[16182,"bitcoin::crypto::key"],[16183,"bitcoin::crypto::sighash"],[16184,"bitcoin::taproot"],[16185,"bitcoin::blockdata::script::borrowed"],[16186,"secp256k1_sys"],[16187,"bitcoin_hashes::sha256d"],[16188,"bitcoin_hashes::hash160"],[16189,"bitcoin_hashes::sha256t"],[16190,"bitcoin::blockdata::script::push_bytes::primitive"],[16191,"bitcoin::consensus::params"],[16192,"bitcoin::blockdata::script::builder"],[16193,"bitcoin::blockdata::constants"],[16194,"bitcoin::blockdata::locktime::absolute"],[16195,"bitcoin::blockdata::locktime::relative"],[16196,"bitcoin_units::fee_rate"],[16197,"bitcoin::blockdata::opcodes"],[16198,"bitcoin::blockdata::witness"],[16199,"bitcoin::blockdata::script::witness_program"],[16200,"bitcoin::blockdata::script::witness_version"],[16201,"bitcoin::consensus::encode"],[16202,"bitcoin::merkle_tree::block"],[16203,"bitcoin::psbt"],[16204,"bitcoin::psbt::error"],[16205,"bitcoin_io"],[16206,"core::marker"],[16207,"bitcoin_io::error"],[16208,"bitcoin_units::amount::serde::private"],[16209,"core::convert"],[16210,"bitcoin::blockdata::script::instruction"],[16211,"miniscript::psbt"],[16212,"alloc::vec"],[16213,"alloc::borrow"],[16214,"miniscript::primitives::relative_locktime"],[16215,"hex_conservative::error"],[16216,"bitcoin::error"],[16217,"bitcoin::p2p"],[16218,"bitcoin::address::error"],[16219,"bitcoin_units::locktime::relative"],[16220,"miniscript::miniscript::decode"],[16221,"alloc::boxed"],[16222,"bitcoin_units::locktime::absolute"],[16223,"bitcoin::crypto::taproot"],[16224,"bitcoin::crypto::ecdsa"],[16225,"alloc::collections::btree::map"],[16226,"bech32::primitives::gf32"],[16227,"miniscript::miniscript::hash256"],[16228,"bitcoin_hashes::ripemd160"],[16229,"secp256k1::schnorr"],[16230,"bech32::segwit"],[16231,"base58ck::error"],[16232,"bitcoin_units::amount::serde"],[16233,"core::alloc"],[16234,"std::ffi::os_str"],[16235,"std::path"],[16236,"bitcoin::bip152"],[16237,"bitcoin::p2p::message_blockdata"],[16238,"bitcoin::p2p::address"],[16239,"alloc::vec::drain"],[16240,"alloc::vec::extract_if"],[16241,"std::io::error"],[16242,"alloc::collections::binary_heap"],[16243,"bitcoin::taproot::merkle_branch"],[16244,"alloc::collections::vec_deque"],[16245,"alloc::ffi::c_str"],[16246,"miniscript::plan"],[16247,"serde::de::value"],[16248,"core::str::pattern"],[16249,"core::mem::maybe_uninit"],[16250,"alloc::vec::splice"],[16251,"core::net::socket_addr"],[16252,"alloc::vec::into_iter"],[16253,"rusqlite::error"],[16254,"alloc::collections"],[16255,"std::io"],[16256,"base64::encode"],[16257,"base64::decode"],[16258,"base64::engine"],[16259,"base64::alphabet"],[16260,"base64::display"],[16261,"base64::engine::general_purpose"],[16262,"base64::read::decoder"],[16263,"base64::write::encoder_string_writer"],[16264,"base64::write::encoder"],[16265,"bech32::primitives::hrp"],[16266,"bech32::primitives::iter"],[16267,"bech32::primitives"],[16268,"bech32"],[16269,"bech32::primitives::decode"],[16270,"bech32::primitives::encode"],[16271,"bech32::primitives::checksum"],[16272,"bech32::primitives::segwit"],[16273,"core::num::error"],[16274,"core::iter::traits::exact_size"],[16275,"miniscript::primitives::absolute_locktime"],[16276,"bitcoin::blockdata::script::push_bytes::error"],[16277,"bitcoin::blockdata::script::push_bytes"],[16278,"bitcoin_units::parse"],[16279,"bitcoin::consensus"],[16280,"bitcoin::consensus::serde"],[16281,"bitcoin::consensus::serde::hex"],[16282,"core::slice::iter"],[16283,"secp256k1::ecdsa"],[16284,"hex_conservative::parse"],[16285,"hex_conservative::display"],[16286,"hex_conservative"],[16287,"hex_conservative::iter"],[16288,"core::iter::traits::double_ended"],[16289,"core::iter::traits::marker"],[16290,"hex_conservative::buf_encoder"],[16291,"serde::de::ignored_any"],[16292,"core::error"],[16293,"serde::ser::impossible"],[16294,"bitcoin_hashes::serde_macros::serde_details"],[16295,"bitcoin_hashes::sha1"],[16296,"bitcoin_hashes::sha384"],[16297,"bitcoin_hashes::sha512"],[16298,"bitcoin_hashes::sha512_256"],[16299,"bitcoin_hashes::siphash24"],[16300,"bitcoin_io::bridge"],[16301,"core::ptr::non_null"],[16302,"secp256k1::context::alloc_only"],[16303,"secp256k1::secret"],[16304,"core::mem::manually_drop"],[16305,"rand::rng"],[16306,"secp256k1_sys::types"],[16307,"secp256k1::ecdsa::recovery"],[16308,"rand_core"],[16309,"bitcoin::p2p::message"],[16310,"bitcoin::p2p::message_bloom"],[16311,"bitcoin::p2p::message_compact_blocks"],[16312,"bitcoin::p2p::message_filter"],[16313,"bitcoin::p2p::message_network"],[16314,"bitcoin::psbt::map::output"],[16315,"bitcoin::psbt::map::input"],[16316,"bitcoin::psbt::display_from_str"],[16317,"bitcoin::psbt::raw"],[16318,"secp256k1::ellswift"],[16319,"secp256k1::ecdh"],[16320,"secp256k1_sys::recovery"],[16321,"secp256k1::ecdsa::serialized_signature"],[16322,"secp256k1::ecdsa::serialized_signature::into_iter"],[16323,"core::ffi"],[16324,"bitcoin_hashes::hmac"],[16325,"core::str::traits"],[16326,"rand_core::error"],[16327,"core::num::nonzero"],[16328,"getrandom::error"],[16329,"core::default"],[16330,"rand::distributions::uniform"],[16331,"rand::distributions::distribution"],[16332,"rand::rngs::thread"],[16333,"rand::distributions::other"],[16334,"rand::distributions"],[16335,"rand::distributions::bernoulli"],[16336,"rand::distributions::float"],[16337,"rand::distributions::slice"],[16338,"rand::distributions::weighted_index"],[16339,"core::ops::arith"],[16340,"core::num::wrapping"],[16341,"core::time"],[16342,"rand::distributions::weighted::alias_method"],[16343,"rand::seq"],[16344,"rand_core::os"],[16345,"rand::rngs::std"],[16346,"rand::rngs::adapter::reseeding"],[16347,"rand_core::block"],[16348,"rand::rngs::adapter::read"],[16349,"rand::rngs::mock"],[16350,"core::ops::index"],[16351,"rand::seq::index"],[16352,"bitcoin::sign_message::message_signing"],[16353,"alloc::collections::btree::set"],[16354,"bitcoin::taproot::serialized_signature"],[16355,"bitcoin::taproot::serialized_signature::into_iter"],[16356,"alloc::sync"],[16357,"rusqlite::transaction"],[16358,"bdk_core"],[16359,"bdk_core::spk_client"],[16360,"std::collections::hash::set"],[16361,"bitcoin"],[16362,"bitcoin::crypto"],[16363,"bitcoin_units::amount::serde::as_btc"],[16364,"bitcoin_units::amount::serde::as_btc::opt"],[16365,"bitcoin_units::amount::serde::as_sat"],[16366,"bitcoin_units::amount::serde::as_sat::opt"],[16367,"base58ck"],[16368,"base64"],[16369,"bitcoin::blockdata"],[16370,"bitcoin::blockdata::locktime"],[16371,"bitcoin::blockdata::opcodes::all"],[16372,"bitcoin_hashes::cmp"],[16373,"serde_derive"],[16374,"serde"],[16375,"bitcoin_hashes::serde_macros"],[16376,"bitcoin::merkle_tree"],[16377,"bitcoin::network::as_core_arg"],[16378,"bitcoin::policy"],[16379,"secp256k1::constants"],[16380,"rand"],[16381,"rand::distributions::weighted"],[16382,"rand::rngs"],[16383,"bitcoin::sign_message"]],"i":[0,0,0,0,0,0,0,0,0,15,0,0,56,0,0,0,0,0,0,0,0,0,0,0,15,1,2,3,5,6,13,2,2,2,2,0,0,17,11,6,17,63,5,6,11,13,23,1,15,16,17,2,2,18,63,5,6,11,13,23,1,15,16,17,2,18,16,5,6,11,13,1,15,16,17,2,18,5,6,11,13,1,15,16,17,2,18,15,5,6,15,16,2,23,23,23,23,23,23,23,23,6,3,3,15,6,1,5,6,13,1,23,18,36,5,6,1,15,2,36,2,5,6,11,1,15,16,17,2,11,5,5,6,6,1,1,15,15,16,16,17,17,2,2,11,13,5,6,11,13,1,1,15,16,17,2,2,2,2,63,5,5,5,5,6,6,11,13,13,23,23,23,1,15,16,17,2,2,18,11,2,2,11,2,2,2,2,11,56,5,6,11,15,2,5,11,5,1,2,0,0,11,63,5,6,11,13,23,1,15,16,17,2,18,63,18,23,63,11,18,56,15,16,62,16,16,11,0,0,13,62,0,11,18,18,63,18,18,16,5,6,15,16,2,11,11,11,0,0,13,0,5,6,1,15,2,16,0,0,62,2,5,6,11,13,1,15,16,17,2,18,2,23,23,23,23,23,23,23,23,1,2,1,63,18,1,1,63,5,6,11,13,23,1,15,16,17,2,18,63,5,6,11,13,23,1,15,16,17,2,18,0,17,16,13,13,63,5,6,11,13,23,1,15,16,17,2,18,1,63,5,6,11,13,23,1,15,16,17,2,18,754,755,754,0,0,142,143,142,143,0,127,132,132,132,26,0,0,132,0,0,148,127,142,0,124,124,0,0,0,0,0,0,27,76,127,77,124,146,146,146,146,146,77,27,76,28,27,76,127,77,77,145,133,0,132,132,132,137,132,0,0,142,143,142,143,27,76,27,76,0,0,86,86,86,86,86,132,0,0,0,0,133,26,132,27,132,0,0,0,0,0,0,26,142,143,142,143,0,0,0,0,0,0,0,0,0,0,145,26,26,133,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,77,0,0,0,0,0,0,0,0,0,0,0,0,27,76,127,77,124,146,76,27,76,77,78,27,76,77,79,0,85,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,0,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,104,79,104,104,30,30,104,79,79,30,79,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,87,87,88,88,89,89,29,29,90,90,91,91,92,92,104,104,30,30,93,93,93,94,94,94,25,25,95,95,96,96,96,97,97,97,98,98,99,99,100,100,26,101,101,102,102,103,103,30,85,85,85,102,117,28,0,0,0,118,118,0,132,27,76,127,79,77,86,133,85,87,87,88,88,89,89,29,29,90,90,91,91,92,92,118,128,104,30,30,134,135,93,93,94,94,25,25,95,95,136,117,124,137,28,131,138,139,96,96,97,97,140,141,98,98,99,99,108,100,100,142,143,144,145,26,78,146,147,148,110,101,101,111,102,102,112,103,103,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,104,30,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,104,30,104,26,124,118,124,124,118,76,27,76,77,27,76,127,77,27,76,127,77,127,27,76,27,76,77,128,131,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,104,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,98,99,108,100,142,145,26,78,146,147,110,101,111,102,112,103,79,118,148,139,141,118,28,28,118,28,0,27,87,88,29,90,91,118,25,95,136,124,137,131,138,144,147,101,118,30,117,137,28,27,87,88,29,90,91,118,104,30,25,95,136,117,124,137,28,131,138,144,147,101,104,104,79,27,76,30,136,117,124,131,108,147,110,111,112,30,30,27,76,27,76,27,127,79,77,85,87,88,89,29,90,91,92,118,104,30,93,94,25,95,136,117,124,137,28,131,139,96,97,140,141,98,99,100,142,143,26,78,146,147,148,148,101,102,103,148,146,146,27,76,27,76,27,27,76,77,77,27,76,77,104,0,124,117,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,108,100,110,101,111,102,112,103,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,104,104,30,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,79,132,132,27,27,76,76,127,127,79,79,77,77,86,86,133,133,85,85,87,87,88,88,89,89,29,29,90,90,91,91,92,92,118,118,128,128,104,104,30,30,134,134,135,135,93,93,94,94,25,25,95,95,136,136,117,117,124,124,137,137,28,28,131,131,138,138,139,139,96,96,97,97,140,140,141,141,98,98,99,99,108,108,100,100,142,142,143,143,144,144,145,145,26,26,78,78,146,146,147,147,148,148,110,110,101,101,111,111,102,102,112,112,103,103,0,30,148,144,148,148,148,148,148,127,127,87,148,148,148,148,148,148,148,148,104,132,132,27,27,76,76,127,127,79,79,79,77,77,86,86,133,85,85,87,87,87,87,88,88,88,88,89,89,89,89,29,29,29,29,90,90,90,90,91,91,91,91,92,92,92,92,118,128,128,104,104,104,104,30,30,30,30,134,135,135,93,93,93,93,94,94,94,94,25,25,25,25,95,95,95,95,136,136,117,124,124,124,124,137,28,131,138,139,139,96,96,96,96,97,97,97,97,140,140,141,141,98,98,98,98,99,99,99,99,100,100,100,100,142,142,143,143,144,145,26,26,78,78,78,78,146,146,146,146,147,147,147,148,148,101,101,101,101,102,102,102,102,103,103,103,103,104,27,76,141,132,27,76,127,79,79,79,79,79,79,77,86,133,133,85,87,87,88,88,89,89,89,89,29,29,29,29,29,29,90,90,90,91,91,91,92,92,118,128,128,128,30,30,30,30,30,134,135,93,93,93,93,93,94,94,94,94,94,25,25,25,25,95,95,95,95,136,117,124,124,124,137,28,131,131,131,131,131,138,138,138,138,138,138,139,139,139,96,96,96,96,96,96,97,97,97,97,140,141,98,98,99,99,108,100,100,142,142,143,144,145,145,26,78,146,146,147,148,110,101,101,101,111,102,102,102,102,102,112,103,103,103,103,124,78,146,144,27,76,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,104,30,104,26,146,124,143,147,142,26,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,27,76,147,144,124,30,124,78,146,147,27,30,103,79,77,78,146,26,147,102,77,139,140,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,27,76,127,127,127,85,101,102,124,124,79,79,87,88,89,29,90,91,92,93,94,25,95,131,139,139,96,97,140,141,98,99,100,101,102,103,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,143,132,27,76,127,79,77,86,85,87,88,89,29,90,91,92,135,93,94,25,95,136,124,139,96,97,140,141,98,99,100,142,143,26,148,101,102,103,27,76,27,76,124,78,146,147,148,77,77,77,141,77,85,77,77,141,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,104,30,134,135,93,94,25,95,136,117,124,137,28,131,139,96,97,140,98,99,108,100,142,143,145,26,78,146,147,148,110,101,111,102,112,103,0,118,144,87,88,89,29,90,91,92,104,104,104,104,104,104,104,93,94,25,95,131,96,97,141,98,99,100,101,102,103,139,141,28,148,104,104,104,104,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,30,30,131,104,85,28,28,104,131,28,124,124,28,145,146,104,76,136,104,104,104,104,104,134,104,134,104,134,76,104,104,124,85,85,124,85,124,139,85,104,79,131,148,0,131,117,104,131,28,78,26,85,146,146,146,0,146,146,104,137,104,137,27,76,127,77,77,27,76,77,76,0,141,104,30,134,136,131,139,141,30,30,30,30,30,30,30,30,139,141,30,131,28,136,28,148,0,104,85,85,85,85,85,85,134,131,85,134,85,134,131,104,30,139,140,85,134,26,0,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,104,104,30,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,98,99,108,100,142,145,26,78,146,147,110,101,111,102,112,103,0,76,0,117,134,148,124,124,124,124,124,124,124,124,124,124,124,124,0,85,139,140,79,141,131,131,30,30,30,30,139,140,104,27,76,27,76,85,30,30,77,30,85,104,85,137,28,117,131,117,117,27,76,27,76,27,76,27,76,27,127,79,79,77,85,87,88,89,29,90,91,92,118,128,104,30,93,94,25,95,136,117,124,137,28,131,139,96,97,140,141,98,99,100,142,143,26,78,146,147,148,148,101,102,103,148,148,0,148,148,148,0,76,137,131,138,148,27,76,77,78,27,76,77,27,76,77,77,79,0,131,131,131,104,131,85,104,78,146,27,76,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,104,139,140,141,146,147,124,26,135,27,76,79,139,79,139,104,77,78,146,135,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,104,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,104,104,104,79,139,85,87,88,89,29,90,91,92,93,94,25,95,96,97,98,99,100,101,102,103,124,79,139,27,76,127,127,127,103,79,139,27,139,132,27,76,127,79,77,86,85,87,88,89,29,90,91,92,128,104,30,135,93,94,25,95,136,124,139,96,97,140,141,98,99,100,142,143,26,78,146,148,101,102,103,27,76,27,76,78,143,128,76,77,77,131,141,146,77,79,28,118,117,28,132,27,27,76,76,127,127,127,127,79,77,77,77,77,86,133,85,87,88,89,29,90,91,92,118,128,30,134,135,135,135,135,135,93,94,25,95,136,117,124,124,124,124,137,28,131,138,139,96,97,140,140,141,98,99,108,100,142,143,144,145,26,26,26,78,146,147,148,110,101,111,102,112,103,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,79,28,28,118,28,136,144,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,104,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,27,76,27,76,27,76,148,76,148,148,148,137,79,139,140,134,28,148,136,28,132,27,76,127,79,77,86,133,85,87,88,89,29,90,91,92,118,128,30,134,135,93,94,25,95,136,117,124,137,28,131,138,139,96,97,140,141,98,99,108,100,142,143,144,145,26,78,146,147,148,110,101,111,102,112,103,118,137,28,30,117,85,118,131,104,139,140,139,140,104,28,148,0,0,0,194,194,214,0,116,194,0,194,0,0,194,0,133,0,0,0,194,0,86,226,86,226,0,86,86,86,0,133,226,133,0,194,0,187,187,194,187,194,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,187,187,214,214,238,238,194,194,239,239,240,240,241,241,242,242,243,243,244,244,115,115,226,226,0,187,187,214,214,238,238,194,194,239,239,240,240,241,241,242,242,243,243,244,115,226,187,187,187,187,214,214,238,194,194,194,194,194,194,194,194,194,194,194,239,240,241,242,243,244,115,226,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,241,243,242,244,115,226,187,214,238,194,239,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,187,214,238,194,239,240,241,242,243,244,115,226,756,757,758,194,194,214,0,194,0,194,0,194,0,194,0,0,0,0,194,0,187,187,194,187,194,0,132,132,132,0,0,0,178,178,132,132,132,178,132,178,0,132,132,0,178,178,161,178,161,250,178,161,178,161,178,178,178,178,178,161,161,178,178,178,178,178,178,178,161,178,161,0,161,178,178,161,178,161,178,161,178,161,178,161,178,161,0,0,0,0,255,255,255,256,255,256,256,0,0,0,0,0,0,0,0,0,0,248,0,248,0,0,248,0,73,73,165,165,73,165,165,165,73,165,165,73,73,165,165,165,73,73,73,73,165,73,248,260,165,165,73,73,248,260,165,165,73,73,165,73,165,73,248,260,165,73,165,73,248,260,165,73,165,73,165,73,73,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,73,73,0,0,165,165,165,165,73,165,73,165,73,165,73,165,73,165,165,165,165,165,165,165,165,165,165,165,0,0,0,248,260,165,165,165,165,165,165,73,73,73,73,248,248,260,260,165,165,73,73,0,165,165,73,73,73,73,73,73,165,165,73,165,165,73,73,73,73,73,165,165,73,73,165,165,165,248,248,260,260,165,73,73,248,248,248,248,248,260,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,73,73,73,73,73,73,73,165,165,73,73,73,73,73,73,165,73,165,73,73,73,73,73,73,73,73,73,73,165,73,165,165,73,165,73,165,73,73,248,260,165,73,165,165,73,73,165,73,165,73,165,165,165,165,165,73,165,73,260,73,165,165,73,73,73,165,165,73,165,73,165,165,165,165,165,165,165,73,73,73,165,73,165,165,73,165,73,165,165,73,73,165,165,73,73,73,165,73,165,73,165,165,165,73,165,165,73,165,165,73,165,73,248,165,165,165,165,73,73,73,165,248,260,165,73,73,165,73,248,260,73,165,73,248,260,165,73,248,260,165,73,165,73,165,73,165,73,165,248,260,165,73,248,260,165,73,165,73,165,165,165,165,73,73,165,248,0,248,0,0,248,0,277,276,277,276,277,276,277,276,277,276,277,277,276,276,277,277,276,276,277,276,277,277,276,276,277,276,277,276,277,276,277,276,277,276,277,276,306,0,303,306,0,0,0,302,302,302,302,301,303,0,301,302,303,301,302,303,301,302,303,301,302,303,306,0,306,0,0,0,306,306,306,0,0,0,306,0,0,0,306,306,0,0,301,302,303,301,301,302,302,303,303,301,301,302,302,303,303,301,302,303,303,301,302,303,0,0,303,301,302,303,301,302,303,301,302,303,301,302,303,301,302,303,301,302,303,0,0,0,0,0,310,0,310,0,310,0,0,310,309,309,310,309,310,309,309,309,310,309,309,310,310,309,310,310,309,310,309,310,309,309,310,309,309,310,309,310,309,310,309,310,0,311,311,311,311,311,311,311,311,311,311,311,0,306,0,306,0,0,0,0,0,314,314,314,312,313,314,315,312,313,314,315,312,313,314,312,313,314,306,312,306,306,306,306,308,313,306,307,313,306,306,314,315,314,314,315,315,312,313,314,315,312,313,314,315,0,312,313,314,315,312,313,312,313,314,312,313,314,315,312,313,314,315,312,313,314,315,312,313,314,315,313,313,313,0,0,0,0,0,0,0,0,0,0,0,0,306,306,0,306,306,306,306,306,306,306,306,0,316,316,316,316,316,316,316,316,316,316,316,316,0,0,0,319,321,319,321,318,319,319,319,321,319,319,321,321,319,321,319,321,319,321,319,321,319,321,319,321,319,321,319,321,227,0,0,0,227,343,343,0,330,227,0,227,0,0,227,0,0,331,227,343,227,0,227,227,227,227,343,227,0,227,330,227,227,227,227,343,331,332,227,227,227,332,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,322,227,322,227,322,327,328,329,330,331,332,227,322,327,328,329,330,331,332,322,324,322,227,322,327,328,329,330,331,227,322,327,328,329,330,331,322,327,328,329,0,227,227,227,227,227,0,0,0,0,0,0,0,0,0,0,227,322,327,328,329,330,331,227,227,322,322,327,327,328,328,329,329,330,330,331,331,334,227,227,322,322,330,330,331,331,332,332,227,227,322,327,328,329,330,330,331,331,331,332,332,332,227,227,227,322,327,328,329,0,227,322,327,328,329,330,331,332,322,322,322,322,322,227,322,322,322,227,227,227,227,227,322,322,322,327,328,329,0,343,0,330,331,332,227,227,227,227,227,227,322,227,322,327,328,329,330,331,227,322,330,331,332,227,227,227,227,227,227,227,227,227,227,227,227,322,327,328,329,330,331,332,227,322,327,328,329,330,331,332,227,322,327,328,329,330,331,332,227,322,327,328,329,330,331,332,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,343,0,0,343,0,343,346,0,0,343,346,344,347,345,344,347,345,344,345,344,345,344,345,345,344,345,345,344,344,345,344,347,345,344,345,345,345,347,345,344,347,347,346,344,347,345,347,345,343,347,345,344,347,347,345,344,347,345,344,347,345,344,346,344,347,345,344,0,0,336,0,0,0,351,352,0,354,0,0,336,353,354,354,351,353,353,351,356,353,351,0,352,0,0,0,351,356,351,0,0,351,349,360,358,357,348,350,351,352,336,353,354,333,355,356,349,360,358,357,348,350,351,352,336,353,354,333,355,356,348,350,351,352,336,353,354,333,355,356,351,352,336,353,354,333,355,356,333,357,348,350,333,351,352,336,353,354,333,355,356,351,351,352,352,336,336,353,353,354,354,333,333,355,355,356,356,348,357,348,350,351,351,352,352,336,336,353,353,354,354,333,333,355,355,356,356,349,360,358,357,348,350,351,351,351,351,351,352,352,352,336,336,336,353,354,333,355,355,356,357,350,357,348,350,349,360,358,357,348,350,351,352,336,353,354,333,355,356,349,360,358,349,360,358,349,358,357,348,350,350,349,360,358,357,357,348,349,360,358,351,352,336,353,354,333,355,356,351,352,336,353,354,333,355,356,351,352,336,353,354,333,355,356,349,360,358,349,360,358,357,348,350,351,352,336,353,354,333,355,356,349,360,358,357,348,350,351,352,336,353,354,333,355,356,349,360,358,357,348,350,351,352,336,353,354,333,355,356,357,357,348,348,348,349,360,358,357,348,350,351,352,336,353,354,333,355,356,357,348,350,0,0,0,0,0,364,362,361,363,342,364,362,361,363,342,342,342,342,342,342,342,342,342,364,362,361,363,342,364,362,361,363,342,364,362,361,363,364,362,361,363,364,362,361,363,342,364,362,361,363,364,362,361,363,342,364,362,361,363,364,362,361,363,342,364,362,361,363,342,364,362,361,363,342,364,362,361,363,342,342,0,0,337,365,365,337,0,337,365,337,365,337,365,337,365,337,365,337,337,365,365,337,337,365,365,337,365,365,365,337,365,337,365,337,365,337,365,337,365,337,365,337,365,337,365,0,0,0,0,340,0,0,340,0,0,340,340,0,340,323,326,338,339,340,323,326,338,339,340,340,340,340,340,340,340,340,323,326,338,339,340,323,326,338,339,340,323,326,338,339,323,326,338,339,323,326,338,339,323,326,338,339,323,326,338,339,323,326,338,339,340,340,340,323,326,338,339,323,326,338,339,340,323,326,338,339,340,323,326,338,339,340,323,326,338,339,340,0,0,0,0,0,325,335,367,325,335,367,324,325,335,367,325,335,367,325,335,367,325,325,335,335,367,367,334,325,335,367,325,335,367,325,335,367,325,335,367,325,335,367,367,325,335,367,325,335,367,325,335,367,325,335,367,325,335,367,325,335,367,325,335,367,325,335,367,334,359,0,0,359,359,0,0,0,369,359,369,359,369,359,369,359,369,359,369,369,359,359,369,369,359,359,369,359,369,359,0,0,369,359,369,359,369,359,369,359,369,359,369,359,0,0,369,359,0,0,370,370,0,0,370,370,247,370,247,370,247,370,247,370,0,0,0,0,0,0,0,0,0,0,0,247,370,247,247,370,370,247,247,370,370,247,247,370,370,370,370,370,247,370,247,370,247,370,247,370,247,370,247,370,247,370,247,370,0,0,0,0,371,0,0,0,371,264,264,264,264,264,262,264,264,373,375,371,262,264,264,264,372,373,374,375,371,262,264,264,264,372,373,374,375,264,371,262,264,372,373,374,375,371,262,264,372,373,374,375,262,264,372,373,375,262,264,372,373,375,372,375,262,264,372,373,375,264,264,371,262,264,372,373,374,375,371,371,262,262,264,264,372,372,373,373,374,374,375,375,371,371,262,264,264,264,264,372,373,374,374,375,371,371,262,264,264,264,372,373,374,375,372,264,375,264,262,264,372,373,375,372,262,264,373,371,262,264,372,373,374,375,264,264,372,262,264,372,373,375,372,264,372,371,374,264,371,262,264,372,373,374,375,371,264,374,375,371,262,264,264,372,373,374,375,371,262,264,372,373,374,375,262,371,262,264,372,373,374,375,371,262,264,372,373,374,375,264,0,0,0,0,0,0,0,0,0,0,379,379,377,378,377,377,377,382,383,378,384,381,379,380,377,382,383,378,384,381,379,380,380,380,380,380,380,380,380,377,378,381,379,379,380,377,382,383,378,384,381,379,379,379,380,377,382,383,378,384,381,379,380,382,383,380,382,383,380,377,382,383,378,384,381,380,380,384,379,380,379,377,382,383,378,384,381,379,380,377,382,383,378,384,381,379,380,377,382,383,378,384,381,379,380,377,382,383,378,384,381,379,380,381,288,288,0,0,0,0,0,0,0,0,0,0,280,288,0,288,0,288,288,288,288,0,280,288,288,288,0,0,0,385,386,385,385,386,386,385,386,385,386,385,385,386,386,280,279,387,385,385,385,386,386,386,388,170,280,279,288,389,387,385,385,385,386,386,386,388,170,280,279,288,389,388,170,759,760,761,762,388,170,279,759,760,761,762,388,170,279,170,170,385,386,388,170,280,279,288,389,385,386,388,170,280,279,288,389,385,386,170,280,279,388,170,386,279,759,760,761,762,388,170,388,170,385,386,388,170,280,279,388,170,385,386,388,170,280,279,288,389,385,385,386,386,388,388,170,170,280,280,279,279,288,288,389,389,279,388,170,385,385,385,385,386,386,386,386,388,388,170,170,280,280,279,279,288,288,389,389,387,385,385,385,386,386,386,388,170,280,280,279,279,279,288,288,288,288,288,389,280,385,386,279,280,170,385,386,388,170,280,279,388,279,385,386,170,280,279,388,170,280,385,386,279,387,385,386,388,170,280,279,288,389,279,391,279,387,387,279,389,385,386,279,280,279,280,385,386,279,279,759,760,761,762,388,170,388,387,279,759,760,761,762,388,170,385,386,170,280,279,761,762,388,759,760,170,385,386,388,170,280,279,288,387,385,386,388,385,386,388,170,280,279,288,389,388,170,385,386,388,170,280,279,288,389,279,170,387,387,385,385,386,386,388,170,280,279,288,389,387,385,386,388,170,280,279,288,389,387,385,386,388,170,280,279,288,389,387,385,386,388,170,280,279,288,389,388,170,763,764,0,0,0,0,0,0,0,0,0,0,0,393,393,0,0,0,0,392,119,119,392,52,392,0,119,119,0,0,0,0,52,52,52,392,119,393,52,392,119,393,52,392,119,393,52,392,119,393,52,392,52,392,52,52,392,392,52,392,52,52,52,392,119,393,52,52,392,392,119,119,393,393,52,392,119,119,393,393,52,392,119,119,393,393,392,52,392,118,52,392,119,393,392,52,52,52,392,52,52,392,119,393,52,52,392,52,392,119,393,119,393,52,392,119,393,52,392,119,393,118,52,392,119,393,52,52,52,392,119,393,52,122,0,0,0,0,0,0,0,0,0,122,0,0,122,0,0,122,122,122,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,123,0,0,0,0,209,210,209,210,0,0,123,123,0,209,123,209,394,210,395,396,123,209,394,210,395,396,123,123,123,123,209,394,210,395,396,123,209,394,210,395,396,123,209,210,123,123,209,210,123,209,394,210,395,396,123,209,209,394,394,210,210,395,395,396,396,123,123,209,209,394,394,210,210,395,395,396,396,123,123,209,394,394,210,395,395,396,123,123,123,123,209,210,123,123,209,210,123,209,210,123,123,123,209,210,123,209,394,210,395,396,123,123,123,123,123,123,209,210,123,123,123,123,123,123,123,123,123,123,123,123,123,209,210,123,394,395,396,209,210,123,209,394,210,395,396,123,209,394,210,395,396,123,209,209,209,209,394,210,210,210,210,395,396,123,123,123,123,209,394,210,395,396,123,209,394,210,395,396,123,209,394,210,395,396,123,125,0,0,0,0,0,399,400,399,400,125,0,125,0,399,400,125,399,400,189,125,401,402,403,399,400,189,125,401,402,403,125,125,125,399,400,189,125,401,402,403,399,400,189,125,401,402,403,399,400,399,400,399,400,125,401,399,400,189,125,401,402,403,399,399,400,400,189,189,125,125,401,401,402,402,403,403,399,399,400,400,189,189,125,125,401,401,402,402,403,403,399,399,400,189,125,125,125,125,401,402,403,400,125,125,399,125,400,125,400,125,125,399,400,399,400,125,402,403,399,400,189,125,401,402,403,125,125,125,125,125,125,125,125,189,399,400,125,125,125,125,125,125,125,125,125,125,125,125,125,399,400,125,402,403,399,400,125,399,400,189,125,401,402,403,125,399,400,189,125,401,402,403,399,399,399,399,400,400,400,400,189,125,125,401,402,403,399,400,189,125,401,402,403,399,400,189,125,401,402,403,399,400,399,400,189,125,401,402,403,0,0,130,129,130,0,0,0,0,0,0,130,130,130,130,130,129,0,129,130,129,130,129,130,129,130,129,129,130,129,129,130,130,129,130,129,130,129,129,130,129,129,130,129,130,129,130,129,130,129,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,405,0,0,0,0,405,405,163,0,163,0,0,0,0,0,0,405,405,0,120,113,113,113,284,113,284,284,113,113,284,120,207,206,121,120,163,207,206,113,284,284,404,405,121,120,163,207,206,113,284,284,404,405,284,284,120,163,207,206,284,404,405,120,163,207,206,284,404,405,113,284,120,284,284,284,113,120,163,113,284,404,405,120,120,163,163,113,113,284,284,404,404,405,405,284,120,120,163,207,206,113,284,404,404,405,405,121,120,120,163,207,206,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,284,404,405,405,405,113,284,113,113,113,113,113,113,113,113,407,404,121,120,163,207,206,284,404,405,120,121,207,206,121,207,206,120,120,113,284,120,113,284,120,284,121,207,206,121,121,206,121,163,113,284,284,284,163,120,120,120,120,120,120,120,120,0,0,0,284,284,163,121,207,206,404,405,120,163,207,206,113,284,404,405,120,404,405,121,207,206,284,121,120,163,207,206,113,113,284,284,404,405,121,120,163,207,206,284,404,405,121,120,163,207,206,113,284,404,405,121,120,163,207,206,284,404,405,284,0,0,0,0,212,212,0,0,0,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,409,0,408,409,0,0,408,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,408,409,245,408,409,245,408,409,245,408,409,245,408,409,245,408,408,409,409,245,245,408,408,409,409,245,245,408,408,408,408,409,409,409,245,408,409,245,245,408,409,408,409,245,408,409,245,408,409,245,408,409,245,408,409,245,408,409,245,411,0,0,0,413,0,0,414,414,414,414,414,0,0,413,411,0,0,0,0,411,0,411,411,0,411,232,233,412,413,414,411,232,233,412,413,414,411,232,233,412,413,414,411,232,233,412,413,414,413,413,413,413,0,411,232,233,412,413,411,411,232,232,233,233,412,412,413,413,411,411,232,232,233,233,412,412,413,413,414,411,411,232,232,233,233,412,413,414,414,414,414,413,412,28,411,232,233,412,413,414,413,412,28,414,413,28,413,0,0,117,137,117,117,413,411,232,233,412,411,232,233,412,413,414,411,232,233,412,413,411,232,233,412,413,414,411,232,233,412,413,414,136,411,232,233,412,413,414,137,28,136,411,232,233,412,413,414,414,117,0,0,0,0,211,211,211,211,211,211,211,211,211,211,211,211,211,114,418,0,0,0,114,418,0,114,0,114,114,114,114,418,0,114,114,114,114,114,114,114,418,114,418,114,114,415,415,416,0,0,114,417,417,417,417,417,417,417,417,417,417,0,114,418,418,114,114,114,114,114,418,418,114,418,418,114,114,114,114,114,0,114,114,114,420,420,420,420,420,420,420,420,420,420,114,0,0,418,114,418,114,418,114,418,114,418,114,418,0,0,422,0,0,0,150,150,0,150,422,150,150,0,150,0,0,150,422,421,150,422,421,421,421,421,415,415,421,416,421,421,0,0,0,417,417,417,417,417,417,417,417,417,417,421,421,421,150,150,422,422,421,150,150,150,422,422,421,150,422,421,421,421,420,420,420,420,420,420,420,420,420,420,0,0,150,422,421,150,422,150,422,421,150,422,421,150,422,421,150,422,421,765,765,766,766,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,767,767,0,768,0,767,0,0,424,769,424,769,424,769,426,426,424,769,767,424,0,424,769,419,769,424,769,424,769,424,769,424,769,0,0,0,0,0,0,0,770,771,429,430,427,428,770,771,429,430,427,428,427,428,427,428,429,427,428,427,427,428,428,429,427,428,770,771,429,429,430,427,428,770,771,429,430,427,428,427,428,430,430,430,427,428,430,770,771,429,430,427,428,770,771,429,430,427,428,770,771,429,430,427,428,770,771,429,430,427,428,432,0,432,432,0,432,0,431,431,431,216,431,431,432,216,431,431,432,216,431,432,216,431,432,431,431,216,216,431,432,216,216,431,431,432,432,216,216,431,431,431,431,432,432,216,431,432,432,432,432,432,216,216,216,431,216,431,432,431,431,216,216,216,216,216,216,432,216,431,432,216,431,432,216,216,431,432,216,431,432,216,431,432,216,431,432,431,198,0,182,0,182,198,0,0,0,182,198,435,436,182,198,435,436,182,198,435,436,182,198,435,436,182,198,435,436,182,182,198,198,435,435,436,436,182,182,198,198,435,435,436,436,182,182,182,198,198,198,435,436,182,198,435,436,182,198,182,198,435,436,182,198,435,436,182,198,435,436,182,198,435,436,182,198,435,436,182,198,435,436,0,0,0,0,0,0,0,0,440,439,439,439,0,0,0,0,0,439,440,439,439,0,0,439,439,439,439,439,0,439,0,0,0,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,0,0,444,0,441,0,0,0,0,0,181,376,0,376,445,181,0,445,444,444,451,452,181,449,423,376,445,451,452,181,449,423,376,445,0,181,449,423,376,445,181,449,423,376,445,445,0,181,449,423,376,445,181,181,449,449,423,423,376,376,445,445,0,181,181,449,449,423,423,376,376,445,0,451,452,181,181,181,449,423,376,376,376,445,441,451,445,444,0,451,452,181,449,423,376,445,451,452,451,452,449,452,423,451,452,451,452,451,452,451,451,0,0,451,451,452,181,449,423,376,0,444,444,181,449,423,376,445,181,449,423,376,444,451,452,451,452,181,449,423,376,445,451,452,181,449,423,376,445,451,452,181,449,423,376,445,451,452,181,449,423,376,445,0,0,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,444,0,0,0,444,444,457,458,457,458,457,457,457,457,458,458,458,458,0,457,458,444,0,457,458,444,444,457,458,444,457,458,457,458,457,458,457,458,0,0,181,376,0,376,0,181,0,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,441,0,0,0,181,376,376,181,441,444,0,441,0,444,444,441,444,444,444,444,0,0,0,772,772,772,772,772,772,772,772,772,772,0,0,229,229,229,229,229,229,459,229,459,229,459,229,459,229,459,229,459,459,459,459,459,459,459,459,459,459,229,229,229,229,459,459,229,229,229,229,229,459,229,229,229,229,229,229,229,229,229,459,229,459,229,459,459,229,229,229,229,459,229,229,459,229,459,229,459,229,459,459,459,0,0,0,38,69,69,0,0,69,69,69,69,69,69,69,0,69,69,69,0,39,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,38,69,0,70,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,479,479,479,0,0,0,0,290,479,0,0,38,485,486,489,484,0,479,0,0,479,0,479,479,479,479,479,0,479,0,479,479,479,0,479,479,479,481,476,489,0,0,478,479,478,479,249,478,479,478,479,289,478,249,481,39,478,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,289,478,479,476,478,482,482,478,478,479,479,478,479,478,479,290,289,289,289,38,289,484,484,485,485,486,486,486,486,486,486,249,485,486,249,484,478,479,479,478,479,478,479,484,478,479,484,289,289,0,489,489,476,478,476,476,476,476,478,476,476,478,476,476,478,476,478,476,476,476,478,476,476,478,476,478,476,478,476,478,476,478,476,478,476,476,478,476,476,476,478,476,476,478,478,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,498,498,498,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,497,514,498,490,491,492,493,291,494,495,496,497,498,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,497,514,497,497,497,497,497,514,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,498,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,491,492,493,291,494,516,490,491,492,493,291,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,0,69,469,470,471,472,473,474,475,0,69,469,470,471,472,473,474,475,0,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,0,519,519,249,69,69,69,468,249,249,249,249,249,249,249,249,249,249,469,470,471,472,473,474,475,519,519,519,519,519,519,519,519,519,249,249,249,69,249,70,69,69,69,469,470,519,519,473,69,69,471,472,474,475,519,519,519,519,69,69,69,69,69,473,519,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,473,519,474,475,249,249,519,519,519,519,0,521,0,521,521,521,0,0,522,522,522,522,522,522,523,522,523,522,523,522,523,522,523,522,523,523,523,523,523,523,523,523,523,523,522,522,522,522,523,523,522,522,522,522,522,523,522,522,522,522,522,522,522,522,522,523,522,523,523,523,522,522,522,522,523,522,522,523,522,523,522,523,522,523,523,523,0,0,0,7,7,7,7,524,7,7,162,524,524,7,162,524,7,162,524,7,162,524,7,524,7,7,7,162,524,7,524,162,162,162,162,162,162,162,162,162,162,7,7,524,7,7,524,524,162,162,7,7,7,7,524,524,524,524,7,7,7,162,524,7,524,7,7,7,524,162,7,524,7,524,7,524,7,524,7,524,7,524,162,7,162,524,7,162,162,7,524,7,524,7,524,7,162,524,7,524,7,162,524,7,162,524,7,162,524,7,162,524,162,162,0,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,0,0,109,109,109,109,109,109,109,109,109,109,109,109,525,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,0,0,526,526,526,526,526,526,527,526,527,526,527,526,527,526,527,526,526,526,526,526,526,526,526,526,526,527,526,526,526,526,526,526,526,526,526,527,526,527,527,527,526,526,526,526,527,526,526,527,526,527,526,527,526,527,0,0,528,528,528,528,528,528,529,528,529,528,529,528,529,528,529,528,529,529,529,529,529,529,529,529,529,529,528,528,528,528,529,529,528,528,528,528,528,529,528,528,528,528,528,528,528,528,528,529,528,529,529,529,528,528,528,528,529,528,528,529,528,529,528,529,528,529,529,529,0,0,530,530,530,530,530,530,531,530,531,530,531,530,531,530,531,530,530,530,530,530,530,530,530,530,530,531,530,530,530,530,530,530,530,530,530,531,530,531,531,531,530,530,530,530,531,530,530,531,530,531,530,531,530,531,0,0,0,532,532,532,532,532,532,532,533,534,532,533,534,532,533,534,532,533,534,532,534,532,534,534,534,534,534,534,534,534,534,534,532,532,532,532,534,534,532,532,532,532,533,534,532,533,534,532,532,532,532,532,532,532,532,532,532,532,532,532,534,532,533,534,534,534,534,534,532,532,532,532,533,534,532,532,533,534,532,533,534,532,533,534,532,533,534,534,534,534,535,535,535,535,0,535,535,535,0,773,0,0,0,535,535,535,535,535,773,535,535,0,0,0,0,535,0,535,535,0,535,536,538,539,540,541,153,535,536,538,539,540,541,153,535,153,535,535,157,536,536,538,538,539,540,153,536,538,541,536,538,541,536,538,541,536,538,541,536,538,541,536,538,541,536,538,541,536,538,541,536,538,541,536,538,541,535,535,535,157,536,536,538,538,539,540,154,536,536,538,538,541,541,153,153,535,536,538,539,540,541,153,153,153,535,535,0,0,153,535,0,536,538,540,536,538,536,538,539,540,541,153,535,536,538,540,153,536,538,540,153,536,538,536,538,540,151,536,536,538,538,539,540,536,538,539,540,536,536,538,538,151,536,538,539,540,536,538,539,540,536,538,539,540,536,538,539,540,536,538,539,540,539,151,536,538,539,540,536,538,539,540,536,538,539,540,536,538,539,540,540,0,153,151,535,153,536,538,539,540,541,153,535,536,538,539,540,541,153,535,536,538,539,540,541,153,535,536,538,539,540,541,153,535,154,536,536,538,538,541,541,536,536,538,538,154,541,541,196,0,195,82,0,0,545,196,0,196,0,195,195,191,191,0,82,0,0,0,0,0,0,0,191,196,545,0,0,552,552,0,0,0,0,0,0,0,0,183,183,183,183,183,82,80,183,82,231,155,544,191,196,195,545,186,546,547,80,183,82,231,155,544,191,196,195,545,186,546,547,80,183,82,231,155,544,191,196,195,545,186,546,547,80,183,82,231,155,544,191,196,195,545,186,546,547,183,82,231,155,544,183,139,141,80,552,183,155,544,80,183,82,155,544,183,80,80,183,82,231,155,544,191,196,195,545,186,546,547,183,80,80,183,183,82,82,231,231,155,155,544,544,191,191,196,196,195,195,545,545,186,186,546,546,547,547,80,183,82,231,155,155,155,544,191,191,196,196,195,195,545,545,186,186,546,546,547,547,80,183,183,82,231,155,155,544,191,191,191,196,196,196,196,196,196,195,195,195,545,545,545,545,186,546,547,82,155,80,80,80,183,183,183,183,82,80,80,183,82,231,155,544,139,141,80,183,82,231,155,544,191,196,195,545,186,546,547,547,546,141,80,183,183,183,82,231,155,544,80,80,80,80,80,80,80,80,183,544,80,80,183,183,80,183,82,155,155,544,80,80,80,80,80,80,80,80,80,80,80,191,196,195,545,186,552,183,82,155,544,80,183,82,231,155,544,191,196,195,545,186,546,547,155,191,196,195,545,186,546,547,82,80,183,82,82,82,231,155,544,191,196,195,545,186,546,547,80,183,82,231,155,544,191,196,195,545,186,546,547,80,183,82,231,155,544,191,196,195,545,186,546,547,80,80,80,80,183,82,231,155,544,191,196,195,545,186,546,547,183,166,166,166,0,0,166,166,166,166,166,0,166,166,567,567,166,567,166,0,0,567,166,567,166,567,567,567,166,567,567,166,166,567,567,166,166,567,166,166,567,567,144,567,166,567,166,567,166,166,567,166,567,166,144,567,166,567,166,26,145,0,0,0,26,26,145,26,26,0,0,180,568,180,568,180,568,180,568,180,568,180,180,568,568,180,180,568,568,180,568,180,568,180,568,180,568,180,568,180,568,180,568,180,568,180,568,0,0,0,184,569,569,569,0,569,569,569,569,0,0,184,184,0,184,184,184,0,569,569,0,265,184,184,184,184,569,569,569,569,265,569,184,184,184,570,571,265,569,184,184,184,570,571,265,569,184,570,571,265,569,184,570,571,569,184,265,569,184,265,569,184,569,265,569,184,570,571,265,265,569,569,184,184,570,570,571,571,265,569,569,569,569,184,184,184,184,570,570,571,571,265,569,569,184,184,570,571,184,184,184,569,265,569,184,265,569,184,570,571,0,0,0,0,0,0,265,569,184,265,569,265,265,570,571,184,265,569,184,570,571,265,569,184,570,571,569,265,569,184,570,571,265,569,184,570,571,265,569,184,570,571,265,569,184,570,571,0,0,0,572,572,572,572,572,572,572,266,265,572,266,572,266,572,266,572,266,572,266,572,266,572,266,572,572,266,266,572,266,572,266,572,266,572,266,265,266,265,266,266,266,572,266,266,572,266,572,266,572,266,572,266,576,576,576,576,576,576,576,576,576,0,0,576,576,576,576,576,576,576,576,576,576,576,576,576,576,0,0,576,576,0,576,576,576,0,576,576,576,576,576,576,576,576,576,573,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,575,576,575,576,573,575,575,573,575,576,573,574,575,576,573,573,574,574,575,575,576,576,573,573,574,574,575,576,573,574,575,576,573,573,574,575,576,575,575,575,575,574,573,574,575,576,573,574,573,573,573,573,574,575,576,573,573,574,575,576,573,574,575,576,573,574,575,576,774,774,263,263,263,0,0,0,263,263,263,263,263,263,577,578,263,577,578,263,577,578,263,577,578,263,263,577,578,577,578,263,577,578,263,577,578,263,263,577,577,578,578,263,577,578,263,577,578,263,263,577,578,577,578,263,577,578,263,577,578,263,577,578,263,577,578,263,577,578,263,577,578,577,578,263,577,578,775,775,580,0,0,0,580,580,579,580,581,579,580,581,579,580,581,579,580,581,579,580,581,579,581,579,580,581,581,579,580,581,579,579,580,580,581,581,579,579,579,580,581,579,580,581,579,579,580,581,579,580,581,579,580,581,579,580,581,579,579,580,581,579,580,581,0,0,0,0,582,583,584,585,582,583,584,585,582,583,584,585,582,583,584,585,582,583,584,585,583,582,583,584,585,582,583,584,585,582,583,584,585,582,583,584,585,582,582,583,583,584,584,585,585,582,583,584,585,582,583,584,585,582,583,584,585,582,583,584,585,582,583,584,585,582,582,583,584,585,585,582,583,584,585,582,583,584,585,584,582,583,584,585,582,582,583,584,585,0,0,0,0,0,0,587,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,586,587,587,588,588,589,589,590,590,591,591,587,589,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,589,586,588,586,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,586,587,588,589,590,591,593,593,593,593,593,593,593,593,0,0,0,592,593,594,592,593,594,594,592,593,594,592,593,594,592,593,594,592,594,592,593,594,592,593,594,592,592,593,593,594,594,592,593,594,592,593,594,594,592,593,594,594,592,592,594,592,592,592,592,592,592,592,593,594,592,593,594,592,593,594,592,593,594,592,592,592,593,594,0,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,0,0,0,0,0,0,0,0,0,0,0,0,167,598,603,390,597,149,149,149,224,599,0,225,0,149,0,0,221,0,0,600,149,149,149,149,149,149,149,149,149,149,149,221,149,149,149,221,0,221,221,167,221,221,149,221,149,149,149,149,221,597,221,0,0,221,149,0,603,0,0,149,390,224,599,221,167,598,598,598,0,0,0,0,0,149,149,221,598,600,149,221,149,149,221,149,598,221,598,149,596,602,149,596,390,224,597,598,599,221,167,600,603,601,602,149,596,390,224,597,598,599,221,167,600,603,601,602,596,390,224,597,598,599,221,167,600,601,602,596,390,224,597,598,599,221,167,600,601,602,224,598,599,601,596,602,596,602,596,601,602,601,602,596,390,224,597,598,599,221,167,600,601,602,596,596,390,390,224,224,597,597,598,598,599,599,221,221,167,167,600,600,601,601,602,602,602,602,149,149,596,390,224,597,597,598,599,221,221,167,167,600,600,603,603,601,601,602,149,149,149,149,149,596,390,224,597,597,597,598,599,221,221,221,221,221,167,167,600,600,603,603,601,601,601,602,601,601,225,596,598,599,601,602,602,602,148,149,596,390,224,597,598,599,221,167,600,603,601,602,602,148,224,598,599,601,602,596,148,602,0,596,602,602,0,596,601,602,602,602,598,149,597,221,167,600,603,596,602,596,602,602,602,602,602,596,601,602,596,390,224,597,598,599,221,167,600,601,602,149,597,221,167,600,603,601,601,149,596,390,224,597,598,599,221,167,600,603,601,602,149,596,390,224,597,598,599,221,167,600,603,601,602,149,596,390,224,597,598,599,221,167,600,603,601,602,596,148,602,148,596,602,148,149,596,390,224,597,598,599,221,167,600,603,601,602,596,602,602,148,776,776,777,777,777,778,779,778,780,781,782,781,782,0,0,0,0,607,610,609,607,610,609,607,609,607,609,607,609,607,607,607,610,609,607,610,609,607,607,610,610,609,609,607,610,609,609,607,610,609,607,609,607,610,609,607,610,609,607,609,607,607,610,609,607,607,607,609,609,607,607,610,609,607,610,609,607,610,609,609,610,607,610,609,0,0,0,543,0,82,543,83,83,83,0,83,83,83,83,83,83,83,83,0,81,0,83,81,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,169,213,213,169,220,213,169,220,169,169,213,220,558,559,556,565,566,553,213,169,555,81,220,83,558,559,556,565,566,553,213,169,555,81,220,83,558,559,556,565,566,553,213,169,555,81,220,83,558,559,556,565,566,553,213,169,555,81,220,83,558,559,556,565,566,553,169,555,81,220,83,169,169,169,0,543,558,559,556,565,566,553,213,169,213,0,0,0,558,559,556,565,566,553,213,169,555,81,220,83,169,558,558,559,559,556,556,565,565,566,566,553,553,213,213,169,169,555,555,81,81,220,220,83,83,558,559,556,565,566,553,213,169,169,169,555,555,81,220,220,220,83,83,558,559,556,565,566,553,213,213,213,213,169,169,169,169,555,81,81,220,220,220,220,220,83,83,81,220,220,169,213,169,81,169,213,169,220,213,169,169,558,559,556,565,566,553,169,555,81,220,83,0,0,213,81,220,558,559,556,565,566,553,213,169,555,81,220,83,612,213,213,169,213,169,213,213,81,558,559,556,565,566,553,169,555,81,220,83,213,81,81,0,0,213,213,169,169,169,83,81,169,169,81,558,559,556,565,566,553,213,169,555,81,220,83,169,169,169,169,555,220,83,558,559,556,565,566,553,213,169,555,81,220,83,558,559,556,565,566,553,213,169,555,81,220,83,558,559,556,565,566,553,213,169,555,81,220,83,169,558,559,556,565,566,553,213,169,555,81,220,83,213,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,615,0,615,615,615,615,615,0,0,0,0,563,434,563,434,563,434,563,434,618,619,563,618,618,434,619,563,618,434,618,619,563,618,434,619,563,618,434,619,563,618,434,434,618,434,619,563,618,618,434,434,619,619,563,563,618,618,434,434,619,563,618,618,434,434,619,563,563,618,618,618,434,434,563,434,434,434,619,618,434,563,618,434,619,563,618,434,618,618,618,618,434,619,563,618,618,434,434,563,434,434,0,619,619,563,618,434,618,563,618,434,619,563,618,434,434,434,619,563,618,434,619,563,618,434,619,563,618,434,0,0,620,620,620,620,620,620,620,620,620,620,620,620,620,620,620,620,620,620,620,620,622,622,0,0,0,614,614,621,614,621,622,614,621,622,614,621,622,614,621,622,614,621,622,614,621,622,614,614,621,621,622,622,614,614,614,621,622,614,621,622,614,614,614,621,614,614,621,622,614,621,622,614,614,621,622,614,614,614,614,621,622,621,614,614,621,622,614,621,622,614,621,622,614,621,622,0,0,0,0,0,0,0,783,784,785,786,0,0,0,0,0,0,0,0,0,783,784,785,786,624,0,624,611,617,105,542,625,624,611,617,105,542,625,611,617,105,542,625,628,548,611,617,105,542,625,628,548,611,617,105,542,625,548,611,617,105,542,625,548,611,617,105,542,625,611,617,105,542,625,611,617,105,542,625,0,611,617,105,542,625,611,617,105,542,625,611,611,617,617,105,105,542,542,625,625,548,611,617,105,542,625,628,548,611,617,105,542,625,625,611,617,105,542,611,617,105,542,625,0,0,611,617,105,542,625,628,548,611,617,105,542,625,628,611,617,105,542,542,0,611,617,105,542,625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,548,611,617,105,542,625,628,548,611,617,105,542,625,628,548,611,617,105,542,625,628,548,611,617,105,542,625,0,611,617,105,542,628,548,611,617,105,542,625,0,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,616,0,0,0,0,0,616,616,616,616,616,0,561,561,626,561,626,0,0,0,0,0,561,561,561,626,561,626,561,626,0,561,561,626,561,626,561,626,561,626,561,440,439,439,439,0,0,0,0,0,439,440,439,629,439,629,630,53,629,629,630,53,629,0,630,53,629,630,53,629,629,630,629,630,630,630,630,630,630,630,630,630,630,439,53,629,53,53,629,629,53,630,630,53,53,629,629,629,630,53,629,439,629,439,629,630,439,629,629,439,629,439,0,0,629,629,629,629,629,440,630,630,53,629,53,440,630,440,630,630,629,0,629,0,439,629,630,53,629,53,629,630,53,629,630,53,629,630,53,629,630,53,629,630,630,632,0,0,0,632,0,0,638,0,632,632,632,0,560,635,632,632,632,632,632,638,638,638,560,560,560,560,632,632,632,635,635,0,0,632,635,0,560,560,638,0,632,632,0,632,634,560,635,632,632,632,632,655,0,0,0,0,0,0,0,650,655,655,0,0,0,0,655,0,0,0,646,647,648,649,650,644,657,651,652,647,653,654,655,656,648,649,650,644,657,651,652,647,653,654,655,656,648,644,644,649,650,651,652,647,653,654,655,656,648,649,650,651,652,647,653,654,655,656,648,649,650,654,655,656,650,650,655,655,649,650,650,644,657,651,652,647,653,654,655,655,656,648,649,650,644,657,651,652,647,653,654,655,656,656,656,648,649,649,650,644,657,651,652,647,653,654,655,656,648,644,644,643,649,653,654,656,656,644,643,649,657,651,651,652,652,647,653,654,656,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,643,646,644,649,650,651,652,647,653,654,655,656,648,650,655,644,649,650,644,657,651,652,647,653,654,655,656,648,649,650,644,657,651,652,647,653,654,655,656,648,649,650,644,657,651,652,647,653,654,655,656,648,0,654,649,650,644,657,651,652,647,653,654,655,656,648,0,0,0,0,641,0,0,0,0,0,0,668,660,663,664,665,666,663,664,665,666,663,664,665,666,663,664,665,666,663,665,663,664,665,666,663,664,665,666,663,664,665,666,642,668,663,663,663,663,663,663,663,663,663,663,663,663,664,665,665,666,668,663,663,663,663,663,663,663,663,663,663,663,663,664,665,665,666,668,663,663,663,663,663,663,663,663,663,663,663,663,664,665,665,666,642,668,663,663,663,663,663,663,663,663,663,663,663,663,665,665,668,663,663,663,663,663,663,663,663,663,663,663,663,663,664,665,666,663,664,665,666,663,664,665,666,663,664,665,666,663,664,665,666,655,655,655,655,0,0,0,0,0,670,670,670,670,670,670,670,670,670,670,0,0,672,0,0,0,638,0,0,0,0,672,673,672,673,673,672,672,673,672,672,560,635,638,638,638,560,560,560,560,643,635,635,672,0,643,560,643,560,638,672,0,560,635,0,0,0,0,675,676,645,675,676,645,675,676,645,675,676,645,675,676,645,675,645,676,676,676,675,676,645,675,676,645,675,676,645,676,676,675,676,645,0,675,676,645,675,676,645,675,676,645,675,676,645,675,676,645,675,676,645,675,676,645,675,676,645,0,0,0,677,679,680,677,679,680,677,677,677,679,677,679,680,680,677,679,680,677,679,680,677,679,677,679,677,679,677,677,680,677,680,679,677,679,680,677,679,680,677,679,680,677,679,680,677,0,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,672,0,0,0,674,674,672,673,672,673,673,672,672,673,672,672,674,674,0,674,674,674,674,674,672,672,674,674,674,674,674,674,0,0,0,683,685,684,683,685,684,683,684,683,684,683,683,685,684,683,683,683,685,684,683,683,685,684,685,684,683,685,684,683,683,683,683,685,684,0,0,685,684,683,684,685,684,683,685,684,683,685,684,683,685,684,683,685,684,0,0,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,0,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,687,142,143,142,143,0,0,142,0,693,0,693,604,690,690,604,0,694,0,0,142,143,142,143,605,687,0,0,604,0,604,0,604,0,0,0,605,694,0,695,0,0,142,143,604,0,142,143,0,0,0,0,695,686,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,687,174,688,689,690,179,193,691,686,604,605,692,693,687,174,688,689,690,179,193,691,686,604,605,692,693,687,174,686,687,174,688,689,690,179,193,691,686,604,605,692,693,687,687,174,174,688,688,689,689,690,690,179,179,193,193,691,691,686,686,604,604,605,605,692,692,693,693,219,687,174,688,688,689,689,690,690,179,179,193,193,691,691,686,604,604,605,605,692,692,693,693,694,694,695,219,687,174,688,689,690,690,179,193,691,686,604,604,604,604,604,604,605,605,605,692,693,693,694,694,694,687,174,686,692,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,219,695,174,219,219,695,219,174,686,692,219,219,687,174,219,688,689,690,179,193,691,604,605,692,693,694,219,219,219,219,687,174,688,689,690,179,193,691,686,604,605,692,693,688,689,690,179,193,691,604,605,692,693,694,219,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,691,695,219,687,174,688,689,690,179,193,691,686,604,605,692,693,694,174,219,0,697,697,697,0,0,697,697,698,697,698,697,698,697,698,698,697,698,697,697,698,698,697,697,698,698,697,697,697,698,698,698,698,697,698,698,698,698,698,698,0,697,698,697,698,697,698,697,698,697,698,697,698,697,698,0,700,709,188,0,701,0,703,704,0,709,700,709,709,700,709,702,709,0,0,0,0,700,703,700,701,0,0,702,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,699,699,699,701,281,281,281,701,281,711,710,215,702,281,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,711,710,215,702,281,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,215,281,176,699,706,701,175,707,217,708,188,706,176,281,217,281,699,175,281,281,215,281,705,706,701,217,188,281,217,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,215,215,702,702,281,281,176,176,699,699,703,703,704,704,705,705,706,706,701,701,175,175,707,707,217,217,708,708,188,188,700,700,709,709,699,215,702,702,281,176,699,703,703,704,704,705,706,701,175,707,217,708,708,708,708,188,188,188,188,700,700,709,709,711,710,215,702,702,702,702,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,176,699,703,703,704,704,705,706,706,701,175,707,217,708,188,700,700,709,709,188,707,176,215,699,215,281,176,699,705,706,701,175,707,217,708,188,176,217,711,710,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,703,711,710,281,711,710,281,281,281,704,705,281,281,699,175,175,706,175,217,281,0,175,707,217,176,699,175,706,176,706,175,711,710,711,710,706,175,705,176,176,217,215,281,176,699,706,701,175,707,217,708,188,705,175,707,705,176,215,215,281,281,705,706,701,217,217,188,215,0,215,215,217,711,710,702,703,704,700,709,176,708,188,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,702,703,704,708,188,700,709,215,711,710,711,710,215,215,215,702,281,281,281,281,176,699,703,704,705,705,705,706,706,701,175,707,217,708,188,700,709,711,710,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,699,699,711,710,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,217,707,711,710,215,702,281,176,699,703,704,705,706,701,175,707,217,708,188,700,709,699,176,699,0,0,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,714,0,0,713,715,713,713,715,713,715,713,715,713,715,713,713,713,713,713,713,713,713,715,713,713,713,715,713,713,713,715,715,713,713,715,713,715,715,715,713,713,715,713,715,713,713,715,713,715,713,715,713,715,713,715,713,0,0,716,716,716,716,716,716,716,716,716,716,717,716,717,717,717,716,717,717,717,716,717,716,717,717,717,716,716,717,716,716,716,716,716,716,717,717,717,716,717,717,716,717,716,717,717,716,717,716,717,718,0,718,718,718,718,718,0,0,0,0,724,0,0,724,0,720,720,0,723,723,723,723,724,720,723,724,720,723,724,720,723,724,720,723,720,720,724,720,723,724,724,720,723,724,720,720,723,723,723,723,720,723,723,723,724,720,720,723,723,723,723,723,720,723,723,723,723,723,723,723,720,723,723,723,723,723,720,723,723,723,723,723,728,720,723,720,723,729,723,724,720,724,723,724,720,723,724,720,723,723,723,723,724,720,723,723,723,723,728,723,724,720,787,787,788,788,0,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,0,0,732,735,0,0,0,0,735,0,0,732,731,731,731,731,732,731,732,733,736,734,735,731,732,733,736,734,735,731,732,733,736,734,735,731,732,733,736,734,735,732,732,731,731,732,733,736,734,735,731,732,733,733,736,736,734,734,735,735,731,732,732,733,736,734,735,731,731,731,732,732,732,731,731,731,731,736,732,731,731,731,732,733,736,734,735,731,732,731,732,736,732,731,732,732,731,731,732,733,736,734,735,733,736,734,735,731,732,733,736,734,735,734,731,732,733,736,734,735,731,732,733,736,734,735,736,731,732,733,736,734,735,0,0,0,0,0,741,741,0,0,0,0,0,741,737,738,739,740,741,742,743,744,737,738,739,740,741,742,743,744,737,739,738,740,737,738,739,740,743,744,741,742,741,742,741,742,737,738,739,740,743,744,741,741,741,741,741,742,743,744,737,738,738,739,740,740,741,742,743,744,741,737,739,737,738,739,740,741,742,743,744,738,738,740,738,740,744,738,738,740,738,737,742,742,741,738,742,737,737,742,739,739,742,737,741,742,741,742,742,742,742,737,738,739,740,741,742,743,744,737,738,739,740,741,742,743,744,743,744,737,742,742,737,738,739,740,741,742,743,744,737,737,738,739,740,741,742,743,744,721,0,0,0,748,748,721,721,721,0,0,0,0,0,50,50,721,13,749,721,50,50,50,50,50,50,751,752,50,749,750,748,721,751,752,50,749,750,748,721,50,750,751,751,752,752,50,749,750,721,50,749,750,721,749,750,50,721,749,721,50,50,749,750,748,721,749,749,750,750,748,748,50,50,50,50,749,750,748,748,721,751,752,50,50,749,750,748,721,721,50,50,50,50,50,50,721,50,50,50,50,50,751,752,50,749,750,748,721,751,752,751,752,50,721,721,749,50,50,721,721,50,751,752,50,749,750,721,721,721,13,721,50,749,750,721,748,751,752,50,50,50,751,752,50,749,750,748,721,50,50,751,752,50,749,750,748,721,50,749,750,50,50,749,721,13,721,13,721,50,751,752,50,749,750,748,721,751,752,50,749,750,748,721,50,50,50],"f":"`````````````````````````{{bb}b}{{}d}{{{h{f}}}j}{{{h{j}}}j}{{{h{l}}}j}`{{{h{d}}}{{h{c}}}{}}{{{h{d}}}{{h{n}}}}{{{h{d}}}{{h{{Ab{A`}}}}}}{{{h{d}}}{{h{{Ad{A`}}}}}}```{{{h{Af}}}j}``{{{h{c}}}{{h{e}}}{}{}}000000000030{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000`8{{{h{l}}}l}{{{h{Af}}}Af}{{{h{{Aj{c}}}}}{{Aj{c}}}Al}{{{h{b}}}b}{{{h{{An{c}}}}}{{An{c}}}Al}{{{h{{B`{c}}}}}{{B`{c}}}Al}{{{h{Bb}}}Bb}{{{h{d}}}d}{{{h{{Bd{c}}}}}{{Bd{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000{{{An{{h{c}}}}}{{An{c}}}Al}{{{h{j}}{h{j}}}Bh}{{{h{l}}{h{l}}}Bh}{{{h{{An{c}}}}{h{{An{c}}}}}BhBj}{{{h{{B`{c}}}}{h{{B`{c}}}}}BhBj}{{{h{d}}{h{d}}}Bh}{Bl{{C`{{Bn{d}}}}}}{Bl{{C`{{Bn{Cb}}}}}}{Bl{{C`{{Bn{Cd}}}}}}{Bl{{C`{{Bn{Cf}}}}}}{Bl{{C`{{Bn{Ch}}}}}}{Bl{{C`{{Bn{Cj}}}}}}{Bl{{C`{{Bn{Cl}}}}}}{Bl{{C`{{Bn{{D`{Cn}}}}}}}}{{{h{l}}}Db}{{{h{f}}}Db}0{{{h{{An{c}}}}}{{Dd{Db}}}f}``{{}j}{{}l}{{}{{Aj{c}}}{}}{{}b}{{{h{{Bn{c}}}}}{{h{e}}}{}{}}{{{h{{Bd{c}}}}}{{h{c}}}{{Df{{D`{Cn}}}}}}{{{h{Dh}}}d}{c{{Dj{j}}}Dl}{c{{Dj{l}}}Dl}{c{{Dj{b}}}Dl}{c{{Dj{{An{e}}}}}Dl{BjDn}}{c{{Dj{d}}}Dl}{{{h{Dh}}}E`}{{}c{}}{{{h{j}}{h{j}}}Eb}{{{h{l}}{h{l}}}Eb}{{{h{Af}}{h{Af}}}Eb}{{{h{b}}{h{b}}}Eb}{{{h{{An{c}}}}{h{{An{c}}}}}EbEd}{{{h{{B`{c}}}}{h{{B`{c}}}}}EbEd}{{{h{Bb}}{h{Bb}}}Eb}{{{h{d}}{h{d}}}Eb}5{{{h{c}}{h{e}}}Eb{}{}}0000000000000{{Afc}{{Dj{AfAf}}}{{Eh{}{{Ef{j}}}}}}{{{h{Ah{Aj{c}}}}{Aj{c}}}BfBj}{{{h{j}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{l}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Af}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{{Aj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{b}}{h{AhEj}}}F`}0{{{h{{An{c}}}}{h{AhEj}}}F`En}{{{h{{B`{c}}}}{h{AhEj}}}F`En}{{{h{Bb}}{h{AhEj}}}F`}{{{h{d}}{h{AhEj}}}F`}000{cc{}}0{Bbj}{{{Fb{DbCj}}}j}{{{Fb{{h{Db}}{h{Cj}}}}}j}{Bbl}444{{{Fd{c}}}{{Aj{c}}}{}}{c{{Bn{c}}}{}}{Ffc{}}777777{nd}8{c{{Dj{Af{Dd{Af}}}}}{{Eh{}{{Ef{j}}}}}}{cd{}}0{{{h{Fh}}Db}Af}3{{{h{{Ab{A`}}}}}{{Dj{dFj}}}}0{{{h{Fl}}}{{Dj{dc}}}{}}{{{h{Af}}Db}{{Dd{Af}}}}{{{h{{G`{}{{Fn{c}}}}}}}{{Dj{jc}}}En}{{{h{j}}{h{Ahc}}}BfGb}{{{h{l}}{h{Ahc}}}BfGb}{{{h{Af}}}Cj}{{{h{{An{c}}}}{h{Ahe}}}BfGdGb}{{{h{d}}{h{Ahc}}}BfGb}`{{{h{Af}}}Db}``{{{h{d}}c}{{h{e}}}{{Gf{{Ab{A`}}}}}{}}``{{Afj}Af}{ce{}{}}00000000000{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}0{{{Bn{c}}}c{}}2{Af}3{{{h{{G`{}{{Fn{c}}}}}}jj}{{Dj{{Dd{Eb}}c}}}En}{{{h{{An{c}}}}}Eb{}}{{{h{{B`{c}}}}Db}Ebf}{{{h{Gl}}}Eb}1`{{{h{Af}}}Gn}``{{{Aj{c}}g}{{Aj{e}}}BjBj{{Hb{c}{{H`{e}}}}}}{{{h{AhGl}}Gl}Bf}`{jAf}{c{{Bd{c}}}{{Df{{D`{Cn}}}}}}{{ce}{{Bd{c}}}{{Df{{D`{Cn}}}}}{{Hd{Db}}}}{{{h{AhGn}}}Dd}{{{h{Ah{Bd{c}}}}}{{Dd{e}}}{{Df{{D`{Cn}}}}}{}}{{{h{Ah{Bd{c}}}}Hf}{{Dd{e}}}{{Df{{D`{Cn}}}}}{}}`{{{h{j}}{h{j}}}{{Dd{Bh}}}}{{{h{l}}{h{l}}}{{Dd{Bh}}}}{{{h{{An{c}}}}{h{{An{c}}}}}{{Dd{Bh}}}Hh}{{{h{{B`{c}}}}{h{{B`{c}}}}}{{Dd{Bh}}}Hh}{{{h{d}}{h{d}}}{{Dd{Bh}}}}{{{h{Af}}}{{Dd{Af}}}}{{Afj}{{Dj{AfAf}}}}{{{h{Af}}c}{{`{{Gj{}{{Ef{Af}}}}}}}{{Hd{Db}}}}````{{{h{j}}c}DjHj}{{{h{l}}c}DjHj}{{{h{b}}c}DjHj}{{{h{{An{c}}}}e}Dj{BjHl}Hj}{{{h{d}}c}DjHj}```{{{h{AhGl}}}{{Dd{Gl}}}}{dc{}}{{{h{c}}}e{}{}}000000000{dn}{{{h{{Bn{{D`{Cn}}}}}}}{{I`{Hn}}}}{{{h{{Bn{Cb}}}}}{{I`{Hn}}}}{{{h{{Bn{Cd}}}}}{{I`{Hn}}}}{{{h{{Bn{Cl}}}}}{{I`{Hn}}}}{{{h{{Bn{Cj}}}}}{{I`{Hn}}}}{{{h{{Bn{d}}}}}{{I`{Hn}}}}{{{h{{Bn{Cf}}}}}{{I`{Hn}}}}{{{h{{Bn{Ch}}}}}{{I`{Hn}}}}{{{h{c}}}Ib{}}0{{{h{b}}}Cf}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}0`1{c{{Dj{e}}}{}{}}00000000000000000000000`````{{{h{c}}}If{}}00000000000`{ce{}{}}00000000000`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{IhIh}{{CfCf}}{{IhIh}}{{IjIj}}{{IlIl}Il}{{{h{AhCf}}Cf}Bf}{{{h{AhIh}}Ih}Bf}{{{h{AhIj}}Ij}Bf}{{In{h{{J`{c}}}}{h{Jb}}}{{Dj{{Fb{InJd}}Jf}}}Jh}`{{{h{Jj}}}{{Dd{Jl}}}}{{}Jn}{{}K`}{{}Kb}{{}Cj}{{}Kd}{{}Kf}{{}Kh}{{}Kj}{{}Kl}{{}Cb}{{}Kn}{{}L`}{{}Lb}{{}Ld}{{}Lf}{{}Lh}{{}Lj}{{}Ll}{{}Ln}`{{{h{Jn}}}h}{{{h{K`}}}h}{{{h{Kb}}}h}{{{h{Cj}}}h}{{{h{Kd}}}h}{{{h{Kf}}}h}{{{h{Kh}}}h}{{{h{Kj}}}h}{{{h{Kl}}}h}{{{h{Cb}}}h}{{{h{Kn}}}h}{{{h{L`}}}h}{{{h{Lb}}}h}{{{h{Ld}}}h}{{{h{Lf}}}h}{{{h{Lh}}}h}{{{h{Lj}}}h}{{{h{Ll}}}h}{{{h{Ln}}}h}{{{h{M`}}}{{h{{Ab{A`}}}}}}{{{h{In}}}}{{{h{AhM`}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhM`}}}{{h{AhM`}}}}{{{h{AhCl}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhCl}}}{{h{AhM`}}}}3{{{h{AhIn}}}}{{{h{AhIn}}}Mb}2{{{h{In}}}Mb}{{{h{Jn}}}{{h{Md}}}}{{{h{K`}}}{{h{Md}}}}{{{h{Kb}}}{{h{Mf}}}}{{{h{Cj}}}{{h{Md}}}}{{{h{Kd}}}{{h{Md}}}}{{{h{Kf}}}{{h{Md}}}}{{{h{Kh}}}{{h{Md}}}}{{{h{Kj}}}{{h{Mf}}}}{{{h{Kl}}}{{h{n}}}}{{{h{Cb}}}{{h{Md}}}}{{{h{Kn}}}{{h{Md}}}}{{{h{L`}}}{{h{Mf}}}}{{{h{Lb}}}{{h{Mf}}}}{{{h{Ld}}}{{h{Md}}}}{{{h{Lf}}}{{h{Md}}}}{{{h{Lh}}}{{h{{Mj{Mh}}}}}}{{{h{Lj}}}{{h{{Mj{Ml}}}}}}{{{h{Ll}}}{{h{{Mj{Mn}}}}}}{{{h{Ln}}}{{h{{Mj{N`}}}}}}{{{h{Jn}}}{{h{{Ad{A`}}}}}}{{{h{Jn}}}{{h{{Ab{A`}}}}}}{{{h{K`}}}{{h{{Ab{A`}}}}}}{{{h{K`}}}{{h{{Ad{A`}}}}}}{{{h{Kb}}}{{h{{Ab{A`}}}}}}{{{h{Kb}}}{{h{{Ad{A`}}}}}}{{{h{Cj}}}{{h{{Ab{A`}}}}}}{{{h{Cj}}}{{h{{Ad{A`}}}}}}{{{h{Kd}}}{{h{{Ad{A`}}}}}}{{{h{Kd}}}{{h{{Ab{A`}}}}}}{{{h{Kf}}}{{h{{Ab{A`}}}}}}{{{h{Kf}}}{{h{{Ad{A`}}}}}}{{{h{Kh}}}{{h{{Ab{A`}}}}}}{{{h{Kh}}}{{h{{Ad{A`}}}}}}{{{h{M`}}}{{h{{Ab{A`}}}}}}{{{h{M`}}}{{h{M`}}}}{{{h{Cl}}}{{h{M`}}}}{{{h{Cl}}}{{h{{Ab{A`}}}}}}{{{h{Kj}}}{{h{{Ad{A`}}}}}}{{{h{Kj}}}{{h{{Ab{A`}}}}}}{{{h{Kj}}}{{h{Nb}}}}{{{h{Kl}}}{{h{{Ad{A`}}}}}}{{{h{Kl}}}{{h{Nb}}}}{{{h{Kl}}}{{h{{Ab{A`}}}}}}{{{h{Cb}}}{{h{{Ad{A`}}}}}}{{{h{Cb}}}{{h{{Ab{A`}}}}}}{{{h{Kn}}}{{h{{Ad{A`}}}}}}{{{h{Kn}}}{{h{{Ab{A`}}}}}}{{{h{L`}}}{{h{Nb}}}}{{{h{L`}}}{{h{{Ad{A`}}}}}}{{{h{L`}}}{{h{{Ab{A`}}}}}}{{{h{Lb}}}{{h{{Ab{A`}}}}}}{{{h{Lb}}}{{h{{Ad{A`}}}}}}{{{h{Lb}}}{{h{Nb}}}}{{{h{Ld}}}{{h{{Ab{A`}}}}}}{{{h{Ld}}}{{h{{Ad{A`}}}}}}{{{h{Lf}}}{{h{{Ab{A`}}}}}}{{{h{Lf}}}{{h{{Ad{A`}}}}}}{{{h{Lh}}}{{h{{Ab{A`}}}}}}{{{h{Lh}}}{{h{{Ad{A`}}}}}}{{{h{Cd}}}{{h{Nd}}}}{{{h{Lj}}}{{h{{Ab{A`}}}}}}{{{h{Lj}}}{{h{{Ad{A`}}}}}}{{{h{Ll}}}{{h{{Ab{A`}}}}}}{{{h{Ll}}}{{h{{Ad{A`}}}}}}{{{h{Ln}}}{{h{{Ad{A`}}}}}}{{{h{Ln}}}{{h{{Ab{A`}}}}}}{{{h{Cl}}}{{h{M`}}}}{{{h{{Jj{c}}}}}{{h{{Jj{Nf}}}}}Nh}{{{Jj{Nf}}}Jj}{{{h{{Jj{Nf}}}}}{{h{Jj}}}}{{{Ad{A`}}}Ll}{{{h{Nj}}}Hf}{{{h{Ch}}}Hf}```{{{h{Nl}}}{{Dj{E`Nn}}}}{{{h{Nl}}}Cj}`{{{h{c}}}{{h{e}}}{}{}}00000000{{{h{Jn}}}{{h{{Ab{A`}}}}}}1{{{h{K`}}}{{h{{Ab{A`}}}}}}22{{{h{Kb}}}{{h{{Ab{A`}}}}}}3{{{h{Cj}}}{{h{{Ab{A`}}}}}}{{{h{Kd}}}{{h{{Ab{A`}}}}}}5{{{h{Kf}}}{{h{{Ab{A`}}}}}}6{{{h{Kh}}}{{h{{Ab{A`}}}}}}7777{{{h{Cl}}}{{h{M`}}}}8888{{{h{Kj}}}{{h{{Ab{A`}}}}}}{{{h{Kl}}}{{h{{Ab{A`}}}}}}:{{{h{Cb}}}{{h{{Ab{A`}}}}}};;{{{h{Kn}}}{{h{{Ab{A`}}}}}}<<<<<<<<{{{h{L`}}}{{h{{Ab{A`}}}}}}=={{{h{Lb}}}{{h{{Ab{A`}}}}}}>>>{{{h{Ld}}}{{h{{Ab{A`}}}}}}{{{h{Lf}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Lh}}}{{h{{Ab{A`}}}}}}11111111111{{{h{Lj}}}{{h{{Ab{A`}}}}}}22{{{h{Ll}}}{{h{{Ab{A`}}}}}}33{{{h{Ln}}}{{h{{Ab{A`}}}}}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000000000000000{{{h{AhCl}}}{{h{AhM`}}}}11111111111111111111111111111111111111{{}O`}0{{{h{M`}}}Ob}{CdOd}{{{h{c}}Of}Eb{}}{{{h{Nl}}}Eb}{{{h{Oh}}Oj}Eb}{{{h{c}}Oj}Eb{}}2{Ih{{Dd{Ih}}}}{{CfCf}{{Dd{Cf}}}}{{IhIh}{{Dd{Ih}}}}{{IjIj}{{Dd{Ij}}}}{{CfE`}{{Dd{Cf}}}}{{IhOl}{{Dd{Ih}}}}{{OnE`}{{Dd{On}}}}{{IjE`}{{Dd{Ij}}}}3210{{OnIj}{{Dd{Cf}}}}43765{{A@`A@b}A@d}{{{h{AhA@f}}}Bf}{{{h{A@h}}}A@h}{{{h{Cf}}}Cf}{{{h{Ih}}}Ih}{{{h{On}}}On}{{{h{In}}}In}{{{h{Ij}}}Ij}{{{h{Jl}}}Jl}{{{h{A@j}}}A@j}{{{h{{Jj{c}}}}}{{Jj{c}}}{AlNh}}{{{h{Jn}}}Jn}{{{h{K`}}}K`}{{{h{Kb}}}Kb}{{{h{Cj}}}Cj}{{{h{Kd}}}Kd}{{{h{Kf}}}Kf}{{{h{Kh}}}Kh}{{{h{Nl}}}Nl}{{{h{A@`}}}A@`}{{{h{Cl}}}Cl}{{{h{A@l}}}A@l}{{{h{A@n}}}A@n}{{{h{Kj}}}Kj}{{{h{Kl}}}Kl}{{{h{Cb}}}Cb}{{{h{Kn}}}Kn}{{{h{AA`}}}AA`}{{{h{Nj}}}Nj}{{{h{Oh}}}Oh}{{{h{AAb}}}AAb}{{{h{Ch}}}Ch}{{{h{A@f}}}A@f}{{{h{AAd}}}AAd}{{{h{AAf}}}AAf}{{{h{L`}}}L`}{{{h{Lb}}}Lb}{{{h{AAh}}}AAh}{{{h{AAj}}}AAj}{{{h{Ld}}}Ld}{{{h{Lf}}}Lf}{{{h{Mh}}}Mh}{{{h{Lh}}}Lh}{{{h{AAl}}}AAl}{{{h{AAn}}}AAn}{{{h{AB`}}}AB`}{{{h{ABb}}}ABb}{{{h{Cd}}}Cd}{{{h{Il}}}Il}{{{h{ABd}}}ABd}{{{h{ABf}}}ABf}{{{h{ABh}}}ABh}{{{h{Ml}}}Ml}{{{h{Lj}}}Lj}{{{h{Mn}}}Mn}{{{h{Ll}}}Ll}{{{h{N`}}}N`}{{{h{Ln}}}Ln}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000000000000000000000000000000000000000000000000{{{h{Cf}}{h{Cf}}}Bh}{{{h{Ih}}{h{Ih}}}Bh}{{{h{On}}{h{On}}}Bh}{{{h{In}}{h{In}}}Bh}{{{h{Ij}}{h{Ij}}}Bh}{{{h{Jl}}{h{Jl}}}Bh}{{{h{A@j}}{h{A@j}}}Bh}{{{h{{Jj{c}}}}{h{{Jj{c}}}}}Bh{BjNh}}{{{h{Jn}}{h{Jn}}}Bh}{{{h{K`}}{h{K`}}}Bh}{{{h{Kb}}{h{Kb}}}Bh}{{{h{Cj}}{h{Cj}}}Bh}{{{h{Kd}}{h{Kd}}}Bh}{{{h{Kf}}{h{Kf}}}Bh}{{{h{Kh}}{h{Kh}}}Bh}{{{h{M`}}{h{M`}}}Bh}{{{h{Cl}}{h{Cl}}}Bh}{{{h{A@l}}{h{A@l}}}Bh}{{{h{A@n}}{h{A@n}}}Bh}{{{h{Kj}}{h{Kj}}}Bh}{{{h{Kl}}{h{Kl}}}Bh}{{{h{Cb}}{h{Cb}}}Bh}{{{h{Kn}}{h{Kn}}}Bh}{{{h{AA`}}{h{AA`}}}Bh}{{{h{Nj}}{h{Nj}}}Bh}{{{h{Oh}}{h{Oh}}}Bh}{{{h{AAb}}{h{AAb}}}Bh}{{{h{Ch}}{h{Ch}}}Bh}{{{h{A@f}}{h{A@f}}}Bh}{{{h{AAd}}{h{AAd}}}Bh}{{{h{AAf}}{h{AAf}}}Bh}{{{h{L`}}{h{L`}}}Bh}{{{h{Lb}}{h{Lb}}}Bh}{{{h{AAh}}{h{AAh}}}Bh}{{{h{Ld}}{h{Ld}}}Bh}{{{h{Lf}}{h{Lf}}}Bh}{{{h{Mh}}{h{Mh}}}Bh}{{{h{Lh}}{h{Lh}}}Bh}{{{h{AAl}}{h{AAl}}}Bh}{{{h{ABb}}{h{ABb}}}Bh}{{{h{Cd}}{h{Cd}}}Bh}{{{h{Il}}{h{Il}}}Bh}{{{h{ABd}}{h{ABd}}}Bh}{{{h{ABf}}{h{ABf}}}Bh}{{{h{Ml}}{h{Ml}}}Bh}{{{h{Lj}}{h{Lj}}}Bh}{{{h{Mn}}{h{Mn}}}Bh}{{{h{Ll}}{h{Ll}}}Bh}{{{h{N`}}{h{N`}}}Bh}{{{h{Ln}}{h{Ln}}}Bh}{{{h{In}}{h{In}}}Bh}{{{h{Nl}}}{{Dd{{h{Ch}}}}}}{{{h{AhABh}}ABh}{{Dj{BfABj}}}}``{{{h{Nl}}}{{Dd{Kd}}}}{{{h{Ch}}}Md}{{{h{Ch}}}Cb}{{{h{Kf}}{h{{Ab{A`}}}}}Kh}{{{h{Ch}}}Kn}`{{{h{Ahc}}}{{Dj{CfABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{JnABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{K`ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{CjABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{KdABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{KfABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{NlABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{CbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{KnABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{AA`ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{OhABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{AAbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{A@fABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{AAdABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{AB`ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{ABfABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{LjABl}}}{ABnAC`}}:{{{h{Ahc}}}{{Dj{ClABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{NjABl}}}{ABnAC`}}7{{{h{Ahc}}}{{Dj{ChABl}}}{ABnAC`}}{{{h{Cf}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Jn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{K`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Cj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Kd}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Kf}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Nl}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{M`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Cl}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Cb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Kn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AA`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Nj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Oh}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AAb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Ch}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{A@f}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AAd}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AB`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{ABf}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Lj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{M`}}}Hf}0{InACf}{{}Cf}{{}Ih}{{}Cl}{{}AA`}{{}Nj}{{}Oh}{{}A@f}{{}Mh}{{}ABf}{{}Ml}{{}Mn}{{}N`}{{{h{Cl}}}h}{{{h{AhCl}}}{{h{Ah}}}}{{cACh}{{Dj{Cf}}}Dl}{{cACh}{{Dj{Ih}}}Dl}10{c{{Dj{Cf}}}Dl}{c{{Dj{On}}}Dl}{c{{Dj{In}}}Dl}{c{{Dj{Ij}}}Dl}{c{{Dj{{Jj{Nf}}}}}Dl}{c{{Dj{Jn}}}Dl}{c{{Dj{K`}}}Dl}{c{{Dj{Kb}}}Dl}{c{{Dj{Cj}}}Dl}{c{{Dj{Kd}}}Dl}{c{{Dj{Kf}}}Dl}{c{{Dj{Kh}}}Dl}{c{{Dj{Nl}}}Dl}{c{{Dj{{h{M`}}}}}Dl}{c{{Dj{Cl}}}Dl}{c{{Dj{Kj}}}Dl}{c{{Dj{Kl}}}Dl}{c{{Dj{Cb}}}Dl}{c{{Dj{Kn}}}Dl}{c{{Dj{AA`}}}Dl}{c{{Dj{Nj}}}Dl}{c{{Dj{Oh}}}Dl}{c{{Dj{AAb}}}Dl}{c{{Dj{Ch}}}Dl}{c{{Dj{A@f}}}Dl}{c{{Dj{AAf}}}Dl}{c{{Dj{L`}}}Dl}{c{{Dj{Lb}}}Dl}{c{{Dj{AAh}}}Dl}{c{{Dj{AAj}}}Dl}{c{{Dj{Ld}}}Dl}{c{{Dj{Lf}}}Dl}{c{{Dj{Lh}}}Dl}{c{{Dj{AAl}}}Dl}{c{{Dj{AAn}}}Dl}{c{{Dj{Cd}}}Dl}{c{{Dj{Il}}}Dl}{c{{Dj{ABd}}}Dl}{c{{Dj{ABf}}}Dl}{{{h{{Ab{A`}}}}}{{Dj{ABhABj}}}}{c{{Dj{ABh}}}Dl}{c{{Dj{Lj}}}Dl}{c{{Dj{Ll}}}Dl}{c{{Dj{Ln}}}Dl}{{{h{Ahc}}}{{Dj{ABhABj}}}ACj}{{{h{ABd}}c}ACl{{ACn{Nd}}}}{{{h{ABd}}}AD`}{CfADb}{IhADb}{{CfA@h}ADb}{{IhA@h}ADb}{{CfIj}}{{CfE`}}{{IhOl}}{{IjE`}}{{IjIj}}{{{h{AhCf}}E`}Bf}{{{h{AhIh}}Ol}Bf}{{{h{AhIj}}E`}Bf}{{{h{M`}}}Cf}`{{{h{Oh}}}Eb}{{{h{Nj}}}Eb}{{}}00000000000000{{}ADd}1010101{{{h{A@h}}{h{A@h}}}Eb}{{{h{Cf}}{h{Cf}}}Eb}{{{h{Ih}}{h{Ih}}}Eb}{{{h{On}}{h{On}}}Eb}{{{h{In}}{h{In}}}Eb}{{{h{Ij}}{h{Ij}}}Eb}{{{h{Jl}}{h{Jl}}}Eb}{{{h{A@j}}{h{A@j}}}Eb}{{{h{{Jj{c}}}}{h{{Jj{c}}}}}Eb{EdNh}}{{{h{Jn}}{h{Jn}}}Eb}{{{h{K`}}{h{K`}}}Eb}{{{h{Kb}}{h{Kb}}}Eb}{{{h{Cj}}{h{Cj}}}Eb}{{{h{Kd}}{h{Kd}}}Eb}{{{h{Kf}}{h{Kf}}}Eb}{{{h{Kh}}{h{Kh}}}Eb}{{{h{Nl}}{h{Nl}}}Eb}{{{h{A@`}}{h{A@`}}}Eb}{{{h{M`}}{h{M`}}}Eb}{{{h{M`}}{h{Cl}}}Eb}{{{h{Cl}}{h{Cl}}}Eb}{{{h{Cl}}{h{M`}}}Eb}{{{h{A@l}}{h{A@l}}}Eb}{{{h{A@n}}{h{A@n}}}Eb}{{{h{Kj}}{h{Kj}}}Eb}{{{h{Kl}}{h{Kl}}}Eb}{{{h{Cb}}{h{Cb}}}Eb}{{{h{Kn}}{h{Kn}}}Eb}{{{h{AA`}}{h{AA`}}}Eb}{{{h{Nj}}{h{Nj}}}Eb}{{{h{Oh}}{h{Oh}}}Eb}{{{h{AAb}}{h{AAb}}}Eb}{{{h{Ch}}{h{Ch}}}Eb}{{{h{A@f}}{h{A@f}}}Eb}{{{h{AAd}}{h{AAd}}}Eb}{{{h{AAf}}{h{AAf}}}Eb}{{{h{L`}}{h{L`}}}Eb}{{{h{Lb}}{h{Lb}}}Eb}{{{h{AAh}}{h{AAh}}}Eb}{{{h{AAj}}{h{AAj}}}Eb}{{{h{Ld}}{h{Ld}}}Eb}{{{h{Lf}}{h{Lf}}}Eb}{{{h{Mh}}{h{Mh}}}Eb}{{{h{Lh}}{h{Lh}}}Eb}{{{h{AAl}}{h{AAl}}}Eb}{{{h{AAn}}{h{AAn}}}Eb}{{{h{AB`}}{h{AB`}}}Eb}{{{h{ABb}}{h{ABb}}}Eb}{{{h{Cd}}{h{Cd}}}Eb}{{{h{Il}}{h{Il}}}Eb}{{{h{ABd}}{h{ABd}}}Eb}{{{h{ABf}}{h{ABf}}}Eb}{{{h{ABh}}{h{ABh}}}Eb}{{{h{Ml}}{h{Ml}}}Eb}{{{h{Lj}}{h{Lj}}}Eb}{{{h{Mn}}{h{Mn}}}Eb}{{{h{Ll}}{h{Ll}}}Eb}{{{h{N`}}{h{N`}}}Eb}{{{h{Ln}}{h{Ln}}}Eb}{{{h{In}}{h{In}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000`{{{h{AhCl}}c}Bf{{Eh{}{{Ef{ADf}}}}}}{{{h{ABh}}{h{{J`{c}}}}}{{Dj{ChADh}}}Jh}{{{h{AB`}}{h{Ah{ADj{Cb}}}}{h{Ah{ADj{Db}}}}}{{Dj{BfADl}}}}{ABh{{Dj{ChADn}}}}0{ABhCh}{{ABhOn}{{Dj{ChADn}}}}{{{h{ABh}}}{{Dj{CfABj}}}}{{OnE`}{{Dd{Cf}}}}{{OnIj}{{Dd{Cf}}}}{{{h{Jn}}{h{K`}}}K`}{{ABh{h{{J`{c}}}}}{{Dj{ABh{Fb{ABh{ADj{ADh}}}}}}}Jh}{{ABh{h{{J`{c}}}}Hf}{{Dj{ABh{Fb{ABhADh}}}}}Jh}0{{{h{AhABh}}{h{{J`{c}}}}Hf}{{Dj{BfADh}}}Jh}02{{{h{AhABh}}{h{{J`{c}}}}}{{Dj{Bf{ADj{ADh}}}}}Jh}0{{{h{M`}}}{{Dd{A@`}}}}{{{h{A@h}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Cf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Ih}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{On}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{In}}{h{AhEj}}}{{Dj{BfEl}}}}00{{{h{Ij}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Jl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{A@j}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{{Jj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}Nh}{{{h{Jj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Jn}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{K`}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Kb}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Cj}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Kd}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Kf}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Kh}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Nl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{A@`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{M`}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Cl}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{A@l}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{A@n}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Kj}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Kl}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Cb}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Kn}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{AA`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Nj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Oh}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{AAb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Ch}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{A@f}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AAd}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AAf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{L`}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Lb}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{AAh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AAj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Ld}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Lf}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Lh}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{AAl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AAn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AB`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{ABb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Cd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Il}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{ABd}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{ABf}}{h{AhEj}}}{{Dj{BfEl}}}}00{{{h{ABh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Lj}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Ll}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{Ln}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{M`}}{h{AhAE`}}}{{Dj{BfEl}}}}{{Cf{h{AhAE`}}A@h}{{Dj{BfEl}}}}{{Ih{h{AhAE`}}A@h}{{Dj{BfEl}}}}{{{h{AAj}}{h{AhAE`}}}{{Dj{BfEl}}}}{cc{}}000{AAhIn}1{ACfIn}{MbIn}{AAfIn}{AEbIn}55{CdA@j}666{MdJn}7{MdK`}{MfKb}{AEdKb}{{{h{AEd}}}Kb};{{{h{Nl}}}Cj}{MdCj}{FhCj}>{{{h{Fh}}}Cj}{NlCj}{MdKd}{CbKd}{cc{}}{KnKf}{MdKf}2{MdKh}33{A@nA@`}{A`A@`}55{{{AEf{M`}}}Cl}{{{ADj{A`}}}Cl}{{{h{M`}}}Cl}{JjCl}999{{{h{M`}}}Kj}{{{h{Cl}}}Kj}{MfKj}{ClKj}{nKl}{ClKl}{{{h{M`}}}Kl}{cc{}}{{{h{Cl}}}Kl}{MdCb}{{{h{Ch}}}Cb}{ChCb}4{MdKn}5{{{h{Ch}}}Kn}{ChKn}77{OjOh}{AEhOh}999{{{h{{Ab{{ADj{A`}}}}}}}A@f}{{{h{{Ab{{h{{Ab{A`}}}}}}}}}A@f};{{{ADj{{h{{Ab{A`}}}}}}}A@f}{{{ADj{{ADj{A`}}}}}A@f}{E`AAd}{HfAAd}{AEjAAd}{DbAAd}{cc{}}{A`AAd}1{AEbAAf}{AAhAAf}{{{h{AAf}}}L`}{{{h{AAh}}}L`}5{MfL`}{AAhL`}{AAfL`}8{AAhLb}{MfLb}{{{h{AAh}}}Lb};;;{MdLd}{MdLf}=={{{Mj{Mh}}}Lh}>>{AAnAAl}???{CdABb}{cc{}}0{ABfABd}1111{{{Mj{Ml}}}Lj}2{AElLj}33{{{h{AEn}}}Ll}{AEnLl}{LjLl}{{{Mj{Mn}}}Ll}77{{{Mj{N`}}}Ln}{{{h{AF`}}}Ln}{AF`Ln}{AEjOh}{{{Ad{A`}}}Il}{{{Ad{A`}}}ABd}{{{h{Nl}}c}AB`{{AFb{{h{Cb}}}{{H`{Eb}}}}}}{AD`{{Dj{CfAFd}}}}{AD`{{Dj{IhAFd}}}}{{}Jn}{{}K`}{{}Kb}{{}Cj}{{}Kd}{{}Kf}{{}Kh}{{}Kj}{{}Kl}{{}Cb}{{}Kn}{{}L`}{{}Lb}{{}Ld}{{}Lf}{{}Lh}{{}Lj}{{}Ll}{{}Ln}{{{h{{Ab{A`}}}}}{{h{M`}}}}{{{ADj{A`}}}Cl}{{{h{Ah{Ab{A`}}}}}{{h{AhM`}}}}{Od{{Dd{Cd}}}}{ABfABd}{DbOh}{DbAAn}{DbABf}{A`{{Dj{AAlAFf}}}}{{{h{Fl}}}{{Dj{CdAFh}}}}{{}Jn}{{}K`}{{}Kb}{{}Cj}{{}Kd}{{}Kf}{{}Kh}{{}Kj}{{}Kl}{{}Cb}{{}Kn}{{}L`}{{}Lb}{{}Ld}{{}Lf}{{}Lh}{{}Lj}{{}Ll}{{}Ln}{{AD`A@h}{{Dj{CfAFd}}}}{{AD`A@h}{{Dj{IhAFd}}}}{{FhFhc}ABf{{ACn{Nd}}}}{{{h{Fh}}{h{{Ab{Cb}}}}c}AB`{{AFb{{h{Cb}}}{{H`{Eb}}}}}}{AEjOh}{{{h{Fl}}}{{Dj{ClAFj}}}}{{{h{Fl}}}{{Dj{OhAFl}}}}{{{h{Fl}}}{{Dj{IlAFl}}}}{{{h{Fl}}}{{Dj{ABdAFl}}}}{{{h{Fl}}}{{Dj{ABfAFl}}}}{E`Cf}{cCl{{Eh{}{{Ef{ADf}}}}}}{{In{Dd{Ll}}}Ln}{{{h{AFn}}}{{Fb{InJd}}}}{E`{{Dd{Ij}}}}{{{Ad{A`}}}Il}{{{Ad{A`}}}ABd}{AG`{{Dd{Cd}}}}{{ABfE`c}ABf{{ACn{Nd}}}}{{LlLl}Ll}{E`Ij}{{{h{{J`{c}}}}{h{AAj}}}AAfAGb}{{{h{{J`{c}}}}{h{AAj}}}{{Dj{AAhAGd}}}AGb}{MdJn}{MdK`}{MfKb}{MdCj}{MdKd}{MdKf}{MdKh}{MfKj}{nKl}{MdCb}{MdKn}{MfL`}{MfLb}{MdLd}{MdLf}{{{Mj{Mh}}}Lh}{{{Mj{Ml}}}Lj}{{{Mj{Mn}}}Ll}{{{Mj{N`}}}Ln}{E`Cf}{OlIh}{E`On}{E`{{Dd{On}}}}1{{{h{M`}}c}{{Dj{JjAGf}}}{{ACn{Nd}}}}{{{h{M`}}AGh}Lj}{{{h{M`}}AGh}Ll}{Db{{Dj{OhAGj}}}}0{{{h{{Ab{A`}}}}}{{Dj{InAGl}}}}{{{h{{Ab{A`}}}}}{{Dj{InJf}}}}{{{h{{Ab{A`}}}}}{{Dj{JnFj}}}}{{{h{{Ab{A`}}}}}{{Dj{K`Fj}}}}{{{h{{Ab{A`}}}}}{{Dj{KbFj}}}}{{{h{{Ab{A`}}}}}{{Dj{CjFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KdFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KfFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KhFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KjFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KlFj}}}}{{{h{{Ab{A`}}}}}{{Dj{CbFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KnFj}}}}{{{h{{Ab{c}}}}}A@f{{ACn{{Ab{A`}}}}}}{{{h{{Ab{A`}}}}}{{Dj{AAfAGn}}}}{{{h{{Ab{A`}}}}}{{Dj{AAfAGl}}}}{{{h{{Ab{A`}}}}}{{Dj{L`Fj}}}}{{{h{{Ab{A`}}}}}{{Dj{LbFj}}}}{{{h{{Ab{A`}}}}}{{Dj{AAhJf}}}}{{{h{{Ab{A`}}}}c}{{Dj{AAjJf}}}{{AH`{ABb}}}}{{{h{{Ab{A`}}}}}{{Dj{LdFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LfFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LhFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LjFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LlFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LnFj}}}}{{{h{{Ab{A`}}}}}{{Dj{JnFj}}}}{{{h{{Ab{A`}}}}}{{Dj{K`Fj}}}}{{{h{{Ab{A`}}}}}{{Dj{KbFj}}}}{{{h{{Ab{A`}}}}}{{Dj{CjFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KdFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KfFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KhFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KjFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KlFj}}}}{{{h{{Ab{A`}}}}}{{Dj{CbFj}}}}{{{h{{Ab{A`}}}}}{{Dj{KnFj}}}}{{{h{{Ab{A`}}}}}{{Dj{L`Fj}}}}{{{h{{Ab{A`}}}}}{{Dj{LbFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LdFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LfFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LhFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LjFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LlFj}}}}{{{h{{Ab{A`}}}}}{{Dj{LnFj}}}}{Db{{Dj{AAnAHb}}}}{{{h{Fl}}}{{Dj{A@h}}}}{{{h{Fl}}}{{Dj{Cf}}}}{{{h{Fl}}}{{Dj{Ih}}}}{{{h{Fl}}}{{Dj{On}}}}{{{h{Fl}}}{{Dj{InJf}}}}{{{h{Fl}}}{{Dj{Ij}}}}{{{h{Fl}}}{{Dj{Jl}}}}{{{h{Fl}}}{{Dj{{Jj{Nf}}AHd}}}}{{{h{Fl}}}{{Dj{Jn}}}}{{{h{Fl}}}{{Dj{K`}}}}{{{h{Fl}}}{{Dj{Kb}}}}{{{h{Fl}}}{{Dj{Cj}}}}{{{h{Fl}}}{{Dj{Kd}}}}{{{h{Fl}}}{{Dj{Kf}}}}{{{h{Fl}}}{{Dj{Kh}}}}{{{h{Fl}}}{{Dj{A@n}}}}{{{h{Fl}}}{{Dj{Kj}}}}{{{h{Fl}}}{{Dj{Kl}}}}{{{h{Fl}}}{{Dj{Cb}}}}{{{h{Fl}}}{{Dj{Kn}}}}{{{h{Fl}}}{{Dj{AA`}}}}{{{h{Fl}}}{{Dj{Oh}}}}{{{h{Fl}}}{{Dj{AAfAHf}}}}{{{h{Fl}}}{{Dj{L`}}}}{{{h{Fl}}}{{Dj{Lb}}}}{{{h{Fl}}}{{Dj{AAh}}}}{{{h{Fl}}}{{Dj{AAjAHh}}}}{{{h{Fl}}}{{Dj{Ld}}}}{{{h{Fl}}}{{Dj{Lf}}}}{{{h{Fl}}}{{Dj{Lh}}}}{{{h{Fl}}}{{Dj{AAl}}}}{{{h{Fl}}}{{Dj{AAn}}}}{{{h{Fl}}}{{Dj{Cd}}}}{{{h{Fl}}}{{Dj{ABh}}}}{{{h{Fl}}}{{Dj{Lj}}}}{{{h{Fl}}}{{Dj{Ll}}}}{{{h{Fl}}}{{Dj{Ln}}}}{{{h{Fl}}A@h}{{Dj{CfAFd}}}}{{{h{Fl}}A@h}{{Dj{IhAFd}}}}{{{h{Fl}}}{{Dj{CfAHj}}}}{{{h{Fl}}}{{Dj{IhAHj}}}}{{{h{Fl}}}{{Dj{OhAHl}}}}{{{h{Fl}}}{{Dj{IlAHl}}}}{{{h{Fl}}}{{Dj{ABdAHl}}}}{{{h{Fl}}}{{Dj{ABfAHl}}}}{Ch{{Dj{ABhABj}}}}{E`{{Dd{Ij}}}}{E`Ij}0{{{h{Fl}}}{{Dj{AAjAHh}}}}1{{A@lc}Jj{{AH`{A@j}}}}2{HfIj}{cAAj{{AH`{ABb}}}}{{{h{A@h}}{h{Ahc}}}BfGb}{{{h{Cf}}{h{Ahc}}}BfGb}{{{h{Ih}}{h{Ahc}}}BfGb}{{{h{On}}{h{Ahc}}}BfGb}{{{h{In}}{h{Ahc}}}BfGb}{{{h{Ij}}{h{Ahc}}}BfGb}{{{h{Jl}}{h{Ahc}}}BfGb}{{{h{A@j}}{h{Ahc}}}BfGb}{{{h{{Jj{c}}}}{h{Ahe}}}Bf{GdNh}Gb}{{{h{Jn}}{h{Ahc}}}BfGb}{{{h{K`}}{h{Ahc}}}BfGb}{{{h{Kb}}{h{Ahc}}}BfGb}{{{h{Cj}}{h{Ahc}}}BfGb}{{{h{Kd}}{h{Ahc}}}BfGb}{{{h{Kf}}{h{Ahc}}}BfGb}{{{h{Kh}}{h{Ahc}}}BfGb}{{{h{M`}}{h{Ahc}}}BfGb}{{{h{Cl}}{h{Ahc}}}BfGb}{{{h{A@l}}{h{Ahc}}}BfGb}{{{h{A@n}}{h{Ahc}}}BfGb}{{{h{Kj}}{h{Ahc}}}BfGb}{{{h{Kl}}{h{Ahc}}}BfGb}{{{h{Cb}}{h{Ahc}}}BfGb}{{{h{Kn}}{h{Ahc}}}BfGb}{{{h{AA`}}{h{Ahc}}}BfGb}{{{h{Nj}}{h{Ahc}}}BfGb}{{{h{Oh}}{h{Ahc}}}BfGb}{{{h{AAb}}{h{Ahc}}}BfGb}{{{h{Ch}}{h{Ahc}}}BfGb}{{{h{A@f}}{h{Ahc}}}BfGb}{{{h{AAf}}{h{Ahc}}}BfGb}{{{h{L`}}{h{Ahc}}}BfGb}{{{h{Lb}}{h{Ahc}}}BfGb}{{{h{AAh}}{h{Ahc}}}BfGb}{{{h{Ld}}{h{Ahc}}}BfGb}{{{h{Lf}}{h{Ahc}}}BfGb}{{{h{Mh}}{h{Ahc}}}BfGb}{{{h{Lh}}{h{Ahc}}}BfGb}{{{h{AAl}}{h{Ahc}}}BfGb}{{{h{AAn}}{h{Ahc}}}BfGb}{{{h{ABb}}{h{Ahc}}}BfGb}{{{h{Cd}}{h{Ahc}}}BfGb}{{{h{Il}}{h{Ahc}}}BfGb}{{{h{ABd}}{h{Ahc}}}BfGb}{{{h{ABf}}{h{Ahc}}}BfGb}{{{h{ABh}}{h{Ahc}}}BfGb}{{{h{Ml}}{h{Ahc}}}BfGb}{{{h{Lj}}{h{Ahc}}}BfGb}{{{h{Mn}}{h{Ahc}}}BfGb}{{{h{Ll}}{h{Ahc}}}BfGb}{{{h{N`}}{h{Ahc}}}BfGb}{{{h{Ln}}{h{Ahc}}}BfGb}```{{{h{Jn}}c}h{{Gf{{Ab{A`}}}}}}{{{h{K`}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Kb}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Cj}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Kd}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Kf}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Kh}}c}h{{Gf{{Ab{A`}}}}}}{{{h{M`}}AHn}h}{{{h{M`}}{Fb{{AI`{Hf}}{AI`{Hf}}}}}h}{{{h{M`}}{AIb{Hf}}}h}{{{h{M`}}{AId{Hf}}}h}{{{h{M`}}{AIf{Hf}}}h}{{{h{M`}}{AIh{Hf}}}h}{{{h{M`}}{AIj{Hf}}}h}{{{h{Kj}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Kl}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Cb}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Kn}}c}h{{Gf{{Ab{A`}}}}}}{{{h{A@f}}Hf}h}{{{h{L`}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Lb}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AAj}}AHn}{{h{{Ab{A`}}}}}}{{{h{Ld}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Lf}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Lh}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Lj}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Ll}}c}h{{Gf{{Ab{A`}}}}}}{{{h{Ln}}c}h{{Gf{{Ab{A`}}}}}}````{{{h{M`}}}AIl}0{{{h{M`}}}AIn}0{ce{}{}}0000000000000000000000000000000000000000000000000000000{Cl{{AJ`{M`}}}}{Cl{{ADj{A`}}}}{{{h{A@f}}}}{{{AJ`{M`}}}Cl}{{{Jj{c}}}{{Jj{Nf}}}Nh}{{{h{Ch}}AJbAJd}Eb}{{{h{Ch}}}Eb}{{{h{M`}}}Eb}{{{h{A@f}}}Eb}2{{{h{Oh}}}Eb}03{{{h{ABb}}}Eb}{{{h{ABd}}Cj}Eb}4{IhEb}{{{h{AA`}}}Eb}66666{{{h{A@l}}}Eb}70702775{{{h{Jj}}{h{AAf}}}Eb}{{{h{Jj}}{h{In}}}Eb}7{{{h{Jj}}}Eb}8{{{h{AAf}}}Eb}{{{h{{Jj{Nf}}}}Cd}Eb}<{{{h{In}}}Eb}{{{h{A@f}}}AJf}{{{h{ABh}}}{{`{{Gj{}{{Ef{{Dj{{h{AAb}}ABj}}}}}}}}}}`{{{h{A@f}}}{{Dd{{h{{Ab{A`}}}}}}}}{{{h{Nj}}}Ij}{{{h{M`}}}Hf}{{{h{A@f}}}Hf}`{IlAD`}{CdAG`}{{{h{Jj}}{h{M`}}}Eb}{{{h{ABd}}}ABd}{{{h{ABd}}c}ABd{{ACn{Nd}}}}1`11{{{h{M`}}}Cf}{ClAAb}{{{h{M`}}On}Cf}{{ClOn}AAb}{{CfE`}}{{IhOl}}{{OnIj}}{{IjOn}}{{IjE`}}{{{h{AhCf}}E`}Bf}{{{h{AhIh}}Ol}Bf}{{{h{AhIj}}E`}Bf}{Ih}``{{}{{h{M`}}}}{{}Cl}{{A@n{h{{Ab{A`}}}}}{{Dj{A@lAJh}}}}{{CbDb}AA`}{{}A@f}{cAAf{{AH`{AEb}}}}{{AJjc}AAj{{AH`{ABb}}}}{cCl{{ACn{Nb}}}}{{{h{AAf}}}Cl}{{{h{L`}}}Cl}{{{h{Kj}}}Cl}{{{h{{J`{c}}}}In{Dd{Ll}}}ClJh}{ACfCl}{{{h{Lb}}}Cl}{{{h{Kl}}}Cl}98{{{h{A@l}}}Cl}{{{h{A@f}}Hf}{{Dd{{h{{Ab{A`}}}}}}}}{{{h{Ch}}}Md}{{}AA`}```{{{h{M`}}}{{Dd{AAf}}}}{{ce}Jj{{AH`{L`}}}{{AH`{ABb}}}}{{{h{M`}}c}{{Dj{JjAJl}}}{{AH`{ABb}}}}{{Kjc}Jj{{AH`{ABb}}}}{{{h{AAh}}c}Jj{{AH`{ABb}}}}{{{h{M`}}c}Jj{{AH`{ABb}}}}{{{h{{J`{c}}}}In{Dd{Ll}}e}JjJh{{AH`{A@j}}}}{{{h{{J`{c}}}}In{Dd{Ll}}}A@lJh}{{{h{AJn}}}A@f}{{ACfc}Jj{{AH`{A@j}}}}{ACfA@l}{{{h{AAh}}c}Jj{{AH`{A@j}}}}{{{h{AAh}}}A@l}{{{h{AK`}}{h{AEb}}}A@f}{{{h{M`}}}{{Dd{Cl}}}}{LbCl}{{{h{AAf}}}{{Dj{ClAGd}}}}{{{h{AAh}}}Cl}{{{h{M`}}c}Jj{{AH`{A@j}}}}{{{h{M`}}}A@l}{Cd{{h{Nd}}}}`{{{h{Cf}}{h{Cf}}}{{Dd{Bh}}}}{{{h{Ih}}{h{Ih}}}{{Dd{Bh}}}}{{{h{On}}{h{On}}}{{Dd{Bh}}}}{{{h{In}}{h{In}}}{{Dd{Bh}}}}{{{h{Ij}}{h{Ij}}}{{Dd{Bh}}}}{{{h{Jl}}{h{Jl}}}{{Dd{Bh}}}}{{{h{A@j}}{h{A@j}}}{{Dd{Bh}}}}{{{h{{Jj{c}}}}{h{{Jj{c}}}}}{{Dd{Bh}}}{HhNh}}{{{h{Jn}}{h{Jn}}}{{Dd{Bh}}}}{{{h{K`}}{h{K`}}}{{Dd{Bh}}}}{{{h{Kb}}{h{Kb}}}{{Dd{Bh}}}}{{{h{Cj}}{h{Cj}}}{{Dd{Bh}}}}{{{h{Kd}}{h{Kd}}}{{Dd{Bh}}}}{{{h{Kf}}{h{Kf}}}{{Dd{Bh}}}}{{{h{Kh}}{h{Kh}}}{{Dd{Bh}}}}{{{h{M`}}{h{Cl}}}{{Dd{Bh}}}}{{{h{M`}}{h{M`}}}{{Dd{Bh}}}}{{{h{Cl}}{h{Cl}}}{{Dd{Bh}}}}{{{h{Cl}}{h{M`}}}{{Dd{Bh}}}}{{{h{A@l}}{h{A@l}}}{{Dd{Bh}}}}{{{h{A@n}}{h{A@n}}}{{Dd{Bh}}}}{{{h{Kj}}{h{Kj}}}{{Dd{Bh}}}}{{{h{Kl}}{h{Kl}}}{{Dd{Bh}}}}{{{h{Cb}}{h{Cb}}}{{Dd{Bh}}}}{{{h{Kn}}{h{Kn}}}{{Dd{Bh}}}}{{{h{AA`}}{h{AA`}}}{{Dd{Bh}}}}{{{h{Nj}}{h{Nj}}}{{Dd{Bh}}}}{{{h{Oh}}{h{Oh}}}{{Dd{Bh}}}}{{{h{AAb}}{h{AAb}}}{{Dd{Bh}}}}{{{h{Ch}}{h{Ch}}}{{Dd{Bh}}}}{{{h{A@f}}{h{A@f}}}{{Dd{Bh}}}}{{{h{AAd}}{h{AAd}}}{{Dd{Bh}}}}{{{h{AAf}}{h{AAf}}}{{Dd{Bh}}}}{{{h{L`}}{h{L`}}}{{Dd{Bh}}}}{{{h{Lb}}{h{Lb}}}{{Dd{Bh}}}}{{{h{AAh}}{h{AAh}}}{{Dd{Bh}}}}{{{h{Ld}}{h{Ld}}}{{Dd{Bh}}}}{{{h{Lf}}{h{Lf}}}{{Dd{Bh}}}}{{{h{Mh}}{h{Mh}}}{{Dd{Bh}}}}{{{h{Lh}}{h{Lh}}}{{Dd{Bh}}}}{{{h{AAl}}{h{AAl}}}{{Dd{Bh}}}}{{{h{ABb}}{h{ABb}}}{{Dd{Bh}}}}{{{h{Cd}}{h{Cd}}}{{Dd{Bh}}}}{{{h{Il}}{h{Il}}}{{Dd{Bh}}}}{{{h{ABd}}{h{ABd}}}{{Dd{Bh}}}}{{{h{ABf}}{h{ABf}}}{{Dd{Bh}}}}{{{h{Ml}}{h{Ml}}}{{Dd{Bh}}}}{{{h{Lj}}{h{Lj}}}{{Dd{Bh}}}}{{{h{Mn}}{h{Mn}}}{{Dd{Bh}}}}{{{h{Ll}}{h{Ll}}}{{Dd{Bh}}}}{{{h{N`}}{h{N`}}}{{Dd{Bh}}}}{{{h{Ln}}{h{Ln}}}{{Dd{Bh}}}}`{{IhIh}{{Dd{Ih}}}}``{{{h{A@l}}}{{h{Nb}}}}`{{{h{c}}{h{e}}}Eb{}{}}{{{h{c}}h}Eb{}}0{{{h{c}}{h{Mf}}}{{Dd{AAf}}}{}}0{{{h{c}}{h{{Fb{MfLj}}}}}{{Dd{{Fb{InHf}}}}}{}}{{{h{c}}{h{Mf}}}{{Dd{In}}}{}}33{{{h{c}}}{{Dd{{h{{AKd{AKb{Fb{ClAGh}}}}}}}}}{}}{{{h{c}}{h{e}}}{{Dd{Hf}}}{}{}}{{{h{c}}{h{e}}{h{Lj}}}{{Dd{Hf}}}{}{}}`{{{h{Jj}}}{{Dd{L`}}}}{{{h{AAf}}}L`}{{{h{AAh}}}L`}{{{h{In}}Jd}AEb}{{{h{AAj}}{h{{J`{c}}}}}AAfAGb}{{{h{AhA@f}}c}Bf{{ACn{{Ab{A`}}}}}}{{{h{AhA@f}}{h{AK`}}}Bf}{{{h{AhCl}}ADf}Bf}0{{{h{AhCl}}A@`}Bf}{{{h{AhCl}}c}Bf{{ACn{Nb}}}}{{{h{Ahc}}}{{Dj{AAfACb}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{AAhACb}}}{ABnAC`}}{{{h{M`}}}{{Dd{{h{M`}}}}}}{{CfE`}Cf}{{IhOl}Ih}{{{h{AhCf}}E`}Bf}{{{h{AhIh}}Ol}Bf}{{{Jj{Nf}}Cd}{{Dj{JjAHd}}}}{{{h{AhCl}}Hf}Bf}0{Ij{{Dd{Ij}}}}{{{h{AhCl}}}Bf}{{{h{Jj}}}{{Dd{Kj}}}}{{{h{M`}}}Kj}{{{h{Jj}}}Cl}`{{{h{Ch}}}{{`{{Gj{}{{Ef{Hf}}}}}}}}`{{{h{A@f}}}{{Dd{{h{{Ab{A`}}}}}}}}{{{h{Nj}}}Ij}`{{CfcACh}DjHj}{{IhcACh}DjHj}101010{{{h{Cf}}c}DjHj}{{{h{On}}c}DjHj}{{{h{In}}}{{Ad{A`}}}}{{{h{In}}c}DjHj}{{{h{Ij}}c}DjHj}{{{h{{Jj{c}}}}e}DjNhHj}{{{h{Jn}}c}DjHj}{{{h{K`}}c}DjHj}{{{h{Kb}}c}DjHj}{{{h{Cj}}c}DjHj}{{{h{Kd}}c}DjHj}{{{h{Kf}}c}DjHj}{{{h{Kh}}c}DjHj}{{{h{Nl}}c}DjHj}{{{h{A@`}}c}DjHj}{{{h{M`}}c}DjHj}{{{h{Cl}}c}DjHj}{{{h{Kj}}c}DjHj}{{{h{Kl}}c}DjHj}{{{h{Cb}}c}DjHj}{{{h{Kn}}c}DjHj}{{{h{AA`}}c}DjHj}{{{h{Nj}}c}DjHj}{{{h{Oh}}c}DjHj}{{{h{AAb}}c}DjHj}{{{h{Ch}}c}DjHj}{{{h{A@f}}c}DjHj}{{{h{AAf}}c}DjHj}{{{h{L`}}c}DjHj}{{{h{Lb}}c}DjHj}{{{h{AAh}}c}DjHj}{{{h{AAj}}c}DjHj}{{{h{Ld}}c}DjHj}{{{h{Lf}}c}DjHj}{{{h{Lh}}c}DjHj}{{{h{AAl}}c}DjHj}{{{h{AAn}}c}DjHj}{{{h{Cd}}c}DjHj}{{{h{Il}}c}DjHj}{{{h{ABd}}c}DjHj}{{{h{ABf}}c}DjHj}{{{h{ABh}}c}DjHj}{{{h{ABh}}}{{ADj{A`}}}}{{{h{Lj}}c}DjHj}{{{h{Ll}}c}DjHj}{{{h{Ln}}c}DjHj}{{{h{ABh}}}Ib}{{{h{ABh}}{h{Ahc}}}{{Dj{HfACb}}}ACd}`{{{h{ABh}}Hf{h{Ah{AKf{c}}}}}{{Dj{{Fb{AKhAAn}}AKj}}}{{Df{Ch}}}}{{{h{ABh}}Hf{h{Ah{AKf{c}}}}{Dd{Lj}}}{{Dj{AKlAKn}}}{{Df{Ch}}}}{{{h{AhABh}}{h{c}}{h{{J`{e}}}}}{{Dj{{AKd{HfAL`}}{Fb{{AKd{HfAL`}}{AKd{HfAKj}}}}}}}ALb{AGbJh}}`{IhOl}{{{h{AAb}}}Hf}{{{h{A@f}}}Hf}{{{h{AAd}}}Hf}{{{h{ABh}}Hf}{{Dj{{h{AAb}}AKj}}}}{{CfCf}}{{IhIh}}{{IjIj}}{{IlIl}Il}{{{h{AhCf}}Cf}Bf}{{{h{AhIh}}Ih}Bf}{{{h{AhIj}}Ij}Bf}{cCf{{Gj{}{{Ef{Cf}}}}}}{cIh{{Gj{}{{Ef{Ih}}}}}}{cIj{{Gj{}{{Ef{{h{Ij}}}}}}}}{cIj{{Gj{}{{Ef{Ij}}}}}}{{In{h{{J`{c}}}}{Dd{Ll}}}{{Fb{ACfJd}}}Jh}`{{{h{A@f}}}{{Dd{{h{{Ab{A`}}}}}}}}0{{{h{A@f}}}{{Dd{{h{M`}}}}}}{{{h{M`}}}Lj}2{{{h{Jj}}}ALd}{{{h{M`}}}Ib}{Il{{Ad{A`}}}}{ABd{{Ad{A`}}}}{CfAD`}{IhAD`}{Jn}{K`}{Kb}{Cj}{Kd}{Kf}{Kh}{Kj}{Kl}{Cb}{Kn}{L`}{Lb}{Ld}{Lf}{Lh}{Lj}{Ll}{Ln}{{{h{M`}}}{{ADj{A`}}}}{AAf{{ADj{A`}}}}{{{h{AAh}}}{{Ad{A`}}}}{AAj{{ADj{A`}}}}{ABdABf}{ABfDb}{OhDb}{Cd{{h{Fl}}}}{A@nALf}{{CfA@h}AD`}{{IhA@h}AD`}{{{h{Mf}}}Mf}0{{{h{ALh}}}ALh}0{{{h{M`}}}Ib}{IjE`}{Il{{Ad{A`}}}}{ABd{{Ad{A`}}}}{A@nA`}{{{h{c}}}e{}{}}00000000000000000{{{h{M`}}}}11111111111111111111111111111111111111{{{h{M`}}}Cl}{{{h{M`}}{h{{J`{c}}}}In}ClJh}1{{{h{In}}}AAf}{{{h{AAf}}}AAf}{{{h{Jj}}}Ib}{JnMd}{K`Md}{KbMf}{CjMd}{KdMd}{KfMd}{KhMd}{KjMf}{Kln}{CbMd}{KnMd}{L`Mf}{LbMf}{LdMd}{LfMd}{Lh{{Mj{Mh}}}}{Lj{{Mj{Ml}}}}{Ll{{Mj{Mn}}}}{Ln{{Mj{N`}}}}{{{h{Oh}}}{{Dd{Oj}}}}{{{h{ALj}}}ALj}0{CfE`}{IhOl}{OnE`}00{LnJb}{{{h{n}}}n}0{Cf{{Dj{IhALl}}}}{AAfALn}{{{h{c}}}Ib{}}00000000000000000000000000000000000000000{{CfA@h}Ib}{{IhA@h}Ib}10{IlABd}{AAnDb}{A@`A`}{Ih{{Dj{CfALl}}}}{IjE`}0{{{h{A@f}}}{{ADj{{ADj{A`}}}}}}{AAjIb}{ABdIl}3{{{h{In}}}In}{{{h{Ch}}c}Hf{{Hb{{h{AA`}}}{{H`{{Dd{AAb}}}}}}}}{{{h{Nl}}}Hf}{{{h{Nj}}}Hf}{{{h{Ch}}}Hf}{c{{Dj{e}}}{}{}}{Ih{{Dj{Cf}}}}1{Cf{{Dj{Ih}}}}2{{{AJ`{Fl}}}{{Dj{On}}}}{{{h{Fl}}}{{Dj{On}}}}{Ib{{Dj{On}}}}55{{{h{Fl}}}{{Dj{Ij}}}}{Ib{{Dj{Ij}}}}7{{{AJ`{Fl}}}{{Dj{Ij}}}}88888888888888{A`{{Dj{A@n}}}}{A@`{{Dj{A@n}}}}:{ADf{{Dj{A@n}}}}{ALf{{Dj{A@n}}}}<<<<<<{{{AJ`{Fl}}}{{Dj{Oh}}}}{{{h{Fl}}}{{Dj{Oh}}}}>{Ib{{Dj{Oh}}}}????????{AAf{{Dj{AAh}}}}{c{{Dj{e}}}{}{}}00000000{AG`{{Dj{Cd}}}}1{Od{{Dj{Cd}}}}222222222222222222222222222222222222222222222222222222222222222222{{{h{In}}{h{{J`{c}}}}{h{In}}JdJb}EbJh}{{{h{Ch}}Hf}{{Dj{{h{Nj}}AM`}}}}{{{h{Ch}}Hf}{{Dj{{h{AAb}}AMb}}}}`{{{h{Ch}}}Cb}``{{{h{c}}}If{}}00000000000000000000000000000000000000000000000000000000{ACh{{h{Fl}}}}0{{CfCf}Cf}{{IhIh}Ih}10`{IhCf}`{{{h{AhABh}}Hf{h{{D`{AMd}}}}}{{Dj{BfAMf}}}}{{{h{AhABh}}Hf{h{{D`{AMd}}}}}{{Dj{BfAMh}}}}`{{{h{In}}{h{{J`{c}}}}{h{AKh}}{h{AMj}}}{{Dj{BfJf}}}Jh}{{{h{AAf}}{h{{J`{c}}}}{h{AKh}}{h{AK`}}}{{Dj{BfJf}}}Jh}{{{h{AAh}}{h{{J`{c}}}}{h{AKh}}{h{AK`}}}{{Dj{BfJf}}}Jh}{{{h{A@l}}}A@n}```{{{h{Ch}}}Hf}{ce{}{}}0000000000000000000000000000000000000000000000000000000{{{h{Nl}}}Ij}{{{h{AAb}}}Ij}{{{h{Ch}}}Ij}{HfCl}`{{{h{Jj}}}{{Dd{A@l}}}}{{{h{Nl}}}{{Dd{Kf}}}}{{{h{A@f}}}{{Dd{{h{M`}}}}}}{{{h{M`}}}{{Dd{A@n}}}}{{{h{AAf}}}{{Dj{LbAGd}}}}{{{h{AAh}}}Lb}{{{h{AAf}}{h{Ahc}}}{{Dj{BfACb}}}{ACdAC`}}{{{h{AAh}}{h{Ahc}}}{{Dj{BfACb}}}{ACdAC`}}{{{h{M`}}}Kl}{{{h{Ch}}}Kn}``````````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000{{{h{AGf}}}AGf}{{{h{AJl}}}AJl}{{{h{AMl}}}AMl}{{{h{AHd}}}AHd}{{{h{AMn}}}AMn}{{{h{AN`}}}AN`}{{{h{ANb}}}ANb}{{{h{ANd}}}ANd}{{{h{ANf}}}ANf}{{{h{ANh}}}ANh}{{{h{Nf}}}Nf}{{{h{ALd}}}ALd}{{{h{c}}{h{Ahe}}}Bf{}{}}00000000000{{{h{ANh}}{h{ANh}}}Bh}{{{h{Nf}}{h{Nf}}}Bh}{{{h{ALd}}{h{ALd}}}Bh}{{{h{AGf}}{h{AGf}}}Eb}{{{h{AJl}}{h{AJl}}}Eb}{{{h{AMl}}{h{AMl}}}Eb}{{{h{AHd}}{h{AHd}}}Eb}{{{h{AMn}}{h{AMn}}}Eb}{{{h{AN`}}{h{AN`}}}Eb}{{{h{ANb}}{h{ANb}}}Eb}{{{h{ANd}}{h{ANd}}}Eb}{{{h{ANf}}{h{ANf}}}Eb}{{{h{ANh}}{h{ANh}}}Eb}{{{h{Nf}}{h{Nf}}}Eb}{{{h{ALd}}{h{ALd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000000000000000000000`{{{h{AGf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AJl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AMl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AHd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AMn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AN`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ANb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ANd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ANf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ANh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Nf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{ALd}}{h{AhEj}}}{{Dj{BfEl}}}}{AJhAGf}{ANjAGf}{cc{}}{ANlAGf}{ANlAJl}22{ANjAHd}{ANlAHd}{AN`AHd}{ANfAHd}{AJhAHd}{AMnAHd}{ANnAHd}9{ANbAHd}{AO`AHd}{ANdAHd}<<<<<<<<{{{h{ANh}}{h{Ahc}}}BfGb}{{{h{Nf}}{h{Ahc}}}BfGb}{{{h{ALd}}{h{Ahc}}}BfGb}{ce{}{}}00000000000{{{h{ANb}}}Hf}{{{h{ANf}}}A`}{{{h{ANd}}}Hf}{{{h{ANh}}{h{ANh}}}{{Dd{Bh}}}}{{{h{Nf}}{h{Nf}}}{{Dd{Bh}}}}{{{h{ALd}}{h{ALd}}}{{Dd{Bh}}}}{{{h{AGf}}}{{Dd{{h{AOb}}}}}}{{{h{AJl}}}{{Dd{{h{AOb}}}}}}{{{h{AMl}}}{{Dd{{h{AOb}}}}}}{{{h{AHd}}}{{Dd{{h{AOb}}}}}}{{{h{AMn}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}00000000000{{{h{c}}}Ib{}}00000000{c{{Dj{e}}}{}{}}00000000000000000000000{{{h{c}}}If{}}00000000000????????????`````````````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{AOd{{Dd{c}}}{}}{{{h{AFd}}}AFd}{{{h{ADb}}}ADb}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{AFd}}{h{AFd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AFd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ADb}}{h{AhEj}}}{{Dj{BfEl}}}}0{AOfAFd}{AOhAFd}{ANlAFd}{cc{}}{AOjAFd}{ALlAFd}{AOlAFd}3{ce{}{}}0`{ADbADb}{{{h{AFd}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}066````{{cACh}{{Dj{AOn}}}Dl}0{{AOncACh}DjHj}{{B@`cACh}DjHj}10{ACh{{h{Fl}}}}{c{{Dj{e}}}DlAOn}`{{{h{c}}e}DjAOnHj}{c{{Dj{{Dd{e}}}}}DlB@`}{{{h{{Dd{c}}}}e}DjB@`Hj}3`210```````{{Ib{h{Fl}}}Ib}{{{h{AhIb}}{h{Fl}}}Bf}{{{h{{ADj{ce}}}}}{{h{e}}}{}B@b}{{{h{Ah{ADj{ce}}}}{h{Ah{ADj{ce}}}}}Bf{}B@b}{{{h{Ib}}}{{h{{Ab{A`}}}}}}{{{h{{ADj{A`}}}}}}{{{h{Ah{ADj{ce}}}}}{{h{Ah{Ab{c}}}}}{}B@b}{{{h{Ah{ADj{ce}}}}}{{h{Ah{ADj{ce}}}}}{}B@b}{{{h{AhIb}}}{{h{AhFl}}}}{{{h{Ah{ADj{ce}}}}}{}{}B@b}31{{{h{AhIb}}}{{h{Ah{ADj{A`}}}}}}{{{h{{ADj{ce}}}}}{}{}B@b}{{{h{{ADj{ce}}}}}{{h{{Ab{c}}}}}{}B@b}{{{h{{ADj{ce}}}}}{{h{{ADj{ce}}}}}{}B@b}{{{h{Ib}}}{{h{Fl}}}}{{{h{Ib}}}{{h{B@d}}}};{{{h{Ib}}}{{h{B@f}}}}42{{{h{c}}}{{h{e}}}{}{}}00530{{{h{Ahc}}}{{h{Ahe}}}{}{}}00<0:{{{h{{ADj{ce}}}}}Hf{}B@b}{{{h{Ib}}}Hf}{{{h{Ah{ADj{ce}}}}}Bf{}B@b}{{{h{AhIb}}}Bf}{{{h{AO`}}}AO`}{{{h{B@h}}}B@h}{{{h{{ADj{ce}}}}}{{ADj{ce}}}Al{B@bAl}}{{{h{Ib}}}Ib}{{{h{Ah{ADj{ce}}}}{h{{ADj{ce}}}}}BfAl{B@bAl}}{{{h{AhIb}}{h{Ib}}}Bf}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{{ADj{ce}}}}{h{{ADj{ce}}}}}BhBjB@b}{{{h{Ib}}{h{Ib}}}Bh}{Bl{{Dj{{ADj{A`}}B@j}}}}{Bl{{Dj{IbB@j}}}}{{{h{Ahc}}}{{Dj{IbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{AAb}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Kd}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{B@l}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Jn}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{B@n}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{AAd}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{E`}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{K`}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Fh}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Ch}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Nj}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{A`}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Cj}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{{ADj{A`}}}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{BA`}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{{Fb{DbBAb}}}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{BAd}}ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{{ADj{Lj}}ABl}}}{ABnAC`}}{{{h{{ADj{Nj}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{Cj}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{A`}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{BAd}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{BA`}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{Fh}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{E`}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{B@l}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{AAd}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{AAb}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{{ADj{A`}}}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{{Fb{DbBAb}}}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{Kd}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{K`}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{B@n}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{Jn}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{Ch}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{ADj{Lj}}}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{Ib}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AhIb}}{h{Fl}}}Bf}{{{h{Fl}}}{{Dj{{ADj{A`}}B@h}}}}{{{h{Fl}}}{{Dj{{ADj{A`}}AO`}}}}{{{h{Ah{ADj{ce}}}}}BfEdB@b}{{{h{Ah{ADj{ce}}}}g}Bf{}B@b{{Hb{{h{Ahc}}{h{Ahc}}}{{H`{Eb}}}}}}{{{h{Ah{ADj{ce}}}}i}Bf{}B@bEd{{Hb{{h{Ahc}}}{{H`{g}}}}}}{{}{{ADj{c}}}{}}{{}Ib}{{{h{{ADj{ce}}}}}{{h{{Ab{c}}}}}{}B@b}{{{h{Ib}}}{{h{Fl}}}}{{{h{Ah{ADj{ce}}}}}{{h{Ah{Ab{c}}}}}{}B@b}{{{h{AhIb}}}{{h{AhFl}}}}{c{{Dj{{ADj{e}}}}}DlDn}{c{{Dj{Ib}}}Dl}{{{h{Ah{ADj{ce}}}}g}{{BAf{ce}}}{}B@b{{Hd{Hf}}}}{{{h{AhIb}}c}BAh{{Hd{Hf}}}}{{{h{Ah{ADj{ce}}}}}Bf{}B@b}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{{h{{Ab{A`}}}}}Ib}0{{{h{AhEj}}{h{{Ab{A`}}}}}{{Dj{BfEl}}}}{{{h{AO`}}{h{AO`}}}Eb}{{{h{B@h}}{h{B@h}}}Eb}{{{h{{ADj{eg}}}}{h{{h{{Ad{c}}}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{h{{Ab{c}}}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{Ad{c}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{h{Ah{Ab{c}}}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{Ab{c}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{ADj{ci}}}}}Eb{}{{Ed{c}}}B@bB@b}{{{h{Ib}}{h{{h{Fl}}}}}Eb}{{{h{Ib}}{h{Ib}}}Eb}{{{h{Ib}}{h{{AEf{Fl}}}}}Eb}{{{h{Ib}}{h{Fl}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000`{{{h{Ah{ADj{ce}}}}g}Bf{}B@b{{Eh{}{{Ef{c}}}}}}{{{h{Ah{ADj{ce}}}}g}BfBB`B@b{{Eh{}{{Ef{{h{c}}}}}}}}{{{h{AhIb}}c}Bf{{Eh{}{{Ef{{AEf{Fl}}}}}}}}{{{h{AhIb}}c}Bf{{Eh{}{{Ef{Ib}}}}}}{{{h{AhIb}}c}Bf{{Eh{}{{Ef{{h{Fl}}}}}}}}{{{h{AhIb}}c}Bf{{Eh{}{{Ef{BBb}}}}}}{{{h{AhIb}}c}Bf{{Eh{}{{Ef{{h{BBb}}}}}}}}{{{h{AhIb}}c}Bf{{Eh{}{{Ef{{AJ`{Fl}}}}}}}}{{{h{Ah{ADj{ce}}}}{h{{Ab{c}}}}}BfAlB@b}{{{h{Ah{ADj{ce}}}}g}BfAlB@b{{Hd{Hf}}}}{{{h{AhIb}}c}Bf{{Hd{Hf}}}}{{{h{Ah{ADj{ce}}}}c}Bf{}B@b}{{{h{Ah{ADj{ce}}}}{h{c}}}BfBB`B@b}{{{h{AhIb}}BBb}Bf}{{{h{AhIb}}{h{BBb}}}Bf}{{{h{AhIb}}Ib}Bf}{{{h{AhIb}}{AEf{Fl}}}Bf}{{{h{AhIb}}{h{Fl}}}Bf}{{{h{Ah{ADj{ce}}}}Hf}BfBB`B@b}{{{h{Ah{ADj{ce}}}}Hf}Bf{}B@b}{{{h{AhIb}}Hf}Bf}0{{{h{Ah{ADj{ce}}}}g}{{BBd{cge}}}{}B@b{{Hb{{h{Ahc}}}{{H`{Eb}}}}}}{{{h{Ah{ADj{A`}}}}}{{Dj{BfACb}}}}{{{h{Ah{ADj{A`c}}}}}{{Dj{BfBBf}}}B@b}{{{h{AO`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{B@h}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{ADj{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}EnB@b}{{{h{Ib}}{h{AhEj}}}{{Dj{BfEl}}}}0{B@hAO`}{BBhAO`}{ANlAO`}{BBjAO`}{cc{}}0{{{h{Ah{Ad{c}}}}}{{ADj{c}}}Al}{{{Ad{c}}}{{ADj{c}}}{}}{{{BBl{ce}}}{{ADj{ce}}}{}B@b}{Cl{{ADj{A`}}}}{Ib{{ADj{A`}}}}{BBn{{ADj{BC`}}}}{BCb{{ADj{Ll}}}}{{{AEf{{Ab{c}}}}}{{ADj{c}}}{}}{{{h{{Ab{c}}}}}{{ADj{c}}}Al}{{{BCd{ce}}}{{ADj{ce}}}{}B@b}{{{h{{Ad{c}}}}}{{ADj{c}}}Al}{BCf{{ADj{A`}}}}{BCh{{ADj{A`}}}}{{{h{Fl}}}{{ADj{A`}}}}>{{{h{Ah{Ab{c}}}}}{{ADj{c}}}Al}{{{AJ`{{Ab{c}}e}}}{{ADj{ce}}}{}B@b}{{{h{Fl}}}Ib}{BBbIb}{cc{}}{{{h{Ib}}}Ib}{{{h{AhFl}}}Ib}{{{AJ`{Fl}}}Ib}{{{AEf{Fl}}}Ib}{{{h{Fl}}}{{Dj{{ADj{A`}}}}}}{e{{ADj{c}}}{}{{Eh{}{{Ef{c}}}}}}{cIb{{Eh{}{{Ef{{h{BBb}}}}}}}}{cIb{{Eh{}{{Ef{{h{Fl}}}}}}}}{cIb{{Eh{}{{Ef{{AEf{Fl}}}}}}}}{cIb{{Eh{}{{Ef{BBb}}}}}}{cIb{{Eh{}{{Ef{{AJ`{Fl}}}}}}}}{cIb{{Eh{}{{Ef{Ib}}}}}}{{HfHf}{{ADj{c}}}{}}{{A`HfHf}Ib}{{HfHfc}{{ADj{ec}}}B@b{}}{{{h{Fl}}}{{Dj{Ib}}}}{{{h{{Ab{AEj}}}}}{{Dj{IbBCj}}}}{{{h{{Ab{AEj}}}}}Ib}{{{h{{Ab{A`}}}}}{{Dj{IbBCj}}}}{{{h{{Ab{A`}}}}}Ib}10{{{ADj{A`}}}{{Dj{IbBCl}}}}{{{h{{Ab{A`}}}}}{{AEf{Fl}}}}{{{ADj{A`}}}Ib}{{{h{{ADj{ce}}}}{h{Ahg}}}BfGdB@bGb}{{{h{Ib}}{h{Ahc}}}BfGb}{{{h{{ADj{A`}}}}}Hf}{{{h{{ADj{ce}}}}g}h{}B@b{{Gf{{Ab{c}}}}}}{{{h{Ib}}c}h{{Gf{Fl}}}}{{{h{Ah{ADj{ce}}}}g}{{h{Ah}}}{}B@b{{Gf{{Ab{c}}}}}}{{{h{AhIb}}c}{{h{Ah}}}{{Gf{Fl}}}}{{{h{Ah{ADj{ce}}}}Hfc}Bf{}B@b}{{{h{AhIb}}HfBBb}Bf}{{{h{AhIb}}Hf{h{Fl}}}Bf}{ce{}{}}000{{{ADj{Cn}}}BCn}{{{ADj{ce}}}{{AJ`{{Ab{c}}e}}}{}B@b}{Ib{{AJ`{Fl}}}}{Ib{{ADj{A`}}}}{c{{Dj{BBnBD`}}}{}}{Ib{{Dj{BBnBD`}}}}{{{ADj{e}}}{}BDb{{BDd{c}}}}{Ib{{BDf{c}}}BDb}{{{ADj{{Ad{c}}e}}}{{ADj{ce}}}{}B@b}{{{h{{ADj{ce}}}}}{}{}B@b}{{{h{Ah{ADj{ce}}}}}{}{}B@b}{{{ADj{ce}}}{}{}B@b}{{{ADj{ce}}}{{Fb{HfHf}}}{}B@b}{Ib{{Fb{A`HfHf}}}}{{{ADj{ce}}}{{Fb{HfHfe}}}{}B@b}{{{h{Ib}}{h{Fl}}}}{{{h{B@h}}}A`}{{{h{Ib}}{h{Fl}}}Eb}{{{h{{ADj{ce}}}}}Eb{}B@b}{{{h{{ADj{c}}}}}Eb{}}{{{h{Ib}}}Eb}33{{{h{{ADj{A`c}}}}}EbB@b}{{{ADj{ce}}}{{h{Ah{Ab{c}}}}}{}B@b}{Ib{{h{AhFl}}}}{{{h{{ADj{ce}}}}}Hf{}B@b}{{{h{Ib}}}Hf}{{{h{Ah{ADj{c}}}}{ADj{c}}}Bf{}}{{{h{{ADj{eg}}}}{h{{Ab{c}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{ADj{ci}}}}}Eb{}{{Ed{c}}}B@bB@b}{{{h{{ADj{eg}}}}{h{{h{{Ab{c}}}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{h{{Ad{c}}}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{h{Ah{Ab{c}}}}}}}Eb{}{{Ed{c}}}B@b}{{{h{{ADj{eg}}}}{h{{Ad{c}}}}}Eb{}{{Ed{c}}}B@b}?{{{h{Ib}}{h{{AEf{Fl}}}}}Eb}{{{h{Ib}}{h{{h{Fl}}}}}Eb}{{}{{ADj{c}}}{}}{{}Ib}{c{{ADj{ec}}}B@b{}}{{{h{{ADj{ce}}}}{h{{ADj{cg}}}}}{{Dd{Bh}}}HhB@bB@b}{{{h{Ib}}{h{Ib}}}{{Dd{Bh}}}}{{{h{Ah{ADj{ce}}}}}{{Dd{c}}}{}B@b}{{{h{AhIb}}}{{Dd{BBb}}}}{{{h{Ah{ADj{ce}}}}g}{{Dd{c}}}{}B@b{{BDh{{h{Ahc}}}{{H`{Eb}}}}}}{{{h{Ah{ADj{ce}}}}c}Bf{}B@b}{{{h{AhIb}}BBb}Bf}{{{h{AhIb}}{h{Fl}}}Bf}{{{h{Ah{ADj{ce}}}}c}{{Dj{Bfc}}}{}B@b}{{{h{Ah{ADj{ce}}}}Hf}c{}B@b}{{{h{AhIb}}Hf}BBb}{{{h{AhIb}}c}BfBDj}{{{h{AhIb}}c{h{Fl}}}Bf{{Hd{Hf}}}}{{{h{Ah{ADj{ce}}}}Hf}Bf{}B@b}{{{h{AhIb}}Hf}Bf}10{{{h{Ah{ADj{ce}}}}Hfc}BfAlB@b}{{{h{Ah{ADj{ce}}}}Hfg}Bf{}B@b{{Hb{}{{H`{c}}}}}}{{{h{Ah{ADj{ce}}}}g}Bf{}B@b{{Hb{{h{c}}}{{H`{Eb}}}}}}{{{h{AhIb}}c}Bf{{Hb{BBb}{{H`{Eb}}}}}}{{{h{Ah{ADj{ce}}}}g}Bf{}B@b{{Hb{{h{Ahc}}}{{H`{Eb}}}}}}{{{h{{ADj{c}}}}e}DjHlHj}{{{h{Ib}}c}DjHj}887{{{h{Ah{ADj{ce}}}}}Bf{}B@b}{{{h{AhIb}}}Bf}{{{h{AO`}}}{{Dd{{h{AOb}}}}}}{{{h{Ah{ADj{ce}}}}}{{h{Ah{Ab{{BDl{c}}}}}}}{}B@b}{{{h{Ah{ADj{ce}}}}gi}{{BDn{e}}}{}B@b{{Hd{Hf}}}{{Eh{}{{Ef{c}}}}}}{{{h{Ah{ADj{ce}}}}}{{Fb{{h{Ah{Ab{c}}}}{h{Ah{Ab{{BDl{c}}}}}}}}}{}B@b}{{{h{Ah{ADj{ce}}}}Hf}{{ADj{ce}}}{}{AlB@b}}{{{h{AhIb}}Hf}Ib}{{{h{Ib}}{h{Fl}}}{{Dd{{h{Fl}}}}}}0{{{h{Ah{ADj{ce}}}}Hf}c{}B@b}{{{h{c}}}e{}{}}000{{{h{Ib}}}{{Dj{{BEb{BE`}}BBf}}}}{{{h{{ADj{A`}}}}}{{Dj{HnBEd}}}}{{{h{Ib}}}{{Dj{HnBEd}}}}{{{h{c}}}Ib{}}00{{{h{Ah{ADj{ce}}}}Hf}Bf{}B@b}{{{h{AhIb}}Hf}Bf}{c{{Dj{e}}}{}{}}0000000{{{h{Ah{ADj{ce}}}}Hf}{{Dj{BfBEf}}}{}B@b}{{{h{AhIb}}Hf}{{Dj{BfBEf}}}}10{Hf{{Dj{{ADj{c}}BEf}}}{}}{Hf{{Dj{IbBEf}}}}{{Hfc}{{Dj{{ADj{ec}}BEf}}}B@b{}}{{{h{c}}}If{}}000{ce{}{}}000{Hf{{ADj{c}}}{}}{HfIb}{{Hfc}{{ADj{ec}}}B@b{}}{{{h{Ah{ADj{A`c}}}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}B@b}{{{h{Ah{ADj{A`}}}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{Ah{ADj{A`c}}}}{h{{Ab{A`}}}}}{{Dj{BfBBf}}}B@b}{{{h{AhIb}}BBb}{{Dj{BfEl}}}}{{{h{AhIb}}{h{Fl}}}{{Dj{BfEl}}}}{{{h{Ah{ADj{A`c}}}}{h{{Ab{BEh}}}}}{{Dj{HfBBf}}}B@b}```````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BBj}}}BBj}{{{h{BBh}}}BBh}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{BBj}}{h{BBj}}}Eb}{{{h{BBh}}{h{BBh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{BBj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BBh}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{{{h{BBj}}}{{Fb{DbDb}}}}{ce{}{}}0{{{h{BBh}}}Hf}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}055``````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{BEj}}}BEj}{{{h{BEl}}}BEl}{{{h{BEn}}}BEn}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}}{{h{c}}}BFfBFh}{c{{Dj{{ADj{A`}}BEl}}}{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g}{{Dj{{ADj{A`}}BEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{c{h{e}}}{{Dj{{ADj{A`}}BEl}}}{{ACn{{Ab{A`}}}}}BFd}{{c{h{Ah{Ab{A`}}}}{h{e}}}{{Dj{HfBEn}}}{{ACn{{Ab{A`}}}}}BFd}{{c{h{Ah{ADj{A`}}}}{h{e}}}{{Dj{BfBEl}}}{{ACn{{Ab{A`}}}}}BFd}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEn}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{ADj{A`}}}}}{{Dj{BfBEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{HfHf}`{cIb{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g}IbBFfBFh{{ACn{{Ab{A`}}}}}}{{c{h{e}}}Ib{{ACn{{Ab{A`}}}}}BFd}{{c{h{Ah{Ab{A`}}}}{h{e}}}{{Dj{HfBEj}}}{{ACn{{Ab{A`}}}}}BFd}{{c{h{AhIb}}{h{e}}}Bf{{ACn{{Ab{A`}}}}}BFd}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEj}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{AhIb}}}BfBFfBFh{{ACn{{Ab{A`}}}}}}{{HfEb}{{Dd{Hf}}}}`{{{h{BEj}}{h{BEj}}}Eb}{{{h{BEl}}{h{BEl}}}Eb}{{{h{BEn}}{h{BEn}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{BEj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BEl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BEn}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}00{BElBEn}{ce{}{}}00``{{{h{BEn}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}00{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00555`````````````{{{h{BFj}}}{{h{Fl}}}}{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BFj}}}BFj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{BFj}}{h{BFj}}}Eb}{{{h{BFl}}{h{BFl}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{BFj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BFl}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{ce{}{}}0{{{h{Fl}}}{{Dj{BFjBFl}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{{{h{Fl}}}{{Dj{BFj}}}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}066`{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{BFn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}BFd}:9{{{h{{Ab{A`}}}}{h{c}}}{{BFn{c}}}BFd}7554:````````````33332222{{{h{BG`}}}BG`}{{{h{BGb}}}BGb}{{{h{BGd}}}BGd}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}}{{h{c}}}BFfBFh}{{{h{BG`}}}h}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g}{{Dj{{ADj{A`}}BEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEn}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{ADj{A`}}}}}{{Dj{BfBEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{BFh}}}Hf}{{}BGb}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g}IbBFfBFh{{ACn{{Ab{A`}}}}}}{{{h{BFf}}}Eb}{{{h{BGb}}}Eb}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEj}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{AhIb}}}BfBFfBFh{{ACn{{Ab{A`}}}}}}{{{h{BGd}}{h{BGd}}}Eb}{{{h{BGf}}{h{BGf}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{BG`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BGb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BGd}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BGf}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000`{ce{}{}}000{{{h{BFj}}BGb}BG`}?{{{h{c}}}e{}{}}00{c{{Dj{e}}}{}{}}0000000{{{h{c}}}If{}}0004444{{BGbEb}BGb}{{BGbBGd}BGb}1```````````````{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}}{{h{c}}}BFfBFh}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g}{{Dj{{ADj{A`}}BEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEn}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{ADj{A`}}}}}{{Dj{BfBEl}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g}IbBFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{Ah{Ab{A`}}}}}{{Dj{HfBEj}}}BFfBFh{{ACn{{Ab{A`}}}}}}{{{h{{BFd{}{{BF`{c}}{BFb{e}}}}}}g{h{AhIb}}}BfBFfBFh{{ACn{{Ab{A`}}}}}}`{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{BGh{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}BFdBGj}{cc{}}{ce{}{}}{{{BGh{ce}}}eBFdBGj}{{c{h{e}}}{{BGh{ec}}}BGjBFd}{{{h{Ah{BGh{ce}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfBBf}}}BFdBGj}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}5```9988{{{h{AhBGl}}{h{Fl}}}Bf}{{{h{Ah{BGn{ce}}}}}BfBFdBH`}{{{h{Ah{BGn{ce}}}}}{{Dj{eBBf}}}BFdBH`}{{{h{Ah{BGn{ce}}}}}{{Dj{BfBBf}}}BFdBH`}{{{h{Ah{BHb{ce}}}}}{{Dj{BfBBf}}}BFdBGl}{{{h{{BGn{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}BFdBH`}<<{{c{h{e}}}{{BHb{ec}}}BGlBFd}<<{{{BGn{ce}}}eBFdBH`}{{{BHb{ce}}}eBFdBGl}{{c{h{e}}}{{BGn{ec}}}BH`BFd}{{{h{c}}}{{BHb{cIb}}}BFd}<<<<;;{ce{}{}}0{{{h{Ah{BGn{ce}}}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}BFdBH`}{{{h{Ah{BHb{ce}}}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}BFdBGl}``````````````````````````````````````````````````````{{ALfALf}ALf}{{{h{ALf}}{h{ALf}}}ALf}{{{h{ALf}}ALf}ALf}{{ALf{h{ALf}}}ALf}{{{h{AhALf}}ALf}Bf}{{{h{BHd}}}{{h{{Ab{A`}}}}}}{{{h{ALf}}}{{h{A`}}}}{{{h{BHd}}}{{h{Fl}}}}{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000{{{h{BHd}}}BHf}{BHh{{BHj{BHh}}}}{{{h{BHd}}}BHl}{{{h{ALf}}}ALf}{{{h{BHd}}}BHd}{{{h{BHn}}}BHn}{{{h{BI`}}}BI`}{{{h{BIb}}}BIb}{{{h{BId}}}BId}{{{h{BIf}}}BIf}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{BHd}}{h{BHd}}}Bh}{{{h{BHn}}{h{BHn}}}Bh}{{{h{BI`}}{h{BI`}}}Bh}{{{h{BIb}}{h{BIb}}}Bh}{{{h{Fl}}}{{Dj{{Fb{BHd{ADj{A`}}}}BId}}}}{{ALf{h{ALf}}}ALf}{{ALfALf}ALf}{{{h{ALf}}{h{ALf}}}ALf}{{{h{ALf}}ALf}ALf}{{{h{AhALf}}ALf}Bf}{{BHd{h{{Ab{A`}}}}}{{Dj{IbBIf}}}}0{{{h{Ahc}}BHd{h{{Ab{A`}}}}}{{Dj{BfBIf}}}AE`}{{{h{Ahc}}BHd{h{{Ab{A`}}}}}{{Dj{BfBIh}}}BH`}10210{{BHd{h{{Ab{A`}}}}}{{Dj{HfBIj}}}}{{{h{ALf}}{h{ALf}}}Eb}{{{h{BHd}}{h{BHd}}}Eb}{{{h{BHn}}{h{BHn}}}Eb}{{{h{BI`}}{h{BI`}}}Eb}{{{h{BIb}}{h{BIb}}}Eb}{{{h{BId}}{h{BId}}}Eb}{{{h{BIf}}{h{BIf}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000000000{BIl{{BIn{BIl}}}}{{{h{ALf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BHd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BId}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BIf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BIh}}{h{AhEj}}}{{Dj{BfEl}}}}0{A@nALf}{cc{}}00000{BJ`BId}1{ElBIf}{BIjBIf}{BIjBIh}{BBfBIh}5{BBb{{Dj{ALfBJb}}}}{A`ALf}{{{h{ALf}}{h{Ahc}}}BfGb}{{{h{BHd}}{h{Ahc}}}BfGb}{{{h{BHn}}{h{Ahc}}}BfGb}{{{h{BI`}}{h{Ahc}}}BfGb}{{{h{BIb}}{h{Ahc}}}BfGb}`{ce{}{}}0000000{{{h{BHd}}}Eb}0000{{}{{`{{Gj{}{{Ef{ALf}}}}}}}}{{{h{BHd}}}Hf}{{{h{BHd}}}BJd}{{{h{BHd}}}BJf}{{ALf{h{ALf}}}ALf}{{{h{ALf}}{h{ALf}}}ALf}{{ALfALf}ALf}{{{h{ALf}}ALf}ALf}{{{h{AhALf}}ALf}Bf}{{{h{Fl}}}{{Dj{BHdBJh}}}}{{{h{Fl}}}BHd}{{{h{BHd}}{h{BHd}}}{{Dd{Bh}}}}{{{h{BHn}}{h{BHn}}}{{Dd{Bh}}}}{{{h{BI`}}{h{BI`}}}{{Dd{Bh}}}}{{{h{BIb}}{h{BIb}}}{{Dd{Bh}}}}`{{}Bf}`{{{h{BId}}}{{Dd{{h{AOb}}}}}}{{{h{BIf}}}{{Dd{{h{AOb}}}}}}{{{h{BIh}}}{{Dd{{h{AOb}}}}}}<;>=:{ALfBBb}{{{h{BHd}}}Ib}{{{h{c}}}e{}{}}000000{{{h{c}}}Ib{}}0000{ALfA`}{E`{{Dj{ALf}}}}{Db{{Dj{ALf}}}}{AEj{{Dj{ALf}}}}{BAj{{Dj{ALf}}}}{ACl{{Dj{ALf}}}}{BAn{{Dj{ALf}}}}{BAl{{Dj{ALf}}}}{BJj{{Dj{ALf}}}}{Ol{{Dj{ALf}}}}{A`{{Dj{ALf}}}}{c{{Dj{e}}}{}{}}000000000000000{{{h{c}}}If{}}0000000{ce{}{}}0000000{{BIl{h{BHd}}}{{BJl{BIlc}}}BJn}``````````````````````````{{BK`BK`}BK`}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{BKb{c}}}}}{{BKb{c}}}{AlBJn}}{{{h{BK`}}}BK`}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{}{{BKb{c}}}BJn}{{{h{{BKb{c}}}}{h{{BKb{c}}}}}Eb{EdBJn}}{{{h{BK`}}{h{BK`}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{{BKb{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnBJn}}{{{h{BK`}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00{{{h{Ah{BKb{c}}}}ALf}BfBJn}{{{h{Ah{BKb{c}}}}BHd}BfBJn}{{{h{Ah{BKb{c}}}}}BfBJn}{ce{}{}}00{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}1{{{h{AhBKd}}HfA`}A`}{{{h{AhBK`}}HfA`}A`}{{{h{BHd}}}BKf}>{{{h{AhBKf}}}{{Dd{ALf}}}}{{{h{{BKb{c}}}}}hBJn}{{}Bf}{{{h{BKf}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{c}}}e{}{}}0{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00{{{h{BKd}}Hf}A`}{{{h{BK`}}Hf}A`}>>>``````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000000000{{{h{BKh}}}BKj}{{{h{BKl}}}BKj}{{{h{BKn}}}BKn}{{{h{BL`}}}BL`}{{{h{BJ`}}}BJ`}{{{h{BLb}}}BLb}{{{h{BLd}}}BLd}{{{h{BIj}}}BIj}{{{h{BLf}}}BLf}{{{h{BLh}}}BLh}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000`{{{h{BLj}}}{{h{{Ab{A`}}}}}}{{{h{BKh}}}{{h{{Ab{A`}}}}}}{{{h{BKl}}}{{h{{Ab{A`}}}}}}`{{{h{BKn}}{h{BKn}}}Eb}{{{h{BL`}}{h{BL`}}}Eb}{{{h{BJ`}}{h{BJ`}}}Eb}{{{h{BLb}}{h{BLb}}}Eb}{{{h{BLd}}{h{BLd}}}Eb}{{{h{BIj}}{h{BIj}}}Eb}{{{h{BLf}}{h{BLf}}}Eb}{{{h{BLh}}{h{BLh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000000000{{{h{BKh}}}BLl}{{{h{BLj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BKh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BKl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BKn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BL`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BJ`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BLb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BLd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BIj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BLf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BLh}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}00000{BJ`BKn}1{BLdBKn}{BLhBKn}{BLnBKn}4{BLdBL`}{BJ`BL`}{BJhBJ`}7{BLbBJ`}8888{BIjBLf}9{{{h{BLj}}}Eb}{{{h{BKl}}}Eb}{{{h{BLj}}}BHd}{{{h{BKh}}}BHd}{{{h{BKl}}}BHd}{ce{}{}}0000000000000{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}00111{{{h{BKj}}}Hf}{{{h{BLl}}}Hf}{{{h{Fl}}}{{Dj{BLjBJ`}}}}{{{h{Fl}}}{{Dj{BKhBL`}}}}{{{h{Fl}}}{{Dj{BKlBKn}}}}0{{{h{AhBKj}}}{{Dd{A`}}}}{{{h{AhBM`}}}{{Dd{ALf}}}}{{{h{AhBLl}}}{{Dd{ALf}}}}{BLjBKh}{{{h{AhBLj}}}{{Dd{ALf}}}}{{{h{AhBKh}}}{{Dd{ALf}}}}{{{h{BKj}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BM`}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BLl}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BKn}}}{{Dd{{h{AOb}}}}}}{{{h{BL`}}}{{Dd{{h{AOb}}}}}}{{{h{BJ`}}}{{Dd{{h{AOb}}}}}}{{{h{BLb}}}{{Dd{{h{AOb}}}}}}{{{h{BLd}}}{{Dd{{h{AOb}}}}}}{{{h{BIj}}}{{Dd{{h{AOb}}}}}}{{{h{BLf}}}{{Dd{{h{AOb}}}}}}{{{h{BLh}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0000000{{{h{c}}}Ib{}}0000000{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}00{c{{Dj{e}}}{}{}}000000000000000000000000000{{{h{c}}}If{}}0000000000000{BLj{{Dj{BKhBLd}}}}{{{h{BLj}}}{{Dj{BfBLd}}}}{BKh{{Dj{BKlBKn}}}}{{{h{BKh}}}{{Dj{BfBLh}}}}{{{h{BKh}}ALf}{{Dj{BfBLn}}}}{ce{}{}}0000000000000{{{h{BLj}}}{{Dd{ALf}}}}{{{h{BKh}}}{{Dd{ALf}}}}{{{h{BKl}}}ALf}`````{{{h{c}}}{{h{e}}}{}{}}0000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000{{{BJl{ce}}}{{BMb{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{BJl{ce}}}{{BMd{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{{BJl{ce}}}}}{{BJl{ce}}}{Al{Gj{}{{Ef{ALf}}}}}{AlBJn}}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{{BJl{ce}}}}{h{{BJl{ce}}}}}Eb{Ed{Gj{}{{Ef{ALf}}}}}{EdBJn}}{{{h{c}}{h{e}}}Eb{}{}}0{{{BJl{ce}}}{{BMf{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{cc{}}0000====={c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}000>>>>{{{Dd{ALf}}c}{{BMh{c}}}{{Gj{}{{Ef{ALf}}}}}}{{{h{BHd}}{BMh{c}}}{{BMd{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{BMd{ce}}}{{BMb{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{BHd}}{BMh{c}}}{{BMf{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{c{h{BHd}}}{{BJl{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{Ah{BMh{c}}}}}{{Dd{ALf}}}{{Gj{}{{Ef{ALf}}}}}}{{{h{Ah{BMd{ce}}}}}{{Dd{BBb}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{Ah{BMb{ce}}}}}{{Dd{A`}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{Ah{BMf{ce}}}}}{{Dd{ALf}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{{BMh{c}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{ALf}}}}}}{{{h{{BMd{ce}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{{BMb{ce}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{{BMf{ce}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{c}}}e{}{}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}000{c{{Dj{e}}}{}{}}000000000{{{h{c}}}If{}}0000{ce{}{}}0000{{{BJl{ce}}ALf}{{BJl{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}```````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BJb}}}BJb}{{{h{BMj}}}BMj}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{BJb}}{h{BJb}}}Eb}{{{h{BMj}}{h{BMj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{BJb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BMj}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{ANlBMj}{BMlBMj}>>{{{h{BJb}}}{{Dd{{h{AOb}}}}}}{{{h{BMj}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0{ce{}{}}0``````````````{{{h{c}}}{{h{e}}}{}{}}0000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000{{{h{BJh}}}BJh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{BJh}}{h{BJh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{BJh}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}000088888{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}0009999{{{h{BHf}}}Hf}{{{h{BHl}}}Hf}{{{h{BJd}}}Hf}{{{h{BJf}}}Hf}{{{h{AhBHf}}}{{Dd{A`}}}}{{{h{AhBHl}}}{{Dd{BBb}}}}{{{h{AhBJd}}}{{Dd{A`}}}}{{{h{AhBJf}}}{{Dd{BBb}}}}{{{h{AhBHf}}}Dd}{{{h{AhBHl}}}Dd}{{{h{AhBJd}}}Dd}{{{h{AhBJf}}}Dd}{{{h{BHf}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BHl}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BJd}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BJf}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{BJh}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}000{c{{Dj{e}}}{}{}}000000000{{{h{c}}}If{}}0000{ce{}{}}0000`````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{BHh{{BHj{BHh}}}}{{{h{{BHj{c}}}}}{{BHj{c}}}{Al{Gj{}{{Ef{A`}}}}}}{{{h{{BIn{c}}}}}{{BIn{c}}}{Al{Gj{}{{Ef{ALf}}}}}}{{{h{{BMn{ce}}}}}{{BMn{ce}}}{Al{Gj{}{{Ef{ALf}}}}}{AlBJn}}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{{BHj{c}}}}{h{{BHj{c}}}}}Eb{Ed{Gj{}{{Ef{A`}}}}}}{{{h{{BIn{c}}}}{h{{BIn{c}}}}}Eb{Ed{Gj{}{{Ef{ALf}}}}}}{{{h{{BMn{ce}}}}{h{{BMn{ce}}}}}Eb{Ed{Gj{}{{Ef{ALf}}}}}{EdBJn}}{{{h{c}}{h{e}}}Eb{}{}}00000{BIl{{BIn{BIl}}}}{cc{}}00==={c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}00>>>{{{h{{BHj{c}}}}}Hf{{Gj{}{{Ef{A`}}}}BN`}}{{{h{{BIn{c}}}}}Hf{{Gj{}{{Ef{ALf}}}}BN`}}{c{{BMn{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{BHdc}{{BMn{ce}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{Ah{BHj{c}}}}}{{Dd{ALf}}}{{Gj{}{{Ef{A`}}}}}}{{{h{Ah{BIn{c}}}}}{{Dd{A`}}}{{Gj{}{{Ef{ALf}}}}}}{{{h{Ah{BMn{ce}}}}}{{Dd{ALf}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{{BHj{c}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{A`}}}}}}{{{h{{BIn{c}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{ALf}}}}}}{{{h{{BMn{ce}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{ALf}}}}}BJn}{{{h{c}}}e{}{}}00{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}00{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00{ce{}{}}00{{BIl{h{BHd}}}{{BJl{BIlc}}}BJn}````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{BNb}}}BNb}{{{h{BLn}}}BLn}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{BNb}}{h{BNb}}}Eb}{{{h{BLn}}{h{BLn}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{BNb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BLn}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0<<{{HfALf}Eb}{ALfEb}{{{h{BNb}}}{{Dd{{h{AOb}}}}}}{{{h{BLn}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0{{HfALf}{{Dj{BfBLn}}}}{ALf{{Dj{BfBNb}}}}{ce{}{}}0````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{ANn}}}ANn}{{{h{BNd}}}BNd}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Fl}}}{{Dj{{Fb{BHdALf{ADj{A`}}}}ANn}}}}{{BHdALf{h{{Ab{A`}}}}}{{Dj{IbBNd}}}}{{{h{Ahc}}BHdALf{h{{Ab{A`}}}}}{{Dj{BfEl}}}AE`}{{{h{Ahc}}BHdALf{h{{Ab{A`}}}}}{{Dj{BfBBf}}}BH`}1010{{BHd{h{{Ab{A`}}}}}{{Dj{IbBNd}}}}0{{BHdALf{h{{Ab{A`}}}}}{{Dj{HfBLf}}}}{{{h{ANn}}{h{ANn}}}Eb}{{{h{BNd}}{h{BNd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{ANn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BNd}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{BKnANn}{ElBNd}{BNbBNd}3{BLfBNd}{BLnBNd}{ce{}{}}0{{{h{ANn}}}{{Dd{{h{AOb}}}}}}{{{h{BNd}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}066`````````{{{h{BA`}}}{{h{{Ad{A`}}}}}}{{{h{AhBA`}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhBA`}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhBA`}}}A`}{{{h{BA`}}}A`}{{{h{B@l}}}{{h{Ch}}}}{{{h{BA`}}}{{h{{Ab{A`}}}}}}6``{{{h{c}}}{{h{e}}}{}{}}01700000{{{h{Ahc}}}{{h{Ahe}}}{}{}}06700000{{{h{Fh}}E`}{{Fb{E`E`}}}}{{{h{BNf}}}BNf}{{{h{B@l}}}B@l}{{{h{BA`}}}BA`}{{{h{BNh}}}BNh}{{{h{BNj}}}BNj}{{{h{BNl}}}BNl}{{{h{BNn}}}BNn}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{B@l}}{h{B@l}}}Bh}{{{h{BA`}}{h{BA`}}}Bh}{{{h{BNh}}{h{BNh}}}Bh}{{{h{BNj}}{h{BNj}}}Bh}{{{h{BNn}}{h{BNn}}}Bh}{{{h{Ahc}}}{{Dj{B@lABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{BA`ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{BNhABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{BNjABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{BNnABl}}}{ABnAC`}}20{{{h{B@l}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{BA`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{BNh}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{BNj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{BNn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{}BA`}{c{{Dj{BA`}}}Dl}{{{h{BNf}}{h{BNf}}}Eb}{{{h{B@l}}{h{B@l}}}Eb}{{{h{BA`}}{h{BA`}}}Eb}{{{h{BNh}}{h{BNh}}}Eb}{{{h{BNj}}{h{BNj}}}Eb}{{{h{BNl}}{h{BNl}}}Eb}{{{h{BNn}}{h{BNn}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000000000{{{h{BNf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{B@l}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BA`}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{BNh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BNj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BNl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BNn}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}{ANlBNf}11{{{h{{Ad{A`}}}}}BA`}{{{Ad{A`}}}BA`}3333{{{h{Nl}}E`Db{h{{Ab{Hf}}}}}{{Dj{BNhBNf}}}}{{{h{Fl}}}{{Dj{BA`BO`}}}}{{{h{BNj}}{h{Nl}}}{{Dj{BNnBNl}}}}{{{h{Fl}}}{{Dj{BA`}}}}{{{h{B@l}}{h{Ahc}}}BfGb}{{{h{BA`}}{h{Ahc}}}BfGb}{{{h{BNh}}{h{Ahc}}}BfGb}{{{h{BNj}}{h{Ahc}}}BfGb}{{{h{BNn}}{h{Ahc}}}BfGb}``{{{h{BA`}}c}h{}}`{ce{}{}}000000{{{h{BA`}}}Eb}{{{h{BA`}}}Hf}`{{{h{B@l}}{h{B@l}}}{{Dd{Bh}}}}{{{h{BA`}}{h{BA`}}}{{Dd{Bh}}}}{{{h{BNh}}{h{BNh}}}{{Dd{Bh}}}}{{{h{BNj}}{h{BNj}}}{{Dd{Bh}}}}{{{h{BNn}}{h{BNn}}}{{Dd{Bh}}}}`{{{h{BA`}}c}DjHj}`{{{h{BNf}}}{{Dd{{h{AOb}}}}}}{{{h{BNl}}}{{Dd{{h{AOb}}}}}}{BA`{{Ad{A`}}}}{{{h{c}}}e{}{}}000000{{{h{c}}}Ib{}}00`{c{{Dj{e}}}{}{}}00{{{h{{Ab{A`}}}}}{{Dj{BA`}}}}11111111111`{{{h{c}}}If{}}000000{ce{}{}}000000{{{h{c}}{Fb{E`E`}}}BA`{{ACn{{Ab{A`}}}}}}````````````{{{h{Ah{BOb{c}}}}{h{{Ab{A`}}}}}BfACd}{{{h{Ah{BOd{c}}}}{h{{Ab{A`}}}}}BfACd}{{{h{Ah{BOb{c}}}}g}{{Dj{BfBOf}}}ACd{{Df{M`}}}{{AFb{{h{AA`}}}{{H`{{Dj{eBOf}}}}}}}}{{{h{Ah{BOb{c}}}}}BfACd}{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000{{{h{BOh}}}BOh}{{{h{c}}{h{Ahe}}}Bf{}{}}`{{{h{BOh}}{h{BOh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{BOh}}{h{K`}}}K`}{{{h{Ah{BOb{c}}}}}{{Dj{HfACb}}}ACd}{{{h{Ah{BOd{c}}}}}{{Dj{HfACb}}}ACd}{{{h{Ah{BOj{c}}}}}{{Dj{HfACb}}}ACd}{{{h{BOf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BOh}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000000{ACbBOf}{ANlBOf}2{ce{}{}}0000000{{{h{BOl}}{h{Ahc}}e}{{Dj{EbBOf}}}{ABnAC`}Gj}{{{h{BOn}}{h{Ahc}}e}{{Dj{EbBOf}}}{ABnAC`}Gj}{{{h{BOh}}{h{Cj}}c}{{Dj{EbBOf}}}Gj}210{{{h{Ahc}}{h{Nl}}}{{BOb{c}}}ACd}{{{h{Cj}}}BOl}{{E`E`E`A`}BOn}{{{h{Ahc}}E`E`E`A`}{{BOd{c}}}ACd}{{{h{Ahc}}}{{C@`{c}}}{ABnAC`}}{{{h{Ahc}}}{{BOj{c}}}ACd}{{{h{{Ab{A`}}}}}BOh}{{{h{Nl}}e}{{Dj{BOhBOf}}}{{Df{M`}}}{{AFb{{h{AA`}}}{{H`{{Dj{cBOf}}}}}}}}{{{h{Ah{C@`{c}}}}A`}{{Dj{E`ACb}}}{ABnAC`}}{{{h{BOf}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000000000000000{{{h{c}}}If{}}0000000{ce{}{}}0000000{{{h{Ah{BOj{c}}}}E`A`}{{Dj{HfACb}}}ACd}`````````````````````````````{{{h{C@b}}}{{h{{Ad{A`}}}}}}{{{h{C@d}}}{{h{{Ad{A`}}}}}}{{{h{AhC@b}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhC@b}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhC@d}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhC@d}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhC@b}}}A`}{{{h{AhC@d}}}A`}{{{h{C@b}}}A`}{{{h{C@d}}}A`}{{{h{C@b}}}{{h{{Ab{A`}}}}}}:9{{{h{C@d}}}{{h{{Ab{A`}}}}}}{{{h{BC`}}}{{h{{Ab{BC`}}}}}}{{{h{BBn}}}{{h{{Ab{BC`}}}}}}{{{h{c}}}{{h{e}}}{}{}}>403=0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}=<0:0;000000{{}Eb}0``````{{{h{BBn}}BC`}BBn}``````{{{h{BBn}}BC`}C@f}{{{h{AEd}}{h{{J`{c}}}}BC`}{{Dj{AEdBD`}}}Jh}{{{h{AEd}}BC`}{{Dj{{Fb{AJjC@b}}BD`}}}}{{{h{C@b}}}C@b}{{{h{C@d}}}C@d}{{{h{C@h}}}C@h}{{{h{AEd}}}AEd}{{{h{BC`}}}BC`}{{{h{BBn}}}BBn}{{{h{BD`}}}BD`}{{{h{C@j}}}C@j}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000{{{h{C@b}}{h{C@b}}}Bh}{{{h{C@d}}{h{C@d}}}Bh}{{{h{AEd}}{h{AEd}}}Bh}{{{h{BC`}}{h{BC`}}}Bh}{{{h{BBn}}{h{BBn}}}Bh}{{{h{{Ab{A`}}}}}{{Dj{C@hBD`}}}}{{{h{{Ab{A`}}}}}{{Dj{AEdBD`}}}}{{}C@d}{{}BBn}``````{{{h{C@h}}{h{{J`{c}}}}{h{e}}}{{Dj{C@hBD`}}}AGb{{ACn{{Ab{BC`}}}}}}{{{h{AEd}}{h{{J`{c}}}}{h{e}}}{{Dj{AEdBD`}}}Jh{{ACn{{Ab{BC`}}}}}}{c{{Dj{C@b}}}Dl}{c{{Dj{C@d}}}Dl}{c{{Dj{C@h}}}Dl}{c{{Dj{AEd}}}Dl}{c{{Dj{BC`}}}Dl}{c{{Dj{BBn}}}Dl}{{{h{C@h}}}{{Ad{A`}}}}{{{h{AEd}}}{{Ad{A`}}}}{{{h{C@b}}{h{C@b}}}Eb}{{{h{C@d}}{h{C@d}}}Eb}{{{h{C@h}}{h{C@h}}}Eb}{{{h{AEd}}{h{AEd}}}Eb}{{{h{BC`}}{h{BC`}}}Eb}{{{h{BBn}}{h{BBn}}}Eb}{{{h{BD`}}{h{BD`}}}Eb}{{{h{C@j}}{h{C@j}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000000000{{{h{BBn}}c}BBn{{ACn{{Ab{BC`}}}}}}{{{h{C@h}}{h{{J`{c}}}}}C@dAGb}{{{h{AEd}}}C@d}{{{h{C@b}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{C@d}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{C@h}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AEd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BC`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BBn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BD`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{C@j}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{{{h{{Ad{A`}}}}}C@b}1{{{Ad{A`}}}C@b}{{{h{{Ad{A`}}}}}C@d}3{{{Ad{A`}}}C@d}444{DbBC`}{{{ADj{BC`}}}BBn}{{{h{{Ab{BC`}}}}}BBn}7{ANlBD`}{AO`BD`}{JfBD`}{C@jBD`};;{Db{{Dj{BC`BD`}}}}{{{h{Fl}}}{{Dj{C@bBO`}}}}{{{h{Fl}}}{{Dj{C@dBO`}}}}{cBBn{{Eh{}{{Ef{BC`}}}}}}3{{{h{{J`{c}}}}{h{C@h}}}AEdAGb}{{{h{Fl}}}{{Dj{C@b}}}}{{{h{Fl}}}{{Dj{C@d}}}}{{{h{Fl}}}{{Dj{C@hBD`}}}}{{{h{Fl}}}{{Dj{AEdBD`}}}}{{{h{Fl}}}{{Dj{BC`BD`}}}}{{{h{Fl}}}{{Dj{BBnBD`}}}}{{{h{C@h}}C@l{h{{J`{c}}}}}{{Dj{{Dd{AAj}}}}}AGb}{{{h{BBn}}}C@f}{{{h{C@b}}{h{Ahc}}}BfGb}{{{h{C@d}}{h{Ahc}}}BfGb}{{{h{AEd}}{h{Ahc}}}BfGb}{{{h{BC`}}{h{Ahc}}}BfGb}{{{h{BBn}}{h{Ahc}}}BfGb}{{{h{C@h}}{h{{J`{c}}}}}KbAGb}{{{h{AEd}}}Kb}{BC`{{Dj{BC`BD`}}}}{{{h{C@b}}c}h{}}{{{h{C@d}}c}h{}}{{{h{BBn}}c}h{}}{ce{}{}}00000000{{BBnBC`}BBn}{C@n{{Dj{BBnBD`}}}}{c{{Dj{BBnBD`}}}{}}{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}4{{{h{BBn}}}}{{{h{C@j}}}Hf}{{{h{C@b}}}Eb}{{{h{C@d}}}Eb}{{{h{BBn}}}Eb}{{{h{BC`}}}Eb}10{{{h{C@b}}}Hf}{{{h{C@d}}}Hf}{{{h{BBn}}}Hf}{{}BBn}``````{{c{h{{Ab{A`}}}}}{{Dj{C@hBD`}}}{{AH`{ABb}}}}{{{h{AhC@f}}}Dd}{{{h{BBn}}}C@f}``````{{{h{C@b}}{h{C@b}}}{{Dd{Bh}}}}{{{h{C@d}}{h{C@d}}}{{Dd{Bh}}}}{{{h{AEd}}{h{AEd}}}{{Dd{Bh}}}}{{{h{BC`}}{h{BC`}}}{{Dd{Bh}}}}{{{h{BBn}}{h{BBn}}}{{Dd{Bh}}}}``````{{{h{C@b}}c}DjHj}{{{h{C@d}}c}DjHj}{{{h{C@h}}c}DjHj}{{{h{AEd}}c}DjHj}{{{h{BC`}}c}DjHj}{{{h{BBn}}c}DjHj}{{{h{BD`}}}{{Dd{{h{AOb}}}}}}{{{h{BBn}}BC`}C@f}{C@b{{Ad{A`}}}}{C@d{{Ad{A`}}}}{{C@h{h{{J`{c}}}}}AFnAGb}{{{h{c}}}e{}{}}0000000{C@hAAj}{AEdAAh}{{{h{c}}}Ib{}}0000000{{{h{BBn}}}{{ADj{Db}}}}{AEdIn}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}{{{h{{Ab{A`}}}}}{{Dj{C@b}}}}11{{{h{{Ab{A`}}}}}{{Dj{C@d}}}}222222222222222{{{h{c}}}If{}}00000000{ce{}{}}00000000{{{h{C@h}}{h{{J`{c}}}}}C@dAGb}{{{h{AEd}}{h{{J`{c}}}}}C@dAGb}`````````````````````````````````{{{h{Fh}}}Cj}{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{Fh}}}Fh}{{{h{CA`}}}CA`}{{{h{Nn}}}Nn}{{{h{CAb}}}CAb}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{Fh}}{h{Fh}}}Bh}{{{h{CA`}}{h{CA`}}}Bh}{{{h{Ahc}}}{{Dj{FhABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{CA`ABl}}}{ABnAC`}}1{{{h{Fh}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{CA`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{}CA`}{c{{Dj{Fh}}}Dl}{c{{Dj{CA`}}}Dl}{{{h{Fh}}c}ACl{{ACn{Nd}}}}{{{h{Fh}}}AD`}{{{h{Fh}}{h{Fh}}}Eb}{{{h{CA`}}{h{CA`}}}Eb}{{{h{Nn}}{h{Nn}}}Eb}{{{h{CAb}}{h{CAb}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000{{{h{Fh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{CA`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Nn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CAb}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}00{ANlNn}1{ANlCAb}{BAlCA`}{{{h{Fh}}{h{Ahc}}}BfGb}{{{h{CA`}}{h{Ahc}}}BfGb}`{ce{}{}}000{{{h{CA`}}A`}Eb}``{{{h{Fh}}{h{Fh}}}{{Dd{Bh}}}}{{{h{CA`}}{h{CA`}}}{{Dd{Bh}}}}`{{{h{Fh}}c}DjHj}{{{h{CA`}}c}DjHj}{{{h{Nn}}}{{Dd{{h{AOb}}}}}}{{{h{CAb}}}{{Dd{{h{AOb}}}}}}{{{h{Fh}}}ABd}`{CA`BAl}{{{h{c}}}e{}{}}000{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}0000000`{{{h{c}}}If{}}000{{{h{Fh}}ABd}{{Dj{CjCAb}}}}`>>>>{{{h{Fh}}}Il}````````````````````{{{h{Od}}}{{h{{Ad{A`}}}}}}{{{h{AhOd}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhOd}}}{{h{Ah{Ad{A`}}}}}}{{{h{AhOd}}}A`}{{{h{Od}}}A`}4{{{h{Od}}}{{h{{Ab{A`}}}}}}0{{{h{c}}}{{h{e}}}{}{}}654{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{Od}}}Od}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Od}}{h{Od}}}Bh}{c{{Dj{Od}}}Dl}{{{h{Od}}{h{Od}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{Od}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{{Ad{A`}}}}}Od}{{{Ad{A`}}}Od}{cc{}}{CjOd}{{{h{Fl}}}{{Dj{OdBO`}}}}{{{h{Fl}}}{{Dj{Od}}}}{cNl{{ACn{Nd}}}}{{{h{Od}}{h{Ahc}}}BfGb}{{{h{Od}}c}h{}}{ce{}{}}{{{h{Od}}}Eb}{{{h{Od}}}Hf}{{{h{Od}}{h{Od}}}{{Dd{Bh}}}}{{{h{Od}}c}DjHj}{Od{{Ad{A`}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{{{h{{Ab{A`}}}}}{{Dj{Od}}}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}{cOd{{ACn{Nd}}}}{CdOd}<```````````````````{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{c}}Of}Eb{}}{{{h{Of}}Of}Eb}{{{h{c}}Oj}Eb{}}{{{h{AJb}}}AJb}{{{h{CAd}}}CAd}{{{h{AJd}}}AJd}{{{h{CAf}}}CAf}{{{h{CAh}}}CAh}{{{h{Of}}}Of}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{AJb}}{h{AJb}}}Bh}{{{h{AJd}}{h{AJd}}}Bh}{{{h{Ahc}}}{{Dj{OfABl}}}{ABnAC`}}{{{h{Of}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{c{{Dj{AJb}}}Dl}{c{{Dj{AJd}}}Dl}{c{{Dj{Of}}}Dl}{{{h{AJb}}{h{AJb}}}Eb}{{{h{CAd}}{h{CAd}}}Eb}{{{h{AJd}}{h{AJd}}}Eb}{{{h{CAf}}{h{CAf}}}Eb}{{{h{CAh}}{h{CAh}}}Eb}{{{h{Of}}{h{Of}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000000000{{{h{AJb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CAd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AJd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CAf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CAh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Of}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{CAjCAd}11{CAjCAf}2{AJdOf}{AJbOf}{CAlOf}5{Db{{Dj{AJbCAh}}}}{Db{{Dj{AJdCAh}}}}{DbOf}{Db{{Dj{OfCAh}}}}{{{h{Fl}}}{{Dj{AJbCAd}}}}{{{h{Fl}}}{{Dj{AJdCAf}}}}{{{h{Fl}}}{{Dj{OfAFl}}}}{{{h{Fl}}}{{Dj{AJb}}}}{{{h{Fl}}}{{Dj{AJd}}}}{{{h{Fl}}}{{Dj{Of}}}}6{{{h{Fl}}}{{Dj{OfAHl}}}}{{{h{AJb}}{h{Ahc}}}BfGb}{{{h{AJd}}{h{Ahc}}}BfGb}{{{h{Of}}{h{Ahc}}}BfGb}{ce{}{}}00000{{{h{Of}}}Eb}0{{{h{Of}}Of}Eb}0{{{h{Of}}AJbAJd}Eb}{{{h{AJb}}{h{AJb}}}{{Dd{Bh}}}}{{{h{AJd}}{h{AJd}}}{{Dd{Bh}}}}{{{h{Of}}{h{Of}}}{{Dd{Bh}}}}{{{h{c}}{h{e}}}Eb{}{}}{{{h{c}}h}Eb{}}0{{{h{c}}{h{Mf}}}{{Dd{AAf}}}{}}0{{{h{c}}{h{{Fb{MfLj}}}}}{{Dd{{Fb{InHf}}}}}{}}{{{h{c}}{h{Mf}}}{{Dd{In}}}{}}33{{{h{c}}}{{Dd{{h{{AKd{AKb{Fb{ClAGh}}}}}}}}}{}}{{{h{c}}{h{e}}}{{Dd{Hf}}}{}{}}{{{h{c}}{h{e}}{h{Lj}}}{{Dd{Hf}}}{}{}}{{{h{AJb}}c}DjHj}{{{h{AJd}}c}DjHj}{{{h{Of}}c}DjHj}{{{h{CAd}}}{{Dd{{h{AOb}}}}}}{{{h{CAf}}}{{Dd{{h{AOb}}}}}}{{{h{CAh}}}{{Dd{{h{AOb}}}}}}{AJbDb}{AJdDb}{OfDb}{{{h{c}}}e{}{}}00000{{{h{c}}}Ib{}}00000{Ib{{Dj{AJb}}}}{{{h{Fl}}}{{Dj{AJb}}}}{{{AJ`{Fl}}}{{Dj{AJb}}}}{c{{Dj{e}}}{}{}}0{Ib{{Dj{AJd}}}}{{{AJ`{Fl}}}{{Dj{AJd}}}}2{{{h{Fl}}}{{Dj{AJd}}}}33{{{h{Fl}}}{{Dj{Of}}}}4{Ib{{Dj{Of}}}}{{{AJ`{Fl}}}{{Dj{Of}}}}666666{{{h{c}}}If{}}00000{ce{}{}}00000`````````````````{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{c}}Of}Eb{}}{{{h{Oj}}Oj}Eb}{{{h{c}}Oj}Eb{}}{{{h{CAn}}}CAn}{{{h{CB`}}}CB`}{{{h{AGj}}}AGj}{{{h{Oj}}}Oj}{{{h{CBb}}}CBb}{{{h{CBd}}}CBd}{{{h{CBf}}}CBf}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{CAn}}{h{CAn}}}Bh}{{{h{CB`}}{h{CB`}}}Bh}{{}CAn}{{}CB`}{c{{Dj{CAn}}}Dl}{c{{Dj{CB`}}}Dl}{c{{Dj{Oj}}}Dl}{{{h{CBb}}}Db}{{{h{CAn}}{h{CAn}}}Eb}{{{h{CB`}}{h{CB`}}}Eb}{{{h{AGj}}{h{AGj}}}Eb}{{{h{Oj}}{h{Oj}}}Eb}{{{h{CBb}}{h{CBb}}}Eb}{{{h{CBd}}{h{CBd}}}Eb}{{{h{CBf}}{h{CBf}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000000000{{{h{CAn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CB`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AGj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Oj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CBb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CBd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CBf}}{h{AhEj}}}{{Dj{BfEl}}}}0{AEjCAn}{cc{}}00{CAnOj}{AEhOj}{CB`Oj}3333{AEjCB`}{AEjOj}{Db{{Dj{OjCBb}}}}71{Db{{Dj{CB`AGj}}}}{Db{{Dj{OjAGj}}}}10{Oh{{Dj{OjCBb}}}}{{{h{Fl}}}{{Dj{CAn}}}}{{{h{Fl}}}{{Dj{CB`}}}}{{{h{CAn}}{h{Ahc}}}BfGb}{{{h{CB`}}{h{Ahc}}}BfGb}{{{h{Oj}}{h{Ahc}}}BfGb}``{ce{}{}}000000{{{h{Oj}}}Eb}0{{{h{Oj}}Oj}Eb}{{{h{Oj}}Oh}Eb}1{{{h{Oj}}CAnCB`}Eb}{{{h{Oj}}CAn}{{Dj{EbCBd}}}}{{{h{Oj}}CB`}{{Dj{EbCBf}}}}{DbAGj}{{{h{CAn}}{h{CAn}}}{{Dd{Bh}}}}{{{h{CB`}}{h{CB`}}}{{Dd{Bh}}}}{{{h{Oj}}{h{Oj}}}{{Dd{Bh}}}}{{{h{c}}{h{e}}}Eb{}{}}{{{h{c}}h}Eb{}}0{{{h{c}}{h{Mf}}}{{Dd{AAf}}}{}}0{{{h{c}}{h{{Fb{MfLj}}}}}{{Dd{{Fb{InHf}}}}}{}}{{{h{c}}{h{Mf}}}{{Dd{In}}}{}}33{{{h{c}}}{{Dd{{h{{AKd{AKb{Fb{ClAGh}}}}}}}}}{}}{{{h{c}}{h{e}}}{{Dd{Hf}}}{}{}}{{{h{c}}{h{e}}{h{Lj}}}{{Dd{Hf}}}{}{}}{{{h{CAn}}c}DjHj}{{{h{CB`}}c}DjHj}{{{h{Oj}}c}DjHj}``{{{h{CAn}}}Db}{{{h{CB`}}}Db}{{{h{Oj}}}Db}{{{h{c}}}e{}{}}000000{{{h{Oj}}}Oh}{{{h{c}}}Ib{}}000000{{{AJ`{Fl}}}{{Dj{CAn}}}}{Ib{{Dj{CAn}}}}{{{h{Fl}}}{{Dj{CAn}}}}{c{{Dj{e}}}{}{}}{{{AJ`{Fl}}}{{Dj{CB`}}}}{{{h{Fl}}}{{Dj{CB`}}}}2{Ib{{Dj{CB`}}}}3{Oh{{Dj{OjCBb}}}}44444444444{{{h{c}}}If{}}000000{CAnAEj}{CB`AEj}{ce{}{}}000000``````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{A@b}}}A@b}{{{h{A@d}}}A@d}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{A@b}}{h{A@b}}}Bh}{{{h{A@b}}{h{A@b}}}Eb}{{{h{A@d}}{h{A@d}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{A@b}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{A@d}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}0{{{h{A@b}}{h{Ahc}}}BfGb}=={{{h{A@b}}{h{A@b}}}{{Dd{Bh}}}}{{{h{c}}}e{}{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0{ce{}{}}0`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{h{O`}}}{{h{{Ab{A`}}}}}}{{{h{Nb}}}{{h{{Ab{A`}}}}}}{{{h{AhNb}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhNb}}}{{h{AhNb}}}}{{{h{AhBCh}}}{{h{AhNb}}}}20{{{h{BCh}}}{{h{Nb}}}}{{{h{Nb}}}{{h{Nb}}}}51{{{h{O`}}}{{h{M`}}}}{{{h{AIn}}}{{h{M`}}}}{{{h{AIl}}}{{h{M`}}}}{{{h{c}}}{{h{e}}}{}{}}000000500{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000700{{{h{BCh}}}Hf}{{{h{AhBCh}}}Bf}{{{h{O`}}}O`}{{{h{ADf}}}ADf}{{{h{AIn}}}AIn}{{{h{AIl}}}AIl}{{{h{BCh}}}BCh}{{{h{CBh}}}CBh}{{{h{CBj}}}CBj}{{{h{c}}{h{Ahe}}}Bf{}{}}000000{{{h{Nb}}{h{Nb}}}Bh}{{{h{BCh}}{h{BCh}}}Bh}{{}O`}{{}BCh}{{{h{BCh}}}h}{{{h{AhBCh}}}{{h{Ah}}}}{{}{{h{Nb}}}}{{{h{O`}}{h{O`}}}Eb}{{{h{ADf}}{h{ADf}}}Eb}{{{h{Nb}}{h{Nb}}}Eb}{{{h{BCh}}{h{BCh}}}Eb}{{{h{CBh}}{h{CBh}}}Eb}{{{h{CBj}}{h{CBj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000000000{{{h{AhBCh}}{h{{Ab{A`}}}}}{{Dj{BfCBh}}}}{{{h{O`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ADf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AIn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AIl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Nb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BCh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{CBh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CBj}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{{{ADj{A`}}}O`}111{{{h{{Ad{A`}}}}}{{h{Nb}}}}00{{{h{Ah{Ad{A`}}}}}{{h{AhNb}}}}110011001010011111101101001011100010110101000111000101011001101110000010001111000110001110001110001000110100010101011010110110001101001100100110010101{{{h{{Ad{A`}}}}}BCh}{{{Ad{A`}}}BCh}01111010111000110{KjBCh}22222211121121122122{KlBCh}22222233232223222{L`BCh}4433333433443333334333343344443444444444344{LbBCh}5455555454454445945545454545555445544455554445454544544499{CBlCBj}{ANlCBj}{{{h{Nb}}{h{Ahc}}}BfGb}{{{h{BCh}}{h{Ahc}}}BfGb}{{{h{Nb}}AHn}h}{{{h{Nb}}{AIh{Hf}}}h}{{{h{Nb}}{AIf{Hf}}}h}{{{h{Nb}}{Fb{{AI`{Hf}}{AI`{Hf}}}}}h}{{{h{Nb}}{AIb{Hf}}}h}{{{h{Nb}}{AId{Hf}}}h}{{{h{Nb}}{AIj{Hf}}}h}{{{h{Nb}}Hf}h}{{{h{CBn}}}Hf}{{{h{CBh}}}Hf}{ce{}{}}0000000{O`{{ADj{A`}}}}{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}00222{O`Cl}{{{h{O`}}}Eb}{{{h{Nb}}}Eb}{{{h{BCh}}}Eb}{{{h{O`}}}Hf}{{{h{Nb}}}Hf}{{{h{BCh}}}Hf}{{}O`}{{}BCh}{{{h{AhOb}}}Dd}{{{h{AhAIn}}}{{Dd{{Dj{ADfCBj}}}}}}{{{h{AhAIl}}}Dd}2{{{h{AhOb}}Hf}Dd}{{{h{AhAIl}}Hf}Dd}1{{{h{ADf}}}{{Dd{A@`}}}}{{{h{Nb}}{h{Nb}}}{{Dd{Bh}}}}{{{h{BCh}}{h{BCh}}}{{Dd{Bh}}}}{{{h{AhBCh}}}{{Dd{A`}}}}{{{h{AhBCh}}A`}{{Dj{BfCBh}}}}{{{h{ADf}}}{{Dd{{h{Nb}}}}}}{{O`Ol}O`}{{O`{h{AAf}}}O`}{{O`Of}O`}{{O`A@`}O`}{{O`Oh}O`}{{O`c}O`{{ACn{Nb}}}}{O`O`}{{O`{h{In}}}O`}{{{h{{Ab{A`}}}}}Eb}{{{h{{Ab{A`}}}}}{{Dj{OlCBj}}}}0{{{h{AhBCh}}Hf}A`}{{{h{AhBCh}}Hf}Bf}{{{h{ADf}}}{{Dd{Ol}}}}{{{h{Ob}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{AIn}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{AIl}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{CBh}}}{{Dd{{h{AOb}}}}}}{{{h{CBj}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}000{{{h{Nb}}}}111{{{h{c}}}Ib{}}00{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}00:{c{{Dj{e}}}{}{}}0000{{{h{Ah{Ab{A`}}}}}{{Dj{{h{AhNb}}}}}}{{{h{{Ab{A`}}}}}{{Dj{{h{Nb}}}}}}{{{ADj{A`}}}{{Dj{BCh}}}}33333333333{{{h{c}}}If{}}00000000{ce{}{}}0000000{HfBCh}``{{{h{Ah{Ad{A`}}}}Ol}Hf}``````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{AJh}}}AJh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{AJh}}{h{AJh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AJh}}{h{AhEj}}}{{Dj{BfEl}}}}0{ANlAJh}{cc{}};{{{h{AJh}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}{ce{}{}}`````````````````````````>>>==={{{h{CC`}}}CC`}{{{h{CCb}}}CCb}{{{h{ANj}}}ANj}>>>{{{h{CC`}}{h{CC`}}}Eb}{{{h{CCb}}{h{CCb}}}Eb}{{{h{ANj}}{h{ANj}}}Eb}??????{{{h{CC`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CCb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ANj}}{h{AhEj}}}{{Dj{BfEl}}}}0{CCdCC`}{ANlCC`}{ANjCC`}{cc{}}{ANlCCb}{ANjCCb}22???{{{h{ANj}}}A`}{{{h{CC`}}}{{Dd{{h{AOb}}}}}}{{{h{CCb}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}00{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00{ce{}{}}00`````````````````````````{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{CCf}}}CCf}{{{h{AM`}}}AM`}{{{h{AMb}}}AMb}{{{h{CCh}}}CCh}{{{h{CCj}}}CCj}{{{h{CCl}}}CCl}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{CCj}}{h{CCj}}}Bh}{{{h{Ahc}}}{{Dj{CCjABl}}}{ABnAC`}}{{{h{CCj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{c{{Dj{CCj}}}Dl}{{OnIjCf}{{Dd{Ih}}}}{{{h{CCf}}{h{CCf}}}Eb}{{{h{AM`}}{h{AM`}}}Eb}{{{h{AMb}}{h{AMb}}}Eb}{{{h{CCh}}{h{CCh}}}Eb}{{{h{CCj}}{h{CCj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000{{{h{CCf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AM`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AMb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CCh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CCj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CCl}}{h{AhEj}}}{{Dj{BfEl}}}}{ANlCCf}{cc{}}{CChAM`}11{CChAMb}222{{Hf{h{{Ab{Hf}}}}}CCl}{HfCCl}0{{{h{CCj}}{h{Ahc}}}BfGb}``{ce{}{}}00000{{{h{CCj}}}Eb}``{{Hfc}CClEh}{BAlCCj}`{{{h{CCj}}{h{CCj}}}{{Dd{Bh}}}}{{ce}Ij{{Eh{}{{Ef{CCl}}}}}{{Eh{}{{Ef{Hf}}}}}}{{{h{{Ab{CCl}}}}{h{{Ab{Hf}}}}}Ij}````{{{h{CCj}}c}DjHj}{{{h{CCf}}}{{Dd{{h{AOb}}}}}}{{{h{AM`}}}{{Dd{{h{AOb}}}}}}{{{h{AMb}}}{{Dd{{h{AOb}}}}}}{{{h{CCh}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}00000{{{h{c}}}Ib{}}0000{c{{Dj{e}}}{}{}}00000000000`{{{h{c}}}If{}}00000```??????{{{h{CCl}}}Ij}`````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{cc{}}{ce{}{}}{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}1{{{h{AhAJf}}}Dd}{{{h{AJf}}}{{Fb{Hf{Dd{Hf}}}}}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}::94`````````````````{{{h{Nd}}}{{h{Nd}}}}````8877{{{h{Nd}}}Nd}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Ahc}}}{{Dj{CCnABl}}}{ABnAC`}}0{{{h{CD`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{Ab{A`}}}}}{{Dj{cABl}}}CCn}{{{h{{Ab{A`}}}}}{{Dj{{Fb{cHf}}ABl}}}CCn}{{{h{Nd}}}E`}{{{h{AhCDb}}Eb}{{Dj{BfACb}}}}{{{h{AhCDb}}BAj}{{Dj{BfACb}}}}{{{h{AhCDb}}BAl}{{Dj{BfACb}}}}{{{h{AhCDb}}Ol}{{Dj{BfACb}}}}{{{h{AhCDb}}BAn}{{Dj{BfACb}}}}{{{h{AhCDb}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}}{{{h{AhCDb}}AEj}{{Dj{BfACb}}}}{{{h{AhCDb}}Db}{{Dj{BfACb}}}}{{{h{AhCDb}}E`}{{Dj{BfACb}}}}{{{h{AhCDb}}A`}{{Dj{BfACb}}}}`{{{h{Nd}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{{CDd{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}0{{{h{Cd}}}{{h{Nd}}}}{Cd{{h{Nd}}}}{cc{}}{{{h{Cd}}}Nd}{CdNd}{ANl{{CDd{c}}}{}}3{ce{}{}}0{{{CDd{c}}}eCDfBDb}```3`````{{{h{AhCDh}}}{{Dj{EbABl}}}}{{{h{AhCDh}}}{{Dj{BAjABl}}}}{{{h{AhCDh}}}{{Dj{BAlABl}}}}{{{h{AhCDh}}}{{Dj{OlABl}}}}{{{h{AhCDh}}}{{Dj{BAnABl}}}}{{{h{AhCDh}}{h{Ah{Ab{A`}}}}}{{Dj{BfABl}}}}{{{h{AhCDh}}}{{Dj{AEjABl}}}}{{{h{AhCDh}}}{{Dj{DbABl}}}}{{{h{AhCDh}}}{{Dj{E`ABl}}}}{{{h{AhCDh}}}{{Dj{A`ABl}}}}``{{{h{c}}}{{ADj{A`}}}{CD`AC`}}{{{h{{CDd{c}}}}}{{Dd{{h{AOb}}}}}En}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0{ce{}{}}0`````````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{CDj}}}{{Ad{A`}}}}{{{h{CDj}}}CDj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Ahc}}}{{Dj{CCnABl}}}{ABnAC`}}0{{{h{Ahc}}}{{Dj{CDjABl}}}{ABnAC`}}{{{h{CD`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{CDj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{CDj}}}{{h{{Ab{A`}}}}}}{{{h{{Ab{A`}}}}}{{Dj{cABl}}}CCn}{{{h{Fl}}}{{Dj{cCDl}}}CCn}{{{h{{Ab{A`}}}}}{{Dj{{Fb{cHf}}ABl}}}CCn}{{{h{AhCDb}}Eb}{{Dj{BfACb}}}}{{{h{AhCDb}}BAj}{{Dj{BfACb}}}}{{{h{AhCDb}}BAl}{{Dj{BfACb}}}}{{{h{AhCDb}}Ol}{{Dj{BfACb}}}}{{{h{AhCDb}}BAn}{{Dj{BfACb}}}}{{{h{AhCDb}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}}{{{h{AhCDb}}AEj}{{Dj{BfACb}}}}{{{h{AhCDb}}Db}{{Dj{BfACb}}}}{{{h{AhCDb}}E`}{{Dj{BfACb}}}}{{{h{AhCDb}}A`}{{Dj{BfACb}}}}{{{h{CDj}}{h{CDj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{ABl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CDl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CDj}}{h{AhEj}}}{{Dj{BfEl}}}}{ACbABl}{cc{}}{ANlABl}1{CDnCDl}2{ce{}{}}00{CDj{{ADj{A`}}}}{{{ADj{A`}}}CDj}{{{h{AhCDh}}}{{Dj{EbABl}}}}{{{h{AhCDh}}}{{Dj{BAjABl}}}}{{{h{AhCDh}}}{{Dj{BAlABl}}}}{{{h{AhCDh}}}{{Dj{OlABl}}}}{{{h{AhCDh}}}{{Dj{BAnABl}}}}{{{h{AhCDh}}{h{Ah{Ab{A`}}}}}{{Dj{BfABl}}}}{{{h{AhCDh}}}{{Dj{AEjABl}}}}{{{h{AhCDh}}}{{Dj{DbABl}}}}{{{h{AhCDh}}}{{Dj{E`ABl}}}}{{{h{AhCDh}}}{{Dj{A`ABl}}}}{{{h{c}}}{{ADj{A`}}}{CD`AC`}}{{{h{c}}}Ib{CD`AC`}}{{{h{ABl}}}{{Dd{{h{AOb}}}}}}{{{h{CDl}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00{ce{}{}}00``````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{}{{CE`{c}}}CEb}{c{{Dj{e}}}DlCCn}{{{h{AhCEd}}{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfEl}}}AE`}{{{h{AhCEd}}{h{Ahc}}}{{Dj{BfEl}}}AE`}{cc{}}0{{{h{Fl}}}{{Dj{ce}}}{}{}}{{{h{Fl}}}Dj}`99{CDfcBDb}{{{h{c}}e}DjCD`Hj}====<<;;```````::::::999999{{{h{CEf}}}CEf}{{{h{CEh}}}CEh}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Ah{CEj{c}}}}{h{Ahe}}{h{{Ab{A`}}}}}{{Dj{BfEl}}}CEbAE`}{{{h{CEf}}{h{CEf}}}Eb}{{{h{CEh}}{h{CEh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{Ah{CEj{c}}}}{h{Ahe}}}{{Dj{BfEl}}}CEbAE`}{{{h{CEf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{CEh}}{h{AhEj}}}{{Dj{BfEl}}}}>>{{{CE`{c}}}{{CEj{c}}}CEb}????{ce{}{}}00000{CEfcBDb}{CEhcBDb}{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}3{{{h{AhCEl}}}Dd}{{{h{c}}}e{}{}}0{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}00000000000{{{h{c}}}If{}}00000888888```````{{{h{AhCEn}}}{{h{Ah{Ab{A`}}}}}}{{{h{CEn}}}{{h{{Ab{A`}}}}}}{{{h{CEn}}}{{h{Nb}}}}{{{h{c}}}{{h{e}}}{}{}}020{{{h{Ahc}}}{{h{Ahe}}}{}{}}400{{{h{AK`}}}AK`}{{{h{CEn}}}CEn}{{{h{CF`}}}CF`}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{CEn}}}h}{{{h{AhCEn}}}{{h{Ah}}}}{c{{Dj{AK`}}}Dl}{{{h{AK`}}{h{AK`}}}Eb}{{{h{CEn}}{h{CEn}}}Eb}{{{h{CF`}}{h{CF`}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{AK`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CEn}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{CF`}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{AFjCF`}1{JfCF`}{AHbCF`}{ANlCF`}{{{h{{Ab{A`}}}}}{{Dj{AK`CF`}}}}{{{h{Fl}}}{{Dj{AK`}}}}{{{h{AK`}}{h{Ahc}}}BfGb}{{{h{CEn}}{h{Ahc}}}BfGb}{ce{}{}}00{{{h{CEn}}}}{{{h{CEn}}}{{CFb{A`}}}}{{{h{AK`}}c}DjHj}{{{h{AK`}}}CEn}{{{h{AK`}}{h{Ahc}}}{{Dj{BfACb}}}{ACdAC`}}{CFdAK`}``{{{h{CF`}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}00{AK`{{ADj{A`}}}}{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00<<<{{{h{CEn}}{h{Ahc}}}{{Dj{BfACb}}}{ACdAC`}}`````````{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{AFl}}}AFl}{{{h{AHl}}}AHl}{{{h{CFf}}}CFf}{{{h{CFh}}}CFh}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{AFl}}{h{AFl}}}Eb}{{{h{AHl}}{h{AHl}}}Eb}{{{h{CFf}}{h{CFf}}}Eb}{{{h{CFh}}{h{CFh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000{{{h{AFl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AHl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CFf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CFh}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{CFfAFl}{CCdAFl}2{CFhAHl}{CCdAHl}44{ce{}{}}000{{{h{AFl}}}{{Dd{{h{AOb}}}}}}{{{h{AHl}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}000{{{h{c}}}Ib{}}000{c{{Dj{e}}}{}{}}0000000{{{h{c}}}If{}}0006666```````````````````{{}{{CFn{}{{CFj{c}}{CFl{e}}}}}CG`{CGbBB`}}{{{h{{CFn{}{{CFj{c}}{CFl{e}}}}}}}{{h{e}}}CG`{CGbBB`}}``{{}c{}}{c{{CFn{}{{CFj{e}}{CFl{c}}}}}{CGbBB`}CG`}{c{{CFn{}{{CFj{c}}{CFl{e}}}}}CG`{CGbBB`}}{{{h{{Ab{A`}}}}}{{Dj{{CFn{}{{CFj{c}}{CFl{e}}}}Fj}}}CG`{CGbBB`}}{{{h{{Ab{A`}}}}}{{CFn{}{{CFj{c}}{CFl{e}}}}}CG`{CGbBB`}}`{e{{CFn{}{{CFj{g}}{CFl{i}}}}}{{ACn{{Ab{A`}}}}}{{Eh{}{{Ef{c}}}}}CG`{CGbBB`}}```{{{h{Ah{CG`{}{{CGd{c}}}}}}{h{{Ab{A`}}}}}Bf{}}{{{h{{CG`{}{{CGd{c}}}}}}}c{}}{{{h{{CG`{}{{CGd{c}}}}}}}Hf{}}````````````{{{CFn{}{{CFj{c}}{CFl{e}}}}}eCG`{CGbBB`}}{{{h{{Ab{A`}}}}{h{{Ab{A`}}}}}Eb}`{{}Mf}{{{h{Mf}}}h}{{{h{Mf}}}{{h{{Ab{A`}}}}}}{{{h{Mf}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}2{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{Mf}}}Mf}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Mf}}{h{Mf}}}Bh}{c{{Dj{Mf}}}Dl}{{}}{{{h{Mf}}{h{Mf}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{Mf}}{h{AhEj}}}{{Dj{BfEl}}}}000{LbMf}{L`Mf}{KjMf}{cc{}}{KbMf}{{}Mf}{{{h{Ah{Ad{A`}}}}}{{h{AhMf}}}}{{{h{{Ad{A`}}}}}{{h{Mf}}}}{ADdMf}{{{h{{Ab{A`}}}}}{{Dj{MfFj}}}}0{{{h{Fl}}}{{Dj{Mf}}}}{{{h{Mf}}{h{Ahc}}}BfGb}{{{h{Mf}}c}h{{Gf{{Ab{A`}}}}}}{ce{}{}}{MfBCn}{{{h{Mf}}{h{Mf}}}{{Dd{Bh}}}}{{{h{Mf}}c}DjHj}{Mf}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}8``````````````````{{{CGh{}{{CGf{c}}}}CGj{h{AhIb}}}Bf{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}}c{CGlEnCGnCH`}}{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000`{{{h{AFj}}}AFj}{{{h{CHb}}}CHb}{{{h{CDn}}}CDn}{{{h{BO`}}}BO`}{{{h{CGj}}}CGj}{{{h{c}}{h{Ahe}}}Bf{}{}}0000{{}CGj}`{{{h{AFj}}{h{AFj}}}Eb}{{{h{CHb}}{h{CHb}}}Eb}{{{h{CDn}}{h{CDn}}}Eb}{{{h{BO`}}{h{BO`}}}Eb}{{{h{CGj}}{h{CGj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000`{{{h{AFj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CHb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CDn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BO`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CGj}}{h{AhEj}}}{{Dj{BfEl}}}}`{cc{}}0{CDnAFj}{CHbAFj}222{CHdBO`}{CHbBO`}44{{{h{Fl}}}{{Dj{{CGb{}{{Fn{c}}}}c}}}{EnCGl}}{c{{CHf{c}}}{{Gj{}{{Ef{{Ad{A`}}}}}}}}{{{h{CGj}}{h{Ahc}}}BfGb}{{{CGh{}{{CGf{c}}}}}Hf{CGlEnCGnCH`}}`{ce{}{}}000000{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}011{{{h{CHb}}}A`}{{{h{{CHh{c}}}}}Hf{{BN`{}{{Ef{A`}}}}Gj}}{{{h{CDn}}}Hf}{{{h{Fl}}}{{Dj{{CHf{CHj}}CDn}}}}{c{{CHh{c}}}{{Gj{}{{Ef{A`}}}}}}{{{h{Ah{CHf{c}}}}}Dd{{Gj{}{{Ef{{Ad{A`}}}}}}}}{{{h{Ah{CHh{c}}}}}{{Dd{BBb}}}{{Gj{}{{Ef{A`}}}}}}{{{h{Ah{CHf{c}}}}}Dd{{Gj{}{{Ef{{Ad{A`}}}}}}CHl}}{{{h{Ah{CHh{c}}}}}{{Dd{BBb}}}{{CHl{}{{Ef{A`}}}}Gj}}{{{h{Ah{CHf{c}}}}Hf}Dd{{Gj{}{{Ef{{Ad{A`}}}}}}}}{{{h{Ah{CHf{c}}}}Hf}Dd{{Gj{}{{Ef{{Ad{A`}}}}}}CHl}}``{{{h{Ah{CHf{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfBBf}}}{{Gj{}{{Ef{{Ad{A`}}}}}}CHn}}{{{h{{CHf{c}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{{Ad{A`}}}}}}}}{{{h{{CHh{c}}}}}{{Fb{Hf{Dd{Hf}}}}}{{Gj{}{{Ef{A`}}}}}}{{{h{AFj}}}{{Dd{{h{AOb}}}}}}{{{h{CHb}}}{{Dd{{h{AOb}}}}}}{{{h{CDn}}}{{Dd{{h{AOb}}}}}}{{{h{BO`}}}{{Dd{{h{AOb}}}}}}`{{{CGh{}{{CGf{c}}}}CGj}Ib{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}}Ib{CGlEnCGnCH`}}{{{h{c}}}e{}{}}0000{{{h{c}}}Ib{}}0002{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}0{c{{Dj{e}}}{}{}}0000000000000{{{h{c}}}If{}}000000{ce{}{}}000000``{{{h{CI`}}}{{h{Fl}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{AhCI`}}}Bf}{{}CI`}{cc{}}6{{{h{CI`}}}Eb}2{{{h{AhCI`}}A`CGj}Bf}{{{h{AhCI`}}cCGj}BfEh}{{{h{AhCI`}}{h{{Ab{A`}}}}CGj}{{h{{Ab{A`}}}}}}{{{h{CI`}}}Hf}==<;````{{{CGh{}{{CGf{c}}}}CGj{h{AhIb}}}Bf{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}}c{CGlEnCGnCH`}};;::{{{h{CIb}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{CId}}{h{AhEj}}}{{Dj{BfEl}}}}000`99{{{CGh{}{{CGf{c}}}}}Hf{CGlEnCGnCH`}}`{ce{}{}}0{{{CGh{}{{CGf{c}}}}CGj}Ib{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}}Ib{CGlEnCGnCH`}}{{{h{c}}}Ib{}}01{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}055`````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{CHd}}}CHd}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{CHd}}{h{CHd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0`{{{h{CHd}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}=`{{{h{CHd}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}<;;:?````````{{{h{Fl}}}{{Dj{{CGb{}{{Fn{c}}}}c}}}{EnCGl}}````{{{CGh{}{{CGf{c}}}}CGj{h{AhIb}}}Bf{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}}c{CGlEnCGnCH`}}2{{{CGh{}{{CGf{c}}}}}Hf{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}CGj}Ib{CGlEnCGnCH`}}{{{CGh{}{{CGf{c}}}}}Ib{CGlEnCGnCH`}}0```?>8`{ce{}{}}`{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}2``{{}ALj}{{{h{ALj}}}h}{{{h{ALj}}}{{h{{Ad{A`}}}}}}{{{h{ALj}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}10{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{ALj}}}ALj}{{{h{CIf}}}CIf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{ALj}}{h{ALj}}}Bh}{{}CIf}{c{{Dj{ALj}}}Dl}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{}}{{{h{ALj}}{h{ALj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhCIf}}}{{Dj{BfACb}}}}{{{h{AhCIf}}}{{Dj{BfBBf}}}}{{{h{ALj}}{h{AhEj}}}{{Dj{BfEl}}}}000{cc{}}0{{}ALj}{{{h{Ah{Ad{A`}}}}}{{h{AhALj}}}}{{{h{{Ad{A`}}}}}{{h{ALj}}}}{CIfALj}{{{h{{Ab{A`}}}}}{{Dj{ALjFj}}}}0{{{h{Fl}}}{{Dj{ALj}}}}{{{h{ALj}}{h{Ahc}}}BfGb}{{{h{ALj}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhCIf}}{h{{Ab{A`}}}}}Bf}{ce{}{}}0{ALjBCn}{{{h{CIf}}}{{Ad{A`}}}}{{{h{CIf}}}Hf}{{{h{ALj}}{h{ALj}}}{{Dd{Bh}}}}{{{h{ALj}}c}DjHj}{ALj}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0::{{{h{AhCIf}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{AhCIf}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}}````````````````{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Ai}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}HlHl{{Eh{}{{Ef{{Fb{AeAg}}}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Ae}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}Eh}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{CGlAC`}}`{c{{Dj{Dn}}}Dl}{{{Dl{}{{Fn{c}}}}e}{{Dj{c}}}BDbCKh}0000{{{Dl{}{{Fn{c}}}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}{{Dj{c}}}BDbCKh}1111111111{{{Dl{}{{Fn{c}}}}{h{Fl}}e}{{Dj{c}}}BDbCKh}22221{{{Dl{}{{Fn{c}}}}Hfe}{{Dj{c}}}BDbCKh}{{{Dl{}{{Fn{c}}}}{h{Fl}}Hfe}{{Dj{c}}}BDbCKh}4444442`{{{h{{Dl{}{{Fn{c}}}}}}}EbBDb}{{{h{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}}}}Eb{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}`{{{h{Hl}}c}DjHj}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Eb}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{{Ab{A`}}}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BBb}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}CKj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}AD`}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BJj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BAj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BAl}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Ol}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BAn}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{Dd{Hf}}}{{Dj{oe}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{Dd{Hf}}}{{Dj{ge}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Hf}{{Dj{Aae}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}Hf}{{Dj{Ace}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Hf}{{Dj{ie}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Hf}{{Dj{ke}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}Hf}{{Dj{me}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}ACl}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}AEj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Db}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}E`}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}A`}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}=:{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}``````````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{AOb}}}{{Dd{{h{AOb}}}}}}{{{h{CKl}}}CKl}{{{h{CKn}}}CKn}{{{h{c}}{h{Ahe}}}Bf{}{}}0{cBDbCGl}{{}CKl}{{{h{AOb}}}{{h{Fl}}}}{{{CLb{}{{CL`{c}}}}e}{{Dj{c}}}{}Dl}{c{{Dj{Dn}}}Dl}{c{{Dj{CKl}}}Dl}{{{Dl{}{{Fn{c}}}}e}{{Dj{c}}}BDbCKh}0000{{{Dl{}{{Fn{c}}}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}{{Dj{c}}}BDbCKh}1111111111{{{Dl{}{{Fn{c}}}}{h{Fl}}e}{{Dj{c}}}BDbCKh}22221{{{Dl{}{{Fn{c}}}}Hfe}{{Dj{c}}}BDbCKh}{{{Dl{}{{Fn{c}}}}{h{Fl}}Hfe}{{Dj{c}}}BDbCKh}4444442{{{h{Fl}}}BDb}{{{h{CKl}}{h{CKl}}}Eb}{{{h{CKn}}{h{CKn}}}Eb}{{{h{{CKh{}{{CL`{c}}}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{CKl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{CLd}}{h{AhEj}}}{{Dj{BfEl}}}}01{{{h{c}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{CKn}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{ce{}{}}0{{{BDd{}{{CLf{c}}}}}c{{Dl{}{{Fn{e}}}}}BDb}{{Hf{h{CLd}}}BDb}{{CKn{h{CLd}}}BDb}0{{{h{{Dl{}{{Fn{c}}}}}}}EbBDb}={{{CLh{}{{Fn{c}}}}}{{Dj{ec}}}BDbDn}{{{CLh{}{{Fn{c}}}}e}{{Dj{c}}}BDbCLb}{{{h{Ah{CLj{}{{Fn{c}}}}}}}{{Dj{{Dd{e}}c}}}BDbDn}{{{h{Ah{CLj{}{{Fn{c}}}}}}e}{{Dj{Ddc}}}BDbCLb}{{{h{Ah{CLl{}{{Fn{c}}}}}}}{{Dj{{Dd{{Fb{eg}}}}c}}}BDbDnDn}{{{h{Ah{CLl{}{{Fn{c}}}}}}eg}{{Dj{{Dd{Fb}}c}}}BDbCLbCLb}{{{h{Ah{CLl{}{{Fn{c}}}}}}}{{Dj{{Dd{e}}c}}}BDbDn}{{{h{Ah{CLl{}{{Fn{c}}}}}}e}{{Dj{Ddc}}}BDbCLb}{{{h{Ah{CLl{}{{Fn{c}}}}}}}{{Dj{ec}}}BDbDn}{{{h{Ah{CLl{}{{Fn{c}}}}}}e}{{Dj{c}}}BDbCLb}{{{h{AOb}}{h{AhCLn}}}Bf}{{{h{{CLj{}{{Fn{c}}}}}}}{{Dd{Hf}}}BDb}{{{h{{CLl{}{{Fn{c}}}}}}}{{Dd{Hf}}}BDb}{{{h{AOb}}}{{Dd{{h{AOb}}}}}}{{{CLh{}{{Fn{c}}}}{h{{Ab{{h{Fl}}}}}}e}{{Dj{c}}}BDbCKh}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{CLh{}{{Fn{c}}}}Hfe}{{Dj{c}}}BDbCKh}{{{h{c}}}If{}}0{{{CLh{}{{Fn{c}}}}}{{Dj{Bfc}}}BDb}{{{h{Fl}}{h{{Ab{{h{Fl}}}}}}}BDb}0`{{{CMb{}{{Fn{c}}{CM`{e}}}}}{{Dj{{Fb{ge}}c}}}BDb{{CLh{}{{Fn{c}}}}}Dn}{{{CMb{}{{Fn{c}}{CM`{e}}}}g}{{Dj{{Fb{e}}c}}}BDb{{CLh{}{{Fn{c}}}}}CLb}{{{CKh{}{{CL`{c}}}}Eb}{{Dj{ce}}}{}BDb}{{CKlEb}{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}{h{{Ab{A`}}}}}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}{h{Fl}}}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}{ADj{A`}}}{{Dj{ce}}}{}BDb}2{{CKl{h{{Ab{A`}}}}}{{Dj{c}}}BDb}{{{CKh{}{{CL`{c}}}}BBb}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}e}{{Dj{c}}}{}CMb}{{CKlc}DjCMb}{{{CKh{}{{CL`{c}}}}CKj}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}AD`}{{Dj{ce}}}{}BDb}{{CKlAD`}{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}BJj}{{Dj{ce}}}{}BDb}{{CKlBJj}{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}BAj}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}BAl}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}Ol}{{Dj{ce}}}{}BDb}{{CKlOl}{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}BAn}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}e}{{Dj{c}}}{}CLl}{{CKlc}DjCLl}{{{CKh{}{{CL`{c}}}}e}{{Dj{c}}}{}Dl}{{CKlc}DjDl}{{{CKh{}{{CL`{c}}}}}{{Dj{ce}}}{}BDb}{CKl{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}e}{{Dj{c}}}{}CLj}{{CKlc}DjCLj}54{{{CKh{}{{CL`{c}}}}{h{Fl}}}{{Dj{ce}}}{}BDb}{{CKl{h{Fl}}}{{Dj{c}}}BDb}{{{CKh{}{{CL`{c}}}}Ib}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}ACl}{{Dj{ce}}}{}BDb}{{CKlACl}{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}AEj}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}Db}{{Dj{ce}}}{}BDb}{{{CKh{}{{CL`{c}}}}E`}{{Dj{ce}}}{}BDb}{{CKlE`}{{Dj{c}}}{}}{{{CKh{}{{CL`{c}}}}A`}{{Dj{ce}}}{}BDb}=<{ce{}{}}0`````````````````````````````{{{h{c}}}{{h{e}}}{}{}}0000000000000000000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000000000000000000000000{{{h{{CMd{c}}}}}{{CMd{c}}}{}}{{{h{{CMf{c}}}}}{{CMf{c}}}{}}{{{h{{CMh{c}}}}}{{CMh{c}}}{}}{{{h{{CMj{c}}}}}{{CMj{c}}}{}}{{{h{{BDf{c}}}}}{{BDf{c}}}{}}{{{h{{CMl{c}}}}}{{CMl{c}}}{}}{{{h{{CMn{c}}}}}{{CMn{c}}}{}}{{{h{{CN`{c}}}}}{{CN`{c}}}{}}{{{h{{CNb{ce}}}}}{{CNb{ce}}}{GjAl}{}}{{{h{CNd}}}CNd}{{{h{{CNf{c}}}}}{{CNf{c}}}{}}{{{h{{CNh{c}}}}}{{CNh{c}}}{}}{{{h{{CNj{c}}}}}{{CNj{c}}}{}}{{{h{{CNl{c}}}}}{{CNl{c}}}{}}{{{h{{CNn{c}}}}}{{CNn{c}}}{}}{{{h{{CO`{c}}}}}{{CO`{c}}}{}}{{{h{{COb{c}}}}}{{COb{c}}}{}}{{{h{{COd{c}}}}}{{COd{c}}}{}}{{{h{{COf{c}}}}}{{COf{c}}}{}}{{{h{{COh{c}}}}}{{COh{c}}}{}}{{{h{{COj{c}}}}}{{COj{c}}}{}}{{{h{{COl{c}}}}}{{COl{c}}}{}}{{{h{{COn{c}}}}}{{COn{c}}}{}}{{{h{{D@`{c}}}}}{{D@`{c}}}{}}{{{h{{D@b{c}}}}}{{D@b{c}}}{}}{{{h{{D@d{ce}}}}}{{D@d{ce}}}AlAl}{{{h{{D@f{c}}}}}{{D@f{c}}}Al}{{{h{{D@h{c}}}}}{{D@h{c}}}Al}{{{h{{D@j{c}}}}}{{D@j{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000000000000000000000{cCNdCGl}0{{{h{CNd}}}{{h{Fl}}}}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMh{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMj{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{BDf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMl{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMn{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CN`{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNb{ce}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}g}DjGjBDbCKh}{{{CNf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNh{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNj{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNl{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNn{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CO`{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COb{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COd{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COh{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COj{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COl{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COn{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{D@`{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{D@b{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{D@d{gc}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjCLjCKh}{{{D@h{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjCLlCKh}{{{D@j{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}{h{Fl}}e}DjBDbCKh}{{{CMf{c}}{h{Fl}}e}DjBDbCKh}{{{CMh{c}}{h{Fl}}e}DjBDbCKh}{{{CMj{c}}{h{Fl}}e}DjBDbCKh}{{{BDf{c}}{h{Fl}}e}DjBDbCKh}{{{CMl{c}}{h{Fl}}e}DjBDbCKh}{{{CMn{c}}{h{Fl}}e}DjBDbCKh}{{{CN`{c}}{h{Fl}}e}DjBDbCKh}{{{CNb{ce}}{h{Fl}}g}DjGjBDbCKh}{{{CNf{c}}{h{Fl}}e}DjBDbCKh}{{{CNh{c}}{h{Fl}}e}DjBDbCKh}{{{CNj{c}}{h{Fl}}e}DjBDbCKh}{{{CNl{c}}{h{Fl}}e}DjBDbCKh}{{{CNn{c}}{h{Fl}}e}DjBDbCKh}{{{CO`{c}}{h{Fl}}e}DjBDbCKh}{{{COb{c}}{h{Fl}}e}DjBDbCKh}{{{COd{c}}{h{Fl}}e}DjBDbCKh}{{{COf{c}}{h{Fl}}e}DjBDbCKh}{{{COh{c}}{h{Fl}}e}DjBDbCKh}{{{COj{c}}{h{Fl}}e}DjBDbCKh}{{{COl{c}}{h{Fl}}e}DjBDbCKh}{{{COn{c}}{h{Fl}}e}DjBDbCKh}{{{D@`{c}}{h{Fl}}e}DjBDbCKh}{{{D@b{c}}{h{Fl}}e}DjBDbCKh}{{{D@d{gc}}{h{Fl}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}{h{Fl}}e}DjCLjCKh}{{{D@h{c}}{h{Fl}}e}DjCLlCKh}{{{D@j{c}}{h{Fl}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMh{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMj{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{BDf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMl{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CMn{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CN`{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNb{ce}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}g}DjGjBDbCKh}{{{CNf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNh{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNj{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNl{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CNn{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{CO`{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COb{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COd{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COf{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COh{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COj{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COl{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{COn{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{D@`{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{D@b{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjBDbCKh}{{{D@d{gc}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjCLjCKh}{{{D@h{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjCLlCKh}{{{D@j{c}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}e}DjCMbCKh}{{{CMd{c}}Hfe}DjBDbCKh}{{{CMf{c}}Hfe}DjBDbCKh}{{{CMh{c}}Hfe}DjBDbCKh}{{{CMj{c}}Hfe}DjBDbCKh}{{{BDf{c}}Hfe}DjBDbCKh}{{{CMl{c}}Hfe}DjBDbCKh}{{{CMn{c}}Hfe}DjBDbCKh}{{{CN`{c}}Hfe}DjBDbCKh}{{{CNb{ce}}Hfg}DjGjBDbCKh}{{{CNf{c}}Hfe}DjBDbCKh}{{{CNh{c}}Hfe}DjBDbCKh}{{{CNj{c}}Hfe}DjBDbCKh}{{{CNl{c}}Hfe}DjBDbCKh}{{{CNn{c}}Hfe}DjBDbCKh}{{{CO`{c}}Hfe}DjBDbCKh}{{{COb{c}}Hfe}DjBDbCKh}{{{COd{c}}Hfe}DjBDbCKh}{{{COf{c}}Hfe}DjBDbCKh}{{{COh{c}}Hfe}DjBDbCKh}{{{COj{c}}Hfe}DjBDbCKh}{{{COl{c}}Hfe}DjBDbCKh}{{{COn{c}}Hfe}DjBDbCKh}{{{D@`{c}}Hfe}DjBDbCKh}{{{D@b{c}}Hfe}DjBDbCKh}{{{D@d{gc}}Hfi}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}Hfe}DjCLjCKh}{{{D@h{c}}Hfe}DjCLlCKh}{{{D@j{c}}Hfe}DjCMbCKh}{{{CMd{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CMf{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CMh{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CMj{c}}{h{Fl}}Hfe}DjBDbCKh}{{{BDf{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CMl{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CMn{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CN`{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CNb{ce}}{h{Fl}}Hfg}DjGjBDbCKh}{{{CNf{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CNh{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CNj{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CNl{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CNn{c}}{h{Fl}}Hfe}DjBDbCKh}{{{CO`{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COb{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COd{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COf{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COh{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COj{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COl{c}}{h{Fl}}Hfe}DjBDbCKh}{{{COn{c}}{h{Fl}}Hfe}DjBDbCKh}{{{D@`{c}}{h{Fl}}Hfe}DjBDbCKh}{{{D@b{c}}{h{Fl}}Hfe}DjBDbCKh}{{{D@d{gc}}{h{Fl}}Hfi}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}{h{Fl}}Hfe}DjCLjCKh}{{{D@h{c}}{h{Fl}}Hfe}DjCLlCKh}{{{D@j{c}}{h{Fl}}Hfe}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}e}DjBDbCKh}{{{CMf{c}}e}DjBDbCKh}{{{CMh{c}}e}DjBDbCKh}{{{CMj{c}}e}DjBDbCKh}{{{BDf{c}}e}DjBDbCKh}{{{CMl{c}}e}DjBDbCKh}{{{CMn{c}}e}DjBDbCKh}{{{CN`{c}}e}DjBDbCKh}{{{CNb{ce}}g}DjGjBDbCKh}{{{CNf{c}}e}DjBDbCKh}{{{CNh{c}}e}DjBDbCKh}{{{CNj{c}}e}DjBDbCKh}{{{CNl{c}}e}DjBDbCKh}{{{CNn{c}}e}DjBDbCKh}{{{CO`{c}}e}DjBDbCKh}{{{COb{c}}e}DjBDbCKh}{{{COd{c}}e}DjBDbCKh}{{{COf{c}}e}DjBDbCKh}{{{COh{c}}e}DjBDbCKh}{{{COj{c}}e}DjBDbCKh}{{{COl{c}}e}DjBDbCKh}{{{COn{c}}e}DjBDbCKh}{{{D@`{c}}e}DjBDbCKh}{{{D@b{c}}e}DjBDbCKh}{{{D@d{gc}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}e}DjCLjCKh}{{{D@h{c}}e}DjCLlCKh}{{{D@j{c}}e}DjCMbCKh}{{{CMd{c}}{h{Fl}}e}DjBDbCKh}{{{CMf{c}}{h{Fl}}e}DjBDbCKh}{{{CMh{c}}{h{Fl}}e}DjBDbCKh}{{{CMj{c}}{h{Fl}}e}DjBDbCKh}{{{BDf{c}}{h{Fl}}e}DjBDbCKh}{{{CMl{c}}{h{Fl}}e}DjBDbCKh}{{{CMn{c}}{h{Fl}}e}DjBDbCKh}{{{CN`{c}}{h{Fl}}e}DjBDbCKh}{{{CNb{ce}}{h{Fl}}g}DjGjBDbCKh}{{{CNf{c}}{h{Fl}}e}DjBDbCKh}{{{CNh{c}}{h{Fl}}e}DjBDbCKh}{{{CNj{c}}{h{Fl}}e}DjBDbCKh}{{{CNl{c}}{h{Fl}}e}DjBDbCKh}{{{CNn{c}}{h{Fl}}e}DjBDbCKh}{{{CO`{c}}{h{Fl}}e}DjBDbCKh}{{{COb{c}}{h{Fl}}e}DjBDbCKh}{{{COd{c}}{h{Fl}}e}DjBDbCKh}{{{COf{c}}{h{Fl}}e}DjBDbCKh}{{{COh{c}}{h{Fl}}e}DjBDbCKh}{{{COj{c}}{h{Fl}}e}DjBDbCKh}{{{COl{c}}{h{Fl}}e}DjBDbCKh}{{{COn{c}}{h{Fl}}e}DjBDbCKh}{{{D@`{c}}{h{Fl}}e}DjBDbCKh}{{{D@b{c}}{h{Fl}}e}DjBDbCKh}{{{D@d{gc}}{h{Fl}}i}DjBDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CKh}{{{D@f{c}}{h{Fl}}e}DjCLjCKh}{{{D@h{c}}{h{Fl}}e}DjCLlCKh}{{{D@j{c}}{h{Fl}}e}DjCMbCKh}{{{CNb{ce}}}{{Dj{Bfe}}}GjBDb}{{{D@d{ce}}}{{Dj{Bfe}}}GjBDb}{{{h{CNd}}{h{CNd}}}Eb}{{{h{{CMd{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CMf{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CMh{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CMj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{BDf{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CMl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CMn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CN`{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CNb{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}{GjEn}{}}{{{h{CNd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{CNf{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CNh{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CNj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CNl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CNn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{CO`{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COb{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COd{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COf{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COh{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{COn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{D@`{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{D@b{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{}}{{{h{{D@d{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}En{}}{{{h{{D@f{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{{D@h{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{{D@j{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{cc{}}0000000000000000000000000000{ce{}{}}0000000000000000000000000000{{{CMd{c}}}{{CMd{c}}}BDb}{{{CMf{c}}}{{CMf{c}}}BDb}{{{CMh{c}}}{{CMh{c}}}BDb}{{{CMj{c}}}{{CMj{c}}}BDb}{{{BDf{c}}}{{BDf{c}}}BDb}{{{CMl{c}}}{{CMl{c}}}BDb}{{{CMn{c}}}{{CMn{c}}}BDb}{{{CN`{c}}}{{CN`{c}}}BDb}{{{CNb{ce}}}{{CNb{ce}}}GjBDb}{{{CNf{c}}}{{CNf{c}}}BDb}{{{CNh{c}}}{{CNh{c}}}BDb}{{{CNj{c}}}{{CNj{c}}}BDb}{{{CNl{c}}}{{CNl{c}}}BDb}{{{CNn{c}}}{{CNn{c}}}BDb}{{{CO`{c}}}{{CO`{c}}}BDb}{{{COb{c}}}{{COb{c}}}BDb}{{{COd{c}}}{{COd{c}}}BDb}{{{COf{c}}}{{COf{c}}}BDb}{{{COh{c}}}{{COh{c}}}BDb}{{{COj{c}}}{{COj{c}}}BDb}{{{COl{c}}}{{COl{c}}}BDb}{{{COn{c}}}{{COn{c}}}BDb}{{{D@`{c}}}{{D@`{c}}}BDb}{{{D@b{c}}}{{D@b{c}}}BDb}{{{D@d{gc}}}{{D@d{gc}}}BDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}}{{{D@f{c}}}{{D@f{c}}}CLj}{{{D@h{c}}}{{D@h{c}}}CLl}{{{D@j{c}}}{{D@j{c}}}CMb}{{}{{CMd{c}}}{}}{Db{{CMf{c}}}{}}{{{h{Fl}}}{{CMh{c}}}{}}{{{h{Fl}}}{{CMj{c}}}{}}{Ib{{BDf{c}}}{}}{{{AEf{Fl}}}{{CMl{c}}}{}}{{{h{{Ab{A`}}}}}{{CMn{c}}}{}}{{{h{{Ab{A`}}}}}{{CN`{c}}}{}}{c{{CNb{ce}}}Gj{}}{Eb{{CNf{c}}}{}}{BAn{{CNh{c}}}{}}{BAj{{CNj{c}}}{}}{BAl{{CNl{c}}}{}}{Ol{{CNn{c}}}{}}{BJj{{CO`{c}}}{}}{D@l{{COb{c}}}{}}{A`{{COd{c}}}{}}{AEj{{COf{c}}}{}}{E`{{COh{c}}}{}}{ACl{{COj{c}}}{}}{Hf{{COl{c}}}{}}{CKj{{COn{c}}}{}}{AD`{{D@`{c}}}{}}{BBb{{D@b{c}}}{}}{c{{D@d{ce}}}Gj{}}{c{{D@f{c}}}{}}{c{{D@h{c}}}{}}{c{{D@j{c}}}{}}{{{h{Ah{CNb{ce}}}}g}{{Dj{Dd}}}GjBDbCLb}{{{h{Ah{D@d{gc}}}}i}{{Dj{Dd}}}BDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}CLb}{{{h{Ah{CNb{ce}}}}gi}{{Dj{{Dd{Fb}}}}}GjBDbCLbCLb}2{{{h{Ah{CNb{ce}}}}g}DjGjBDbCLb}{{{h{{CNb{ce}}}}}{{Dd{Hf}}}GjBDb}0{{{h{{D@d{gc}}}}}{{Dd{Hf}}}BDb{{BDd{c}}}{{Gj{}{{Ef{e}}}}}}{{{h{c}}}e{}{}}0000000000000000000000000000{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000000000000000000000000000000000000000000000000000000000{{{h{c}}}If{}}0000000000000000000000000000{{{CMf{c}}e}{{Dj{Fb}}}BDbCLb}{{{CMh{c}}e}{{Dj{Fb}}}BDbCLb}{{{CMj{c}}e}{{Dj{Fb}}}BDbCLb}{{{BDf{c}}e}{{Dj{Fb}}}BDbCLb}{{{CMl{c}}e}{{Dj{Fb}}}BDbCLb}{{{D@h{c}}e}{{Dj{Fb}}}CLlCLb}{ce{}{}}0000000000000000000000000000```````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{AOb}}}{{Dd{{h{AOb}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Ai}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}HlHl{{Eh{}{{Ef{{Fb{AeAg}}}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Ae}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}Eh}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{CGlAC`}}{cCJhCGl}{{{h{AOb}}}{{h{Fl}}}}{{{AJ`{AOb}}}{{Dj{{AJ`{c}}{AJ`{AOb}}}}}AOb}00{{{h{AhAOb}}}{{Dd{{h{Ahc}}}}}AOb}00{{{h{AOb}}}{{Dd{{h{c}}}}}AOb}00{{{CJj{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{CJl{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{CJn{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{CK`{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{CKb{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{CKd{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{CKf{}{{CIh{c}}{Fn{e}}}}}{{Dj{ce}}}{}CJh}{{{D@n{ce}}}{{Dj{ce}}}{}CJh}000000{cc{}}{ce{}{}}{{{h{AOb}}}Eb}00{{{h{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}}}}Eb{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{h{AOb}}{h{AhCLn}}}Bf}{{{h{Hl}}c}DjHj}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Eb}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{{Ab{A`}}}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BBb}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{h{Ah{CJj{}{{CIh{c}}{Fn{e}}}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{CJl{}{{CIh{c}}{Fn{e}}}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{D@n{ce}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}0{{{h{Ah{CKb{}{{CIh{c}}{Fn{e}}}}}}{h{g}}{h{i}}}{{Dj{Bfe}}}{}CJh{HlAC`}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}CKj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}AD`}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{h{Ah{CJn{}{{CIh{c}}{Fn{e}}}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{CK`{}{{CIh{c}}{Fn{e}}}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{CKd{}{{CIh{c}}{Fn{e}}}}}}{h{Fl}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{CKf{}{{CIh{c}}{Fn{e}}}}}}{h{Fl}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}77{{{h{Ah{D@n{ce}}}}{h{Fl}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}0{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BJj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BAj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BAl}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Ol}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}BAn}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{h{Ah{CKb{}{{CIh{c}}{Fn{e}}}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}>{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{Dd{Hf}}}{{Dj{oe}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{Dd{Hf}}}{{Dj{ge}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Ae}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}{HlAC`}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Hf}{{Dj{Aae}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}Hf}{{Dj{Ace}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Hf}{{Dj{ie}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Hf}{{Dj{ke}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}Hf}{{Dj{me}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}ACl}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}AEj}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}Db}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}E`}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}A`}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}=:{{{Hj{}{{CIh{c}}{Fn{e}}{CIj{g}}{CIl{i}}{CIn{k}}{CJ`{m}}{CJb{o}}{CJd{Aa}}{CJf{Ac}}}}{h{Fl}}Db{h{Fl}}}{{Dj{ce}}}{}CJh{{CJj{}{{CIh{c}}{Fn{e}}}}}{{CJl{}{{CIh{c}}{Fn{e}}}}}{{CJn{}{{CIh{c}}{Fn{e}}}}}{{CK`{}{{CIh{c}}{Fn{e}}}}}{{CKb{}{{CIh{c}}{Fn{e}}}}}{{CKd{}{{CIh{c}}{Fn{e}}}}}{{CKf{}{{CIh{c}}{Fn{e}}}}}}{{{h{Ah{CKb{}{{CIh{c}}{Fn{e}}}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{D@n{ce}}}}{h{g}}}{{Dj{Bfe}}}{}CJh{HlAC`}}{{{h{Ah{CKd{}{{CIh{c}}{Fn{e}}}}}}{h{Fl}}}{{Dj{Bfe}}}{}CJh}{{{h{Ah{CKf{}{{CIh{c}}{Fn{e}}}}}}{h{Fl}}}{{Dj{Bfe}}}{}CJh}{{{h{AOb}}}{{Dd{{h{AOb}}}}}}{{{h{AOb}}}DA`}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}{ce{}{}}```{c{{Dj{DAb}}}Dl}{{{h{{Ab{A`}}}}}{{Dj{DAbFj}}}}{{{h{DAb}}c}DjHj}``{{}DAd}{{{h{DAd}}}h}{{{h{DAd}}}{{h{{Ad{A`}}}}}}{{{h{DAd}}}{{h{{Ab{A`}}}}}}0{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DAd}}}DAd}{{{h{DAf}}}DAf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DAd}}{h{DAd}}}Bh}{{}DAf}{c{{Dj{DAd}}}Dl}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{}}{{{h{DAd}}{h{DAd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhDAf}}}{{Dj{BfACb}}}}{{{h{AhDAf}}}{{Dj{BfBBf}}}}{{{h{DAd}}{h{AhEj}}}{{Dj{BfEl}}}}000{cc{}}0{{}DAd}{{{h{Ah{Ad{A`}}}}}{{h{AhDAd}}}}{{{h{{Ad{A`}}}}}{{h{DAd}}}}{DAfDAd}{{{h{{Ab{A`}}}}}{{Dj{DAdFj}}}}0{{{h{Fl}}}{{Dj{DAd}}}}{{{h{DAd}}{h{Ahc}}}BfGb}{{{h{DAd}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhDAf}}{h{{Ab{A`}}}}}Bf}{ce{}{}}0{{{h{DAf}}}{{Ad{A`}}}}{{{h{DAf}}}Hf}{{{h{DAd}}{h{DAd}}}{{Dd{Bh}}}}{{{h{DAd}}c}DjHj}{DAd}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}099{{{h{AhDAf}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}}{{{h{AhDAf}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}```{{}n}{{{h{n}}}h}{{{h{n}}}{{h{{Ad{A`}}}}}}{{{h{n}}}{{h{{Ab{A`}}}}}}{{{h{DAh}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}2010{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{n}}}n}{{{h{ADd}}}ADd}{{{h{DAh}}}DAh}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{n}}{h{n}}}Bh}{{{h{DAh}}{h{DAh}}}Bh}{{{h{Ahc}}}{{Dj{nABl}}}{ABnAC`}}{{{h{n}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{Ab{A`}}}}}n}{{}ADd}{{}DAh}{c{{Dj{n}}}Dl}{c{{Dj{DAh}}}Dl}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{}}{{{h{n}}{h{n}}}Eb}{{{h{DAh}}{h{DAh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{AhADd}}}{{Dj{BfBBf}}}}{{{h{AhADd}}}{{Dj{BfACb}}}}{{{h{n}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{DAh}}{h{AhEj}}}{{Dj{BfEl}}}}000{cc{}}{dn}{Kln}22{{}n}{{{Ad{A`}}}DAh}{{{h{Ah{Ad{A`}}}}}{{h{Ahn}}}}{{{h{{Ad{A`}}}}}{{h{n}}}}{ADdn}{{{h{Fl}}}{{Dj{DAh}}}}{{DAhHf}ADd}{{{h{{Ab{A`}}}}}{{Dj{nFj}}}}{{{h{{Ab{A`}}}}}{{Dj{DAhFj}}}}10{{{h{Fl}}}{{Dj{n}}}}4{{{h{n}}{h{Ahc}}}BfGb}{{{h{DAh}}{h{Ahc}}}BfGb}{{{h{n}}}Md}{{{h{{Ab{A`}}}}}DAh}{{{h{n}}c}h{{Gf{{Ab{A`}}}}}}{{{h{DAh}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhADd}}{h{{Ab{A`}}}}}Bf}{ce{}{}}00{nBCn}{{{h{ADd}}}DAh}{{{h{ADd}}}Hf}{{{h{n}}{h{n}}}{{Dd{Bh}}}}{{{h{DAh}}{h{DAh}}}{{Dd{Bh}}}}{{{h{n}}c}DjHj}{{{h{DAh}}c}DjHj}{n}{DAh{{Ad{A`}}}}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00==={{{h{AhADd}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{AhADd}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}}`{{}Md}{{{h{Md}}}h}{{{h{Md}}}{{h{{Ab{A`}}}}}}{{{h{Md}}}{{h{{Ad{A`}}}}}}1{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{Md}}}Md}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Md}}{h{Md}}}Bh}{{{h{Ahc}}}{{Dj{MdABl}}}{ABnAC`}}{{{h{Md}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{c{{Dj{Md}}}Dl}{{}}{{{h{Md}}{h{Md}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{Md}}{h{AhEj}}}{{Dj{BfEl}}}}000{JnMd}{K`Md}{ALhMd}{CjMd}{KdMd}{LdMd}{KhMd}{KfMd}{CbMd}{KnMd}{LfMd}{cc{}}{{}Md}{{{h{Ah{Ad{A`}}}}}{{h{AhMd}}}}{{{h{{Ad{A`}}}}}{{h{Md}}}}{ADdMd}{{{h{{Ab{A`}}}}}{{Dj{MdFj}}}}0{{{h{Fl}}}{{Dj{Md}}}}{{{h{Md}}{h{Ahc}}}BfGb}{{{h{Md}}c}h{{Gf{{Ab{A`}}}}}}{ce{}{}}{{{h{Md}}{h{Md}}}{{Dd{Bh}}}}{{{h{Md}}c}DjHj}{Md}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}7``{{}{{Mj{c}}}DAj}{{{h{{Mj{c}}}}}hDAj}{{{h{{Mj{c}}}}}{{h{{Ab{A`}}}}}DAj}{{{h{{Mj{c}}}}}{{h{{Ad{A`}}}}}DAj}{{{h{c}}}{{h{e}}}{}{}}2{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{Mj{c}}}}}{{Mj{c}}}DAj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{{Mj{c}}}}{h{{Mj{c}}}}}BhDAj}8{c{{Dj{{Mj{e}}}}}DlDAj}{{}ADd}{{}}{{{h{{Mj{c}}}}{h{{Mj{c}}}}}EbDAj}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{{Mj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}DAj}000{Lj{{Mj{Ml}}}}{Ln{{Mj{N`}}}}{cc{}}{Lh{{Mj{Mh}}}}{Ll{{Mj{Mn}}}}{{}{{Mj{c}}}DAj}{{{h{Ah{Ad{A`}}}}}{{h{Ah{Mj{c}}}}}DAj}{{{h{{Ad{A`}}}}}{{h{{Mj{c}}}}}DAj}{ADd{{Mj{c}}}DAj}{{{h{{Ab{A`}}}}}{{Dj{{Mj{c}}Fj}}}DAj}0{{{h{Fl}}}{{Dj{{Mj{c}}}}}DAj}{{{h{{Mj{c}}}}{h{Ahe}}}BfDAjGb}{{{h{{Mj{c}}}}e}hDAj{{Gf{{Ab{A`}}}}}}{ce{}{}}{{{h{{Mj{c}}}}{h{{Mj{c}}}}}{{Dd{Bh}}}DAj}{{{h{{Mj{c}}}}e}DjDAjHj}{{{Mj{c}}}{}DAj}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}7``{{}DAl}{{{h{DAl}}}h}{{{h{DAl}}}{{h{{Ab{A`}}}}}}{{{h{DAl}}}{{h{{Ad{A`}}}}}}1{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DAl}}}DAl}{{{h{DAn}}}DAn}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DAl}}{h{DAl}}}Bh}{{}DAn}{c{{Dj{DAl}}}Dl}{{}}{{{h{DAl}}{h{DAl}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{DAl}}{h{AhEj}}}{{Dj{BfEl}}}}000{cc{}}0{{}DAl}{{{h{Ah{Ad{A`}}}}}{{h{AhDAl}}}}{{{h{{Ad{A`}}}}}{{h{DAl}}}}{DAnDAl}{{{h{{Ab{A`}}}}}{{Dj{DAlFj}}}}0{{{h{Fl}}}{{Dj{DAl}}}}{{{h{DAl}}{h{Ahc}}}BfGb}{{{h{DAl}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhDAn}}{h{{Ab{A`}}}}}Bf}{ce{}{}}0{{{h{DAn}}}{{Ad{A`}}}}{{{h{DAn}}}Hf}{{{h{DAl}}{h{DAl}}}{{Dd{Bh}}}}{{{h{DAl}}c}DjHj}{DAl}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}099``{{}DB`}{{{h{DB`}}}h}{{{h{DB`}}}{{h{{Ab{A`}}}}}}{{{h{DB`}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}20{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DB`}}}DB`}{{{h{DBb}}}DBb}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DB`}}{h{DB`}}}Bh}{{}DBb}{c{{Dj{DB`}}}Dl}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{}}{{{h{DB`}}{h{DB`}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhDBb}}}{{Dj{BfBBf}}}}{{{h{AhDBb}}}{{Dj{BfACb}}}}{{{h{DB`}}{h{AhEj}}}{{Dj{BfEl}}}}000{cc{}}0{{}DB`}{{{h{Ah{Ad{A`}}}}}{{h{AhDB`}}}}{{{h{{Ad{A`}}}}}{{h{DB`}}}}{DBbDB`}{{{h{{Ab{A`}}}}}{{Dj{DB`Fj}}}}0{{{h{Fl}}}{{Dj{DB`}}}}{{{h{DB`}}{h{Ahc}}}BfGb}{{{h{DB`}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhDBb}}{h{{Ab{A`}}}}}Bf}{ce{}{}}0{{{h{DBb}}}{{Ad{A`}}}}{{{h{DBb}}}Hf}{{{h{DB`}}{h{DB`}}}{{Dd{Bh}}}}{{{h{DB`}}c}DjHj}{DB`}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}099{{{h{AhDBb}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{AhDBb}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}}``{{}DBd}{{{h{DBd}}}h}{{{h{DBd}}}{{h{{Ad{A`}}}}}}{{{h{DBd}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}10{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DBd}}}DBd}{{{h{DBf}}}DBf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{DBd}}{h{DBd}}}Bh}{{}DBf}{c{{Dj{DBd}}}Dl}{{}}{{{h{DBd}}{h{DBd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{DBd}}{h{AhEj}}}{{Dj{BfEl}}}}000{cc{}}0{{}DBd}{{{h{Ah{Ad{A`}}}}}{{h{AhDBd}}}}{{{h{{Ad{A`}}}}}{{h{DBd}}}}{DBfDBd}{{{h{{Ab{A`}}}}}{{Dj{DBdFj}}}}0{{{h{Fl}}}{{Dj{DBd}}}}{{{h{DBd}}{h{Ahc}}}BfGb}{{{h{DBd}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhDBf}}{h{{Ab{A`}}}}}Bf}{ce{}{}}0{{{h{DBf}}}{{Ad{A`}}}}{{{h{DBf}}}Hf}{{{h{DBd}}{h{DBd}}}{{Dd{Bh}}}}{{{h{DBd}}c}DjHj}{DBd}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}099```{{}DBh}{{{h{DBh}}}h}{{{h{DBh}}}{{h{{Ab{A`}}}}}}{{{h{DBh}}}{{h{{Ad{A`}}}}}}{{{h{DBh}}}E`}2{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{DBh}}}DBh}{{{h{DBj}}}DBj}{{{h{DBl}}}DBl}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{DBh}}{h{DBh}}}Bh}{{}DBl}{c{{Dj{DBh}}}Dl}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{}}{{{h{DBh}}{h{DBh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhDBl}}}{{Dj{BfACb}}}}{{{h{AhDBl}}}{{Dj{BfBBf}}}}{{{h{DBh}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{DBj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DBl}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00{{}DBh}{{{h{Ah{Ad{A`}}}}}{{h{AhDBh}}}}{{{h{{Ad{A`}}}}}{{h{DBh}}}}{DBlDBh}{DBlE`}{{{h{{Ab{A`}}}}}{{Dj{DBhFj}}}}0{{{h{Fl}}}{{Dj{DBh}}}}{E`DBh}{{{h{DBh}}{h{Ahc}}}BfGb}{{E`E`{h{{Ab{A`}}}}}E`}{{E`E`{h{{Ab{A`}}}}}DBh}{{{h{DBh}}c}h{{Gf{{Ab{A`}}}}}}{{{h{AhDBl}}{h{{Ab{A`}}}}}Bf}{ce{}{}}00{{{h{DBl}}}{{Fb{E`E`}}}}{{{h{DBl}}}DBj}{{{h{DBl}}}Hf}{{}DBl}{{{h{DBh}}{h{DBh}}}{{Dd{Bh}}}}{{{h{DBh}}c}DjHj}{DBh}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00;;;{{E`E`}DBl}{{{h{AhDBl}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}}{{{h{AhDBl}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}```````````````````````````````{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{ACb}}}{{Dd{{h{AOb}}}}}}{{{h{DBn}}}DBn}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{AhACj}}Hf}Bf}{{{h{Ah{DC`{c}}}}Hf}BfDCb}0{{{h{Ah{DCd{c}}}}Hf}BfACj}0{{{h{Ah{DCf{c}}}}Hf}Bf{ACjAC`}}{{{h{Ah{DCh{c}}}}Hf}Bf{{ACn{{Ab{A`}}}}}}{{{h{ACb}}}{{h{Fl}}}}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}00{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}00{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}00{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}00{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}00{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}00{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}00{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}00{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}00{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}00{{{h{DBn}}{h{DBn}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhACj}}}{{Dj{{h{{Ab{A`}}}}ACb}}}}{{{h{Ah{DC`{c}}}}}{{Dj{{h{{Ab{A`}}}}BBf}}}DCb}{{{h{Ah{DC`{c}}}}}{{Dj{{h{{Ab{A`}}}}ACb}}}DCb}{{{h{Ah{DCd{c}}}}}{{Dj{{h{{Ab{A`}}}}BBf}}}ACj}{{{h{Ah{DCd{c}}}}}{{Dj{{h{{Ab{A`}}}}ACb}}}ACj}{{{h{Ah{DCf{c}}}}}{{Dj{{h{{Ab{A`}}}}ACb}}}{ACjAC`}}{{{h{Ah{DCh{c}}}}}{{Dj{{h{{Ab{A`}}}}ACb}}}{{ACn{{Ab{A`}}}}}}{{{h{AhACd}}}{{Dj{BfACb}}}}{{{h{Ah{DC`{c}}}}}{{Dj{BfACb}}}BH`}{{{h{Ah{DC`{c}}}}}{{Dj{BfBBf}}}BH`}{{{h{Ah{DCd{c}}}}}{{Dj{BfBBf}}}ACd}{{{h{Ah{DCd{c}}}}}{{Dj{BfACb}}}ACd}{{{h{AhDCj}}}{{Dj{BfACb}}}}{{{h{AhDCj}}}{{Dj{BfBBf}}}}{{{h{ACb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DBn}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00000{DBnACb}{BBfACb}2{ANlDBn}{c{{DC`{c}}}{}}{{{h{Ahc}}}{{h{Ah{DC`{c}}}}}{}}{{{h{ACb}}}{{Dd{{h{AOb}}}}}}{{{h{DBn}}{h{Ahc}}}BfGb}`{{{h{{DC`{c}}}}}{{h{c}}}{}}{{{h{{DCd{c}}}}}{{h{c}}}{}}{{{h{{DCh{c}}}}}{{h{c}}}{{ACn{{Ab{A`}}}}}}{{{h{Ah{DC`{c}}}}}{{h{Ahc}}}{}}{{{h{Ah{DCd{c}}}}}{{h{Ahc}}}{}}{ce{}{}}000000{{{DC`{c}}}c{}}{{{DCd{c}}}c{}}{{{DCh{c}}}c{{ACn{{Ab{A`}}}}}}{{{h{ACb}}}DBn}={c{{DCd{c}}}{}}{c{{DCh{c}}}{{ACn{{Ab{A`}}}}}}{{DBnc}ACb{{AH`{{AJ`{AOb}}}}}}{{{AJ`{c}}}{{AJ`{{DC`{c}}}}}{}}{{{AJ`{c}}}{{AJ`{{DCd{c}}}}}{}}{{{h{Ahc}}}{{h{Ah{DC`{c}}}}}{}}{{{h{Ahc}}}{{h{Ah{DCd{c}}}}}{}}{{{h{{DCh{c}}}}}E`{{ACn{{Ab{A`}}}}}}{{{h{AhABn}}{h{Ah{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{Ah{DC`{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfBBf}}}BGj}{{{h{Ah{DC`{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfACb}}}BGj}{{{h{Ah{DCd{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfACb}}}ABn}{{{h{Ah{DCd{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfBBf}}}ABn}{{{h{Ah{DCf{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfACb}}}{ABnAC`}}{{{h{Ah{DCh{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{HfACb}}}{{ACn{{Ab{A`}}}}}}{{{h{Ahc}}}{{Dj{EbABl}}}{}}000{{{h{Ah{DC`{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{BfACb}}}BGj}{{{h{Ah{DC`{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{BfBBf}}}BGj}{{{h{Ah{DCd{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{BfBBf}}}ABn}{{{h{Ah{DCd{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{BfACb}}}ABn}{{{h{AhABn}}{h{Ah{Ab{A`}}}}}{{Dj{BfACb}}}}{{{h{Ahc}}}{{Dj{BAjABl}}}{}}000{{{h{Ahc}}}{{Dj{BAlABl}}}{}}000{{{h{Ahc}}}{{Dj{OlABl}}}{}}000{{{h{Ahc}}}{{Dj{BAnABl}}}{}}000{{{h{Ahc}}{h{Ah{Ab{A`}}}}}{{Dj{BfABl}}}{}}000{{{h{Ah{DCf{c}}}}{h{Ah{ADj{A`}}}}}{{Dj{HfACb}}}{ABnAC`}}{{{h{AhABn}}{h{Ah{ADj{A`}}}}E`}{{Dj{HfACb}}}}{{{h{Ahc}}}{{Dj{AEjABl}}}{}}000{{{h{Ahc}}}{{Dj{DbABl}}}{}}000{{{h{Ahc}}}{{Dj{E`ABl}}}{}}000{{{h{Ahc}}}{{Dj{A`ABl}}}{}}000{{{h{Ah{DCh{c}}}}E`}Bf{{ACn{{Ab{A`}}}}}}{{}DCj}{{{h{ACb}}}{{Dd{{h{AOb}}}}}}{{{h{AhABn}}E`}{{DCf{ABn}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}0000000000000{{{h{c}}}If{}}000000{ce{}{}}000000{{{h{AhACd}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{Ah{DC`{c}}}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}BH`}{{{h{Ah{DC`{c}}}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}BH`}{{{h{Ah{DCd{c}}}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}ACd}{{{h{Ah{DCd{c}}}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}ACd}{{{h{AhDCj}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}}{{{h{AhDCj}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}}{{{h{Ah{DC`{c}}}}{h{{Ab{A`}}}}}{{Dj{BfBBf}}}BH`}{{{h{Ah{DC`{c}}}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}BH`}{{{h{Ah{DCd{c}}}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}ACd}{{{h{Ah{DCd{c}}}}{h{{Ab{A`}}}}}{{Dj{BfBBf}}}ACd}{{{h{AhACd}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}}{{{h{AhDCj}}{h{{Ab{A`}}}}}{{Dj{BfBBf}}}}{{{h{AhDCj}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}}```````````````````````````````````````{{AFn{h{{J`{c}}}}{h{Jb}}}{{Dj{AFnJf}}}Jh}{{{h{AFn}}}}{{{h{AhAFn}}}}{{{h{AhAFn}}}DCl}{{{h{AFn}}}DCl}{{JdJd}}{{{h{c}}}{{h{e}}}{}{}}000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000000000{{{h{{J`{c}}}}}{{J`{c}}}DCn}{{{h{AFn}}}AFn}{{{h{Jd}}}Jd}{{{h{ALn}}}ALn}{{{h{ACf}}}ACf}{{{h{DD`}}}DD`}{{{h{AGn}}}AGn}{{{h{AHh}}}AHh}{{{h{AHf}}}AHf}{{{h{DDb}}}DDb}{{{h{AGd}}}AGd}{{{h{DDd}}}DDd}{{{h{DDf}}}DDf}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000000{{{h{AFn}}{h{AFn}}}Bh}{{{h{Jd}}{h{Jd}}}Bh}{{{h{ALn}}{h{ALn}}}Bh}{{{h{ACf}}{h{ACf}}}Bh}{{{h{DD`}}{h{DD`}}}Bh}4``{{{h{{J`{c}}}}}{{DDj{DDh}}}DCn}{{{DE`{}{{DDl{c}}{DDn{e}}}}}e{}{}}{AFnDD`}{InACf}1{{}{{J`{DEb}}}}{c{{Dj{AFn}}}Dl}{c{{Dj{Jd}}}Dl}{c{{Dj{ACf}}}Dl}{c{{Dj{DD`}}}Dl}{{{h{AFn}}}DEd}{{{h{Ah{J`{c}}}}}BfDCn}{{{h{{J`{c}}}}{h{{J`{c}}}}}EbDCn}{{{h{AFn}}{h{AFn}}}Eb}{{{h{Jd}}{h{Jd}}}Eb}{{{h{ALn}}{h{ALn}}}Eb}{{{h{ACf}}{h{ACf}}}Eb}{{{h{DD`}}{h{DD`}}}Eb}{{{h{AGn}}{h{AGn}}}Eb}{{{h{AHh}}{h{AHh}}}Eb}{{{h{AHf}}{h{AHf}}}Eb}{{{h{DDb}}{h{DDb}}}Eb}{{{h{AGd}}{h{AGd}}}Eb}{{{h{DDd}}{h{DDd}}}Eb}{{{h{DDf}}{h{DDf}}}Eb};{{{h{c}}{h{e}}}Eb{}{}}0000000000000000000000000{{{h{{J`{c}}}}{h{AhEj}}}{{Dj{BfEl}}}DCn}{{{h{AFn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Jd}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{ALn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{ACf}}{h{AhEj}}}{{Dj{BfEl}}}}00{{{h{DD`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AGn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AHh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AHf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DDb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AGd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DDd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DDf}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{DD`AFn}1111{DD`ACf}22{JfAGn}{ANlAGn}{ANlAHh}{DDfAHh}{DDdAHh}7{AO`AHh}{JfAHh}9{ANlAHf}{AGnAHf};{ANlDDb}{BO`DDb}{JfDDb}>>>{BAl{{Dj{JdDEf}}}}={{{DDj{DDh}}}{{DEj{{J`{DEh}}}}}}{{{DDj{DDh}}}{{DEj{{J`{DEl}}}}}}{{{DDj{DDh}}}{{DEj{{J`{DEn}}}}}}{{{h{{J`{c}}}}{h{{Ab{A`}}}}}{{Dj{AFnJf}}}AGb}{{{h{{J`{c}}}}{h{Fl}}}{{Dj{AFnJf}}}AGb}{{{h{{J`{c}}}}{h{AJj}}}AFnAGb}{{{h{Fl}}}{{Dj{AFn}}}}{A`{{Dj{JdDEf}}}}{{}{{J`{c}}}DCn}{{{h{{J`{c}}}}{h{Ahe}}}{{Fb{AJjAEb}}}AGb{DF`AC`}}{{{h{AFn}}{h{Ahc}}}BfGb}{{{h{Jd}}{h{Ahc}}}BfGb}{{{h{ALn}}{h{Ahc}}}BfGb}{{{h{ACf}}{h{Ahc}}}BfGb}{{{h{DD`}}{h{Ahc}}}BfGb}``{ce{}{}}000000000000{{{h{DDf}}}A`}{{{h{DDd}}}Hf}`{{}{{J`{DEb}}}}{{{h{{J`{c}}}}{h{Ahe}}}AFnAGb{DF`AC`}}{{{h{AhAFn}}}Bf}{{{h{AFn}}{h{AFn}}}{{Dd{Bh}}}}{{{h{Jd}}{h{Jd}}}{{Dd{Bh}}}}{{{h{ALn}}{h{ALn}}}{{Dd{Bh}}}}{{{h{ACf}}{h{ACf}}}{{Dd{Bh}}}}{{{h{DD`}}{h{DD`}}}{{Dd{Bh}}}}{{}Hf}000{{{h{Ah{Ab{DFb}}}}}{{Dj{{J`{c}}Jf}}}{DCnDFd}}{{{h{Ah{Ab{DFb}}}}}{{Dj{{J`{DEh}}Jf}}}}{{{h{Ah{Ab{DFb}}}}}{{Dj{{J`{DEl}}Jf}}}}{{{h{Ah{Ab{DFb}}}}}{{Dj{{J`{DEn}}Jf}}}}{{{h{AFn}}}AEb}{{{h{DD`}}}{{Fb{ACfJd}}}}{{{h{Ah{J`{c}}}}{h{Ahe}}}BfDCn{DF`AC`}}{{{h{{J`{c}}}}{h{AKh}}{h{DFf}}}{{Dj{AEbJf}}}Jh}{{{h{AFn}}}{{Ad{A`}}}}{{{h{AFn}}}AJj}{{{h{Ah{J`{c}}}}{h{{Ad{A`}}}}}BfDCn}{{{h{AFn}}c}DjHj}{{{h{Jd}}c}DjHj}{{{h{ACf}}c}DjHj}{{{h{ACf}}}{{Ad{A`}}}}{{{h{DD`}}c}DjHj}{{{h{{J`{c}}}}{h{AKh}}{h{AJj}}}CFdAGb}{{{h{{J`{c}}}}{h{AKh}}{h{AJj}}Hf}CFdAGb}1{{{h{{J`{c}}}}{h{AKh}}{h{AJj}}}DFfAGb}{{{h{{J`{c}}}}{h{AKh}}{h{AJj}}{h{{Ad{A`}}}}}DFfAGb}{{{h{{J`{c}}}}{h{AKh}}{h{AJj}}{h{{Ad{A`}}}}}CFdAGb}{{{h{{J`{c}}}}{h{AKh}}{h{AFn}}}AMjAGb}0{{{h{{J`{c}}}}{h{AKh}}{h{AFn}}{h{{Ad{A`}}}}}AMjAGb}{{{h{{J`{c}}}}{h{AKh}}{h{AFn}}{h{Ahe}}}AMjAGb{DF`DFh}}{{}{{J`{DFj}}}}{{{h{AGn}}}{{Dd{{h{AOb}}}}}}{{{h{AHh}}}{{Dd{{h{AOb}}}}}}{{{h{AHf}}}{{Dd{{h{AOb}}}}}}{{{h{DDb}}}{{Dd{{h{AOb}}}}}}{{{h{AGd}}}{{Dd{{h{AOb}}}}}}{{{DE`{}{{DDl{c}}{DDn{e}}}}{h{{J`{g}}}}{Dd{Ll}}}c{}{}Jh}{{AFn{h{{J`{c}}}}{Dd{Ll}}}DD`Jh}{JdBAl}{ACfIn}{DD`AFn}{{{h{c}}}e{}{}}000000000000{{{h{c}}}Ib{}}0000000{JdA`}{c{{Dj{e}}}{}{}}0{BAl{{Dj{Jd}}}}1{A`{{Dj{Jd}}}}22222222222222222222222{{{h{c}}}If{}}000000000000{{}{{J`{DFl}}}}{{{h{{J`{c}}}}{h{AKh}}{h{CFd}}{h{AEb}}}{{Dj{BfJf}}}Jh}{{{h{{J`{c}}}}{h{AMj}}{h{AKh}}{h{In}}}{{Dj{BfJf}}}Jh}{ce{}{}}000000000000{{{h{AFn}}}{{Fb{InJd}}}}`````````````{{{h{DFn}}}{{h{{ADj{Eb}}}}}}{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{e{{Dd{c}}}{CFnCD`}{{Gj{}{{Ef{c}}}}}}{{{h{Ah{Ab{c}}}}}{{Dd{c}}}{CFnCD`}}{{{h{DFn}}}DFn}{{{h{ADl}}}ADl}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Ahc}}}{{Dj{DFnABl}}}{ABnAC`}}{{{h{DFn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DFn}}{h{DFn}}}Eb}{{{h{ADl}}{h{ADl}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{DFn}}{h{Ah{ADj{Cb}}}}{h{Ah{ADj{Db}}}}}{{Dj{KdADl}}}}{{{h{DFn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{ADl}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{ANlADl}1{{{h{{Ab{Cb}}}}{h{{Ab{Eb}}}}}DFn}{{{h{DFn}}}{{h{{ADj{Kd}}}}}}`{ce{}{}}0{{{h{DFn}}}Db}{{{h{ADl}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}000`{{{h{c}}}If{}}066````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{AFh}}}AFh}{{{h{DG`}}}DG`}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{AFh}}{h{AFh}}}Eb}{{{h{DG`}}{h{DG`}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{AFh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DG`}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{ce{}{}}0{{{h{AFh}}}{{Dd{{h{AOb}}}}}}{{{h{DG`}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}066{c{{Dj{Cd}}}Dl}{{{h{Cd}}c}DjHj}````````````````````{{{h{AhDGb}}DGb}DGb}``{{{h{AhAG`}}}{{h{Ah{Ab{A`}}}}}}{{{h{AhAG`}}}{{h{Ah{Ad{A`}}}}}}{{{h{AG`}}}{{h{{Ad{A`}}}}}}{{{h{AG`}}}{{h{{Ab{A`}}}}}}{{DGbDGb}DGb}{{{h{AhDGb}}DGb}Bf}10{{{h{c}}}{{h{e}}}{}{}}043000{{{h{Ahc}}}{{h{Ahe}}}{}{}}076000{{{h{BAb}}}BAb}{{{h{DGb}}}DGb}{{{h{AG`}}}AG`}{{{h{DGd}}}DGd}{{{h{DGf}}}DGf}{{{h{c}}{h{Ahe}}}Bf{}{}}0000{{{h{DGb}}{h{DGb}}}Bh}{{{h{AG`}}{h{AG`}}}Bh}{{{h{Ahc}}}{{Dj{BAbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DGbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{AG`ABl}}}{ABnAC`}}{{{h{BAb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DGb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AG`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{}DGb}{{{h{BAb}}{h{BAb}}}Eb}{{{h{DGb}}{h{DGb}}}Eb}{{{h{AG`}}{h{AG`}}}Eb}{{{h{DGd}}{h{DGd}}}Eb}{{{h{DGf}}{h{DGf}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000{{{h{BAb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DGb}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{AG`}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{DGd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DGf}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{E`DGb}{CdAG`}222{{{Ad{A`}}}AG`}{cAG`{{ACn{Nd}}}}{{{h{Fl}}}{{Dj{AG`}}}}{{DGbDGb}Eb}{{{h{BAb}}{h{Ahc}}}BfGb}{{{h{DGb}}{h{Ahc}}}BfGb}{{{h{AG`}}{h{Ahc}}}BfGb}{ce{}{}}0000``````{{{h{BE`}}DGb}BAb}{{{h{DGb}}{h{DGb}}}{{Dd{Bh}}}}{{{h{AG`}}{h{AG`}}}{{Dd{Bh}}}}`{{{h{AhDGb}}DGb}DGb}`{{{h{BAb}}}{{Dj{BE`ACb}}}}{{{h{DGd}}}{{Dd{{h{AOb}}}}}}{{{h{DGf}}}{{Dd{{h{AOb}}}}}}{AG`{{Ad{A`}}}}{{{h{c}}}e{}{}}0000{{{h{BAb}}}{{Dj{BBf}}}}{{{h{c}}}Ib{}}000{DGbE`}{c{{Dj{e}}}{}{}}000000000{{{h{c}}}If{}}0000>>>>>````````````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{DGh}}}DGh}{{{h{BAd}}}BAd}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{Ahc}}}{{Dj{DGhABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{BAdABl}}}{ABnAC`}}{{{h{DGh}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{BAd}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DGh}}{h{DGh}}}Eb}{{{h{BAd}}{h{BAd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{DGh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{BAd}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}0{{{h{DGh}}{h{Ahc}}}BfGb}{{{h{BAd}}{h{Ahc}}}BfGb}{ce{}{}}0````{{{h{BAd}}}{{Dj{BE`ACb}}}}`{{{h{c}}}e{}{}}0{{{h{BAd}}}{{Dj{BBf}}}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}055```````````````````````````````````````````{{{h{DGj}}}{{h{Fl}}}}{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{DGj}}}DGj}{{{h{DGl}}}DGl}{{{h{DGn}}}DGn}{{{h{DH`}}}DH`}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{DGn}}}{{h{Fl}}}}{{{h{DH`}}}{{h{Fl}}}}{{{h{DGn}}}DGj}{{{h{DH`}}}DGj}{{{h{Ahc}}}{{Dj{DGjABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DGnABl}}}{ABnAC`}}0{{{h{DGj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DGn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DH`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DGj}}{h{DGj}}}Eb}{{{h{DGl}}{h{DGl}}}Eb}{{{h{DGn}}{h{DGn}}}Eb}{{{h{DH`}}{h{DH`}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000{{{h{DGj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DGl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DGn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DH`}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000{{{h{Fl}}}{{Dj{DGj}}}}{ce{}{}}000{DGnDH`}{{{h{DGn}}}{{h{AG`}}}}{{AG`DH`}DGn}{{{h{DGn}}}{{h{DH`}}}}{{{h{DGl}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}000{{{h{c}}}Ib{}}0{Ib{{Dj{DGj}}}}9{{{AJ`{Fl}}}{{Dj{DGj}}}}{c{{Dj{e}}}{}{}}000{{{h{Fl}}}{{Dj{DGjDGl}}}}1111{{{h{c}}}If{}}000<<<<`````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{B@n}}}B@n}{{{h{DHb}}}DHb}{{{h{DHd}}}DHd}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{B@n}}{h{B@n}}}Bh}{{{h{Ahc}}}{{Dj{B@nABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DHbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DHdABl}}}{ABnAC`}}10{{{h{B@n}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DHb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DHd}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{B@n}}{h{B@n}}}Eb}{{{h{DHb}}{h{DHb}}}Eb}{{{h{DHd}}{h{DHd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{B@n}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DHb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DHd}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00{{{h{B@n}}{h{Ahc}}}BfGb}{ce{}{}}00``{{{h{B@n}}}{{Dd{{Ad{A`}}}}}}{{{ADj{Cj}}Cj}DHb}{{{ADj{Cj}}Cj}DHd}{{{h{B@n}}{h{B@n}}}{{Dd{Bh}}}}``{{{h{c}}}e{}{}}00{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00``777````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{DHf}}}DHf}{{{h{DHh}}}DHh}{{{h{DHj}}}DHj}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{Ahc}}}{{Dj{DHfABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DHhABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DHjABl}}}{ABnAC`}}20{{{h{DHf}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DHh}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DHj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}`{{{h{DHf}}{h{DHf}}}Eb}{{{h{DHh}}{h{DHh}}}Eb}{{{h{DHj}}{h{DHj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000``{{{h{DHf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DHh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DHj}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00`{ce{}{}}00{{{h{c}}}e{}{}}00{c{{Dj{e}}}{}{}}00000`{{{h{c}}}If{}}00333````{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{DHl}}}DHl}{{{h{DHn}}}DHn}{{{h{DI`}}}DI`}{{{h{DIb}}}DIb}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{DHl}}{h{DHl}}}Bh}{{{h{DHn}}{h{DHn}}}Bh}{{{h{DI`}}{h{DI`}}}Bh}{{{h{DIb}}{h{DIb}}}Bh}`{{{h{Ahc}}}{{Dj{DHlABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DHnABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DI`ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DIbABl}}}{ABnAC`}}3210{{{h{DHl}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DHn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DI`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DIb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DHl}}{h{DHl}}}Eb}{{{h{DHn}}{h{DHn}}}Eb}{{{h{DI`}}{h{DI`}}}Eb}{{{h{DIb}}{h{DIb}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000{{{h{DHl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DHn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DI`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DIb}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000{{{h{DHl}}{h{Ahc}}}BfGb}{{{h{DHn}}{h{Ahc}}}BfGb}{{{h{DI`}}{h{Ahc}}}BfGb}{{{h{DIb}}{h{Ahc}}}BfGb}{ce{}{}}000{{{h{DHl}}{h{DHl}}}{{Dd{Bh}}}}{{{h{DHn}}{h{DHn}}}{{Dd{Bh}}}}{{{h{DI`}}{h{DI`}}}{{Dd{Bh}}}}{{{h{DIb}}{h{DIb}}}{{Dd{Bh}}}}`{{{h{c}}}e{}{}}000`{c{{Dj{e}}}{}{}}0000000`{{{h{c}}}If{}}000`7777```````{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{DId}}}DId}{{{h{DIf}}}DIf}{{{h{DIh}}}DIh}{{{h{DIj}}}DIj}{{{h{DIl}}}DIl}{{{h{DIn}}}DIn}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{Ahc}}}{{Dj{DIdABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DIfABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DIhABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DIjABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DIlABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DInABl}}}{ABnAC`}}543210{{{h{DId}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DIf}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DIh}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DIj}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DIl}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DIn}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DId}}{h{DId}}}Eb}{{{h{DIf}}{h{DIf}}}Eb}{{{h{DIh}}{h{DIh}}}Eb}{{{h{DIj}}{h{DIj}}}Eb}{{{h{DIl}}{h{DIl}}}Eb}{{{h{DIn}}{h{DIn}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000000000`````````{{{h{DId}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DIf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DIh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DIj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DIl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DIn}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00000{ce{}{}}00000````````{{{h{c}}}e{}{}}00000{c{{Dj{e}}}{}{}}00000000000{{{h{c}}}If{}}00000333333```````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00`{{{h{DJ`}}}DJ`}{{{h{DJb}}}DJb}{{{h{DJd}}}DJd}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{{h{Ahc}}}{{Dj{DJ`ABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DJbABl}}}{ABnAC`}}{{{h{Ahc}}}{{Dj{DJdABl}}}{ABnAC`}}20{{{h{DJ`}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DJb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DJd}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{DJ`}}{h{DJ`}}}Eb}{{{h{DJb}}{h{DJb}}}Eb}{{{h{DJd}}{h{DJd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{DJ`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DJb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DJd}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00`{ce{}{}}00`{{DGbOlBAbBAbE`IbBAl}DJ`}````````{{{h{c}}}e{}{}}00{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00``444`{{{h{CCd}}}{{h{DJf}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{CCd}}}CCd}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{CCd}}{h{CCd}}}Eb}??{{{h{CCd}}{h{AhEj}}}{{Dj{BfEl}}}}0<{{{h{CCd}}}{{h{Fl}}}}<{{{h{CCd}}}{{Dd{{h{AOb}}}}}};{{{h{c}}}Ib{}};;:>````````{{OlOl}Ol}`````````````````````````````````````````````````````````````````````````````````````````````99999999999998888888888888{{{h{DJh}}}DJh}{{{h{C@l}}}C@l}{{{h{AL`}}}AL`}{{{h{DJj}}}DJj}{{{h{DJl}}}DJl}{{{h{DJn}}}DJn}{{{h{AKj}}}AKj}{{{h{ADn}}}ADn}{{{h{DK`}}}DK`}{{{h{DKb}}}DKb}{{{h{DKd}}}DKd}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000{{{h{AL`}}{h{AL`}}}Bh}{{{h{DJl}}{h{DJl}}}Bh}{{{h{DJn}}{h{DJn}}}Bh}{{{h{DKb}}{h{DKb}}}Bh}{{{h{AhDJh}}DJh}Bf}{{{h{AhDKd}}DKd}Bf}{{}DJh}{{}DKd}{c{{Dj{DJh}}}Dl}{c{{Dj{DKb}}}Dl}{c{{Dj{DKd}}}Dl}{DKb{{Dj{AAnAHb}}}}{{{h{DKd}}}{{Dj{AAnAHb}}}}{{{h{DJh}}{h{DJh}}}Eb}{{{h{C@l}}{h{C@l}}}Eb}{{{h{AL`}}{h{AL`}}}Eb}{{{h{DJj}}{h{DJj}}}Eb}{{{h{DJl}}{h{DJl}}}Eb}{{{h{DJn}}{h{DJn}}}Eb}{{{h{AKj}}{h{AKj}}}Eb}{{{h{ADn}}{h{ADn}}}Eb}{{{h{DK`}}{h{DK`}}}Eb}{{{h{DKb}}{h{DKb}}}Eb}{{{h{DKd}}{h{DKd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000000000000000``{{{h{ABj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DJh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{C@l}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AL`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DJj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DJl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DJn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AKj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{ADn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DK`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DKf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DKb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DKd}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}{ABlABj}{FjABj}{ACbABj}{ANlABj}4444{BD`DJj}{ANlDJj}66{DKhAKj}7{ANlAKj}{DK`AKj}{DKjAKj}:{ANlADn}{ANlDK`}<{ANlDKf}={AAnDKb}>{AAlDKb}?{{{h{Fl}}}{{Dj{DKb}}}}{DbDKb}{{{h{{ALb{}{{Fn{c}}}}}}C@l{h{{J`{e}}}}}{{Dj{{Dd{AAj}}c}}}EnAGb}{{{h{DJh}}{h{Ahc}}}BfGb}{{{h{DJl}}{h{Ahc}}}BfGb}{{{h{DJn}}{h{Ahc}}}BfGb}{{{h{DKb}}{h{Ahc}}}BfGb}{{{h{DKd}}{h{Ahc}}}BfGb}```{ce{}{}}000000000000``{{{h{AL`}}{h{AL`}}}{{Dd{Bh}}}}{{{h{DJl}}{h{DJl}}}{{Dd{Bh}}}}{{{h{DJn}}{h{DJn}}}{{Dd{Bh}}}}{{{h{DKb}}{h{DKb}}}{{Dd{Bh}}}}`````````{{{h{DJh}}c}DjHj}{{{h{DKb}}c}DjHj}{{{h{DKd}}c}DjHj}``{{{h{DJl}}}DJn}{{{h{ABj}}}{{Dd{{h{AOb}}}}}}{{{h{DJj}}}{{Dd{{h{AOb}}}}}}{{{h{AKj}}}{{Dd{{h{AOb}}}}}}{{{h{ADn}}}{{Dd{{h{AOb}}}}}}{{{h{DK`}}}{{Dd{{h{AOb}}}}}}{{{h{DKf}}}{{Dd{{h{AOb}}}}}}`````````{DKb{{Dj{AAlAFf}}}}{{{h{DKd}}}{{Dj{AAlAFf}}}}{{{h{c}}}e{}{}}0000000000{{{h{c}}}Ib{}}000000{DKbDb}{c{{Dj{e}}}{}{}}0000000000000000000000000{{{h{c}}}If{}}000000000000````{{{h{AhDJh}}{h{{D`{AMd}}}}}{{Dj{{D`{AAf}}DKl}}}}{{{h{AhDKd}}{h{{D`{AMd}}}}}{{Dj{{D`{AAf}}DKl}}}}`{ce{}{}}000000000000`````````````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{DKn{c}}}}}{{DKn{c}}}{AlBB`{DL`{A`}}{AH`{A`}}}}{{{h{DLb}}}DLb}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{{DKn{c}}}}{h{{DKn{c}}}}}Bh{BjBB`{DL`{A`}}{AH`{A`}}}}{{{h{DLb}}{h{DLb}}}Bh}{{{h{Ahc}}}{{Dj{{DKn{e}}ABl}}}{ABnAC`}{BB`{DL`{A`}}{AH`{A`}}}}{{{h{{DKn{c}}}}{h{Ahe}}}{{Dj{HfACb}}}{BB`{DL`{A`}}{AH`{A`}}}{ACdAC`}}{c{{Dj{{DKn{e}}}}}Dl{BB`{DL`{A`}}{AH`{A`}}Dn}}{c{{Dj{DLd}}}Dl}{c{{Dj{DLb}}}Dl}{{{h{{DKn{c}}}}{h{{DKn{c}}}}}Eb{EdBB`{DL`{A`}}{AH`{A`}}}}{{{h{DLd}}{h{DLd}}}Eb}{{{h{DLb}}{h{DLb}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{{DKn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnBB`{DL`{A`}}{AH`{A`}}}}{{{h{DLd}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DLb}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}00{{{h{{DKn{c}}}}{h{Ahe}}}Bf{GdBB`{DL`{A`}}{AH`{A`}}}Gb}{{{h{DLb}}{h{Ahc}}}BfGb}{ce{}{}}00```{{{h{{DKn{c}}}}{h{{DKn{c}}}}}{{Dd{Bh}}}{HhBB`{DL`{A`}}{AH`{A`}}}}{{{h{DLb}}{h{DLb}}}{{Dd{Bh}}}}`{{{h{{DKn{c}}}}e}Dj{BB`{DL`{A`}}{AH`{A`}}Hl}Hj}{{{h{DLd}}c}DjHj}{{{h{DLb}}c}DjHj}`{{{h{{DKn{c}}}}}DLb{BB`{DL`{A`}}{AH`{A`}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}{DLb{{Dj{{DKn{c}}}}}{BB`{DL`{A`}}{AH`{A`}}}}11111{{{h{c}}}If{}}00``;;;````````````````````````````````````````{{AEb{h{{J`{c}}}}{h{Jb}}}{{Dj{AEbJf}}}Jh}{{AJj{h{Jb}}}{{Dj{AJjJf}}}}{{{h{AJj}}}}{{{h{AEb}}}}{{{h{AKh}}}}{{{h{AhAJj}}}}{{{h{AhAEb}}}}{{{h{AhAKh}}}}{{{h{AhAEb}}}DLf}{{{h{AEb}}}DLf}{{{h{AJj}}}{{h{{Ad{A`}}}}}}{{{h{AKh}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000{{{h{DEl}}}DEl}{{{h{DEn}}}DEn}{{{h{DEh}}}DEh}{{{h{DFj}}}DFj}{{{h{DFl}}}DFl}{{{h{DEb}}}DEb}{{{h{AJj}}}AJj}{{{h{AEb}}}AEb}{{{h{DEf}}}DEf}{{{h{Jb}}}Jb}{{{h{AKh}}}AKh}{{{h{Jf}}}Jf}{{{h{c}}{h{Ahe}}}Bf{}{}}00000000000{{{h{DEl}}{h{DEl}}}Bh}{{{h{DEn}}{h{DEn}}}Bh}{{{h{DEh}}{h{DEh}}}Bh}{{{h{DFj}}{h{DFj}}}Bh}{{{h{DFl}}{h{DFl}}}Bh}{{{h{DEb}}{h{DEb}}}Bh}{{{h{AEb}}{h{AEb}}}Bh}{{{h{DEf}}{h{DEf}}}Bh}{{{h{Jb}}{h{Jb}}}Bh}{{{h{AKh}}{h{AKh}}}Bh}{{{h{Jf}}{h{Jf}}}Bh}4{{{h{AEb}}{h{AEb}}}{{Dj{AEbJf}}}}{{{h{{Ab{{h{AEb}}}}}}}{{Dj{AEbJf}}}}`{{A`Hf}Bf}000000{c{{Dj{AJj}}}Dl}{c{{Dj{AEb}}}Dl}{{{h{AJj}}}DEd}```{{{h{DEl}}{h{DEl}}}Eb}{{{h{DEn}}{h{DEn}}}Eb}{{{h{DEh}}{h{DEh}}}Eb}{{{h{DFj}}{h{DFj}}}Eb}{{{h{DFl}}{h{DFl}}}Eb}{{{h{DEb}}{h{DEb}}}Eb}{{{h{AJj}}{h{AJj}}}Eb}{{{h{AEb}}{h{AEb}}}Eb}{{{h{DEf}}{h{DEf}}}Eb}{{{h{Jb}}{h{Jb}}}Eb}{{{h{AKh}}{h{AKh}}}Eb}{{{h{Jf}}{h{Jf}}}Eb}4{{{h{c}}{h{e}}}Eb{}{}}00000000000000000000000{{{h{DEl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DEn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DEh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DFj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DFl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DEb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AJj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AEb}}{h{AhEj}}}{{Dj{BfEl}}}}00{{{h{DEf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{Jb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AKh}}{h{AhEj}}}{{Dj{BfEl}}}}00{{{h{Jf}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}00000{cAJjDLh}{{{h{AFn}}}AJj}2{AFnAJj}3{DLfAEb}{{{h{AFn}}}AEb}{AFnAEb}66{AJjJb}{LfAKh}8{cAKhDLh}{LdAKh}{LhAKh};{DEfJf}{{{Ad{A`}}}{{Dj{JbDLj}}}}{{{Ad{A`}}}AKh}{{{h{{Ab{A`}}}}}{{Dj{AKhJf}}}}{DLlAEb}>;3{{{h{{J`{c}}}}{h{AJj}}}AEbAGb}{{{h{{Ab{A`}}}}}{{Dj{AJjJf}}}}{{{h{{Ab{A`}}}}}{{Dj{AEbJf}}}}4{{{h{Fl}}}{{Dj{AJjJf}}}}{{{h{Fl}}}{{Dj{AEbJf}}}}{{InJd}AEb}{{{h{DEl}}{h{Ahc}}}BfGb}{{{h{DEn}}{h{Ahc}}}BfGb}{{{h{DEh}}{h{Ahc}}}BfGb}{{{h{DFj}}{h{Ahc}}}BfGb}{{{h{DFl}}{h{Ahc}}}BfGb}{{{h{DEb}}{h{Ahc}}}BfGb}{{{h{AEb}}{h{Ahc}}}BfGb}{{{h{DEf}}{h{Ahc}}}BfGb}{{{h{Jb}}{h{Ahc}}}BfGb}{{{h{AKh}}{h{Ahc}}}BfGb}{{{h{Jf}}{h{Ahc}}}BfGb}``{{{h{AJj}}c}h{}}{{{h{Jb}}c}h{}}{{{h{AKh}}c}h{}}{ce{}{}}00000000000{DLh{{Ad{A`}}}}{{{h{AJj}}{h{{J`{c}}}}}AFnAGb}{{AJj{h{Jb}}}{{Dj{AJjJf}}}}{{AEb{h{{J`{c}}}}{h{Jb}}}{{Dj{AEbJf}}}Jh}{AJjAJj}{{AEb{h{{J`{c}}}}}AEbJh}{{{h{Ahc}}}AJj{DF`AC`}}{{{h{AhAJj}}}Bf}{{{h{AhJb}}}Bf}{{{h{DEl}}{h{DEl}}}{{Dd{Bh}}}}{{{h{DEn}}{h{DEn}}}{{Dd{Bh}}}}{{{h{DEh}}{h{DEh}}}{{Dd{Bh}}}}{{{h{DFj}}{h{DFj}}}{{Dd{Bh}}}}{{{h{DFl}}{h{DFl}}}{{Dd{Bh}}}}{{{h{DEb}}{h{DEb}}}{{Dd{Bh}}}}{{{h{AEb}}{h{AEb}}}{{Dd{Bh}}}}{{{h{DEf}}{h{DEf}}}{{Dd{Bh}}}}{{{h{Jb}}{h{Jb}}}{{Dd{Bh}}}}{{{h{AKh}}{h{AKh}}}{{Dd{Bh}}}}{{{h{Jf}}{h{Jf}}}{{Dd{Bh}}}}{{{h{AJj}}{h{{J`{c}}}}}AEbAGb}{{}Jb}{cJbDF`}``{{{h{AJj}}}{{Ad{A`}}}}{{{h{AJj}}c}DjHj}{{{h{AEb}}}{{Ad{A`}}}}{{{h{AEb}}c}DjHj}1{{{h{Jf}}}{{Dd{{h{AOb}}}}}}{Jb{{Ad{A`}}}}{{{h{Mf}}}Mf}{{{h{ALh}}}ALh}2{{{h{c}}}e{}{}}00000000000{{{h{AEb}}}AAf}{{{h{ALj}}}ALj}{{{h{n}}}n}{{{h{c}}}Ib{}}000{c{{Dj{e}}}{}{}}00000000000000000000000{{{h{c}}}If{}}00000000000{{{h{AEb}}{h{{J`{c}}}}{h{AKh}}{h{CFd}}}{{Dj{BfJf}}}Jh}{ce{}{}}00000000000{{{h{AJj}}{h{{J`{c}}}}}{{Fb{InJd}}}AGb}{{{h{AEb}}}{{Fb{InJd}}}}`````````````````{{{h{DLn}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}1{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DLn}}}DLn}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DLn}}{h{DLn}}}Bh}{c{{Dj{DLn}}}Dl}{{{h{DLn}}}DEd}{{{h{DLn}}{h{DLn}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{DLn}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}{{{Ad{A`}}}DLn}{{{h{{Ab{A`}}}}}{{Dj{DLnJf}}}}{{{h{Fl}}}{{Dj{DLnJf}}}}{{{h{DLn}}{h{Ahc}}}BfGb}{ce{}{}}{{{h{AEb}}{h{AJj}}}DLn}{{{h{AhDLn}}}Bf}{{{h{DLn}}{h{DLn}}}{{Dd{Bh}}}}{{{h{DLn}}}{{Ad{A`}}}}{{{h{DLn}}c}DjHj}{{{h{AEb}}{h{AJj}}}{{Ad{A`}}}}{{{h{c}}}e{}{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}9````{{{h{DFf}}}}{{{h{CFd}}}}{{{h{AhDFf}}}}{{{h{AhCFd}}}}{{{h{AhDFf}}}DM`}{{{h{AhCFd}}}DMb}{{{h{DFf}}}DM`}{{{h{CFd}}}DMb}{{{h{DMd}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}0010{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{DMd}}}Hf}{{{h{DMf}}}DMf}{{{h{DFf}}}DFf}{{{h{DMd}}}DMd}{{{h{CFd}}}CFd}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{DMf}}{h{DMf}}}Bh}{{{h{DFf}}{h{DFf}}}Bh}{{{h{DMd}}{h{DMd}}}Bh}{{{h{CFd}}{h{CFd}}}Bh}0<{c{{Dj{CFd}}}Dl}{{{h{DMf}}{h{DMf}}}Eb}{{{h{DFf}}{h{DFf}}}Eb}{{{h{DMd}}{h{{Ab{A`}}}}}Eb}{{{h{DMd}}{h{DMd}}}Eb}{{{h{CFd}}{h{CFd}}}Eb}0{{{h{c}}{h{e}}}Eb{}{}}0000000{{{h{DMf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DFf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DMd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{CFd}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}0{DM`DFf}{{{h{CFd}}}DMd}2{CFdDMd}{DMbCFd}4{{{h{{Ab{A`}}}}DMf}{{Dj{DFfJf}}}}{{{h{{Ab{A`}}}}}{{Dj{CFdJf}}}}00{BAl{{Dj{DMfJf}}}}5{{{h{Fl}}}{{Dj{CFdJf}}}}{{{h{DFf}}{h{Ahc}}}BfGb}{{{h{DMd}}{h{Ahc}}}BfGb}{{{h{CFd}}{h{Ahc}}}BfGb}{ce{}{}}000{{{h{DMd}}}}{DMd}{{{h{DMd}}}Eb}{{{h{DMd}}}Hf}{{{h{AhCFd}}}Bf}{{{h{DMf}}{h{DMf}}}{{Dd{Bh}}}}{{{h{DFf}}{h{DFf}}}{{Dd{Bh}}}}{{{h{DMd}}{h{{Ab{A`}}}}}{{Dd{Bh}}}}{{{h{DMd}}{h{DMd}}}{{Dd{Bh}}}}{{{h{CFd}}{h{CFd}}}{{Dd{Bh}}}}{{{h{CFd}}c}DjHj}{{{h{DFf}}}{{Fb{DMf{Ad{A`}}}}}}{{{h{CFd}}}{{Ad{A`}}}}{{{h{CFd}}}DMd}`{DMfBAl}{{{h{c}}}e{}{}}000{{{h{DMd}}}{{Dj{CFdJf}}}}{{{h{DFf}}}CFd}{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}00{{{h{DMd}}}{{Dj{CFd}}}}{DMd{{Dj{CFd}}}}22222{{{h{c}}}If{}}000{ce{}{}}000``{{{h{DMh}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DMh}}}DMh}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DMh}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}7{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}8{{{h{AhDMh}}}Dd}0{{{h{AhDMh}}Hf}Dd}{{{h{DMh}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{c}}}e{}{}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}0?>`````{{{h{DLl}}}}{{{h{AhDLl}}}}{{{h{DMj}}}{{h{{Ad{A`}}}}}}???>>>{{{h{DLl}}}DLl}{{{h{DMj}}}DMj}{{{h{DMl}}}DMl}???{{{h{DLl}}{h{DLl}}}Bh}{{{h{DMj}}{h{DMj}}}Bh}{{{h{DMl}}{h{DMl}}}Bh}{{{h{DLl}}{h{DLl}}}Eb}{{{h{DMj}}{h{DMj}}}Eb}{{{h{DMl}}{h{DMl}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{DLl}}{h{AhEj}}}{{Dj{BfEl}}}}00{{{h{DMj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DMl}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00{{{Ad{A`}}}DLl}{AEbDLl}{{{h{{J`{c}}}}AJj{Dd{{Ad{A`}}}}}DLlJh}{{{Ad{A`}}}DMj}{{{h{Fl}}}{{Dj{DLl}}}}{{{h{DLl}}{h{Ahc}}}BfGb}{{{h{DMj}}{h{Ahc}}}BfGb}{{{h{DMl}}{h{Ahc}}}BfGb}{ce{}{}}00{{AJj{Ad{A`}}}DLl}{{{h{DLl}}{h{DLl}}}{{Dd{Bh}}}}{{{h{DMj}}{h{DMj}}}{{Dd{Bh}}}}{{{h{DMl}}{h{DMl}}}{{Dd{Bh}}}}{{DLlDLlAJjDMl{Dd{{h{{Ab{A`}}}}}}}DMj}{{DLlDLlAJjDMlc}DMj{{Hb{{Ad{A`}}{Ad{A`}}{Ad{A`}}}{{H`{DMj}}}}}}{{{h{DLl}}}{{Ad{A`}}}}{{{h{c}}}e{}{}}00{DMj{{Ad{A`}}}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00<<<``````````````````````````{{{h{{DN`{}{{DMn{c}}}}}}}c{}}{{{h{DLf}}}}{{{h{DMb}}}}{{{h{Mb}}}}{{{h{DCl}}}}{{{h{DNb}}}}{{{h{Ah{DN`{}{{DMn{c}}}}}}}c{}}{{{h{AhDLf}}}}{{{h{AhDMb}}}}{{{h{AhMb}}}}{{{h{AhDCl}}}}{{{h{AhDNb}}}}{{{h{DLf}}}{{h{{Ad{A`}}}}}}{{{h{DMb}}}{{h{{Ad{A`}}}}}}{{{h{Mb}}}{{h{{Ad{A`}}}}}}{{{h{DCl}}}{{h{{Ad{A`}}}}}}{{{h{DNb}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{DDh}}}DDh}{{{h{DLf}}}DLf}{{{h{DMb}}}DMb}{{{h{Mb}}}Mb}{{{h{DCl}}}DCl}{{{h{DNb}}}DNb}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{{h{DLf}}{h{DLf}}}Bh}{{{h{DMb}}{h{DMb}}}Bh}{{{h{Mb}}{h{Mb}}}Bh}{{{h{DCl}}{h{DCl}}}Bh}{{{h{DNb}}{h{DNb}}}Bh}43210{{DDhDMbA`Hf}BAl}{{{h{DLf}}{h{DLf}}}Eb}{{{h{DMb}}{h{DMb}}}Eb}{{{h{Mb}}{h{Mb}}}Eb}{{{h{DCl}}{h{DCl}}}Eb}{{{h{DNb}}{h{DNb}}}Eb}43210{{{h{c}}{h{e}}}Eb{}{}}000000000{{{h{DDh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DLf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DMb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{Mb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DCl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DNb}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000000{{{Ad{A`}}}DNb}{{{Ad{A`}}}DLf}{{{Ad{A`}}}DMb}{{{Ad{A`}}}Mb}{{{Ad{A`}}}DCl}{{{h{DLf}}{h{Ahc}}}BfGb}{{{h{DMb}}{h{Ahc}}}BfGb}{{{h{Mb}}{h{Ahc}}}BfGb}{{{h{DCl}}{h{Ahc}}}BfGb}{{{h{DNb}}{h{Ahc}}}BfGb}``{{{h{DLf}}c}h{}}{{{h{DMb}}c}h{}}{{{h{Mb}}c}h{}}{{{h{DCl}}c}h{}}{{{h{DNb}}c}h{}}{ce{}{}}000000{{{Dd{{DNf{A`A`HfA`A`A`HfDNd}{{H`{BAl}}}}}}DNd}DNh}{{}DLf}{{}DMb}{{}Mb}{{}DCl}{{{h{AhDCl}}}Bf}{{{h{Ahc}}c}Bf{}}{{{h{DLf}}{h{DLf}}}{{Dd{Bh}}}}{{{h{DMb}}{h{DMb}}}{{Dd{Bh}}}}{{{h{Mb}}{h{Mb}}}{{Dd{Bh}}}}{{{h{DCl}}{h{DCl}}}{{Dd{Bh}}}}{{{h{DNb}}{h{DNb}}}{{Dd{Bh}}}}`{Db{{DDj{DDh}}}}{{{DDj{DDh}}}Bf}{{BAnDNd}Bf}021`{{DDh{DDj{DNd}}}{{DDj{DDh}}}}{DDhHf}{{{DDj{DNd}}Db}{{DDj{DDh}}}}4{DbHf}{{{DDj{DDh}}A`}BAl}{{DDhDLfDLf}BAl}{{DDhDLfDLfHf}BAl}{{DDhDLfA`}BAl}{{DDhDLf}BAl}{{DDhDLfA`Hf}BAl}{{DDhA`HfDLfDb}BAl}33{{DDhA`}BAl}{{DDhA`A`}BAl}01{{DDhA`DLfA`{Dd{{DNf{A`A`A`DNd}{{H`{BAl}}}}}}DNd}BAl}`{{DDhDMbA`A`{Dd{{DNf{A`A`A`A`DNdDb}{{H`{BAl}}}}}}DNd}BAl}{{DDhDMbDMb}BAl}{{DDhDMbA`}BAl}{{DDhDMbA`Hf}BAl}{{DDhA`DMb}BAl}{{DDhA`HfDMb}BAl}{{DDhDMbA`DLf}BAl}{{DDhA`A`A`}BAl}9{{DDhA`DLfA`}BAl}{{DDhA`A`A`A`BAl{Dd{{DNf{A`A`A`A`DNd}{{H`{BAl}}}}}}DNd}BAl}`{{DDhDClA`}BAl}{{DDhDLfDCl}BAl}{{DDhA`DCl}BAl}{{DDhMbBAlDCl}BAl}3```{{DDhA`A`DClA`}BAl}{{DDhA`A`HfDClDNh}BAl}{{DDhA`A`HfMb}BAl}{{DDhMbMb}BAl}{{DDhMbBAlDLf}BAl}{{DDhMbA`}BAl}{{DDhA`Mb}BAl}{{DDhDLfMbA`}BAl}{{DDhA`BAlMbA`}BAl}{DNb{{Ad{A`}}}}{{{h{c}}}e{}{}}00000{c{{Dj{e}}}{}{}}0000000000000{{{h{c}}}If{}}000000`{DLf{{Ad{A`}}}}{DMb{{Ad{A`}}}}{Mb{{Ad{A`}}}}{DCl{{Ad{A`}}}}{ce{}{}}000000`{{{h{DM`}}}}{{{h{AhDM`}}}}{{{h{DM`}}}{{h{{Ad{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DM`}}}DM`}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DM`}}{h{DM`}}}Bh}0{{}DM`}{{{h{DM`}}{h{DM`}}}Eb}0{{{h{c}}{h{e}}}Eb{}{}}0{{{h{DM`}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}{{{h{DM`}}{h{Ahc}}}BfGb}{{{h{DM`}}c}h{}}?6{{{h{DM`}}{h{DM`}}}{{Dd{Bh}}}}{{DDhDLfDM`A`}BAl}{{DDhDMbDM`}BAl}{{DDhDM`A`BAl}BAl}{{DDhA`BAlDM`}BAl}{{DDhDM`A`A`{Dd{{DNf{A`A`A`A`DNdDb}{{H`{BAl}}}}}}DNd}BAl}{{{h{c}}}e{}{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}{ce{}{}}``{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0`````{{{h{DFb}}}DFb}{{{h{c}}{h{Ahe}}}Bf{}{}}{{}DFb}{{{h{DNd}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}077`:999988772```````````{{}{{CFn{}{{CFj{c}}{CFl{e}}}}}CG`{CGbBB`}}{{}{{DNj{c}}}CFn}{{{h{{CFn{}{{CFj{c}}{CFl{e}}}}}}}{{h{e}}}CG`{CGbBB`}}{{{h{{DNj{c}}}}}hCFn}:::{{{h{{DNj{c}}}}}{{h{{Ab{A`}}}}}CFn}:::`{{{h{{DNl{c}}}}}{{DNl{c}}}{AlCFn}}{{{h{Fj}}}Fj}{{{h{{DNj{c}}}}}{{DNj{c}}}{AlCFn}};;;{{{h{{DNj{c}}}}{h{{DNj{c}}}}}Bh{BjCFn}}{{}{{DNl{c}}}CFn}{c{{Dj{{DNj{e}}}}}Dl{CFnDn}}{{{h{Ahc}}Eb}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAj}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAl}{{Dj{BfACb}}}{}}{{{h{Ahc}}Ol}{{Dj{BfACb}}}{}}{{{h{Ahc}}BAn}{{Dj{BfACb}}}{}}{{{h{Ahc}}{h{{Ab{A`}}}}}{{Dj{BfACb}}}{}}{{{h{Ahc}}AEj}{{Dj{BfACb}}}{}}{{{h{Ahc}}Db}{{Dj{BfACb}}}{}}{{{h{Ahc}}E`}{{Dj{BfACb}}}{}}{{{h{Ahc}}A`}{{Dj{BfACb}}}{}}{{}c{}}{{{h{Fj}}{h{Fj}}}Eb}{{{h{{DNj{c}}}}{h{{DNj{c}}}}}Eb{EdCFn}}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{Fj}}}Hf}{{{h{Ah{DNl{c}}}}}{{Dj{BfBBf}}}CFn}{{{h{Ah{DNl{c}}}}}{{Dj{BfACb}}}CFn}{{{h{Fj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{DNj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}CFn}00{cc{}}00{c{{CFn{}{{CFj{e}}{CFl{c}}}}}{CGbBB`}CG`}{{}{{DNj{c}}}CFn}{c{{CFn{}{{CFj{c}}{CFl{e}}}}}CG`{CGbBB`}}{{{DNl{c}}}{{DNj{c}}}CFn}{{}{{DNl{c}}}CFn}{{{h{{Ab{A`}}}}}{{Dj{{CFn{}{{CFj{c}}{CFl{e}}}}Fj}}}CG`{CGbBB`}}{{{h{{Ab{A`}}}}}{{Dj{{DNj{c}}Fj}}}CFn}{{{h{Fl}}}{{Dj{{DNj{c}}}}}{CFnDNn}}{{{h{{Ab{A`}}}}}{{CFn{}{{CFj{c}}{CFl{e}}}}}CG`{CGbBB`}}{{{h{{DNj{c}}}}{h{Ahe}}}Bf{GdCFn}Gb}{e{{CFn{}{{CFj{g}}{CFl{i}}}}}{{ACn{{Ab{A`}}}}}{{Eh{}{{Ef{c}}}}}CG`{CGbBB`}}``{{{h{{DNj{c}}}}{AIb{Hf}}}{{h{{Ab{A`}}}}}CFn}{{{h{{DNj{c}}}}{AIj{Hf}}}{{h{{Ab{A`}}}}}CFn}{{{h{{DNj{c}}}}{AIf{Hf}}}{{h{{Ab{A`}}}}}CFn}{{{h{{DNj{c}}}}AHn}{{h{{Ab{A`}}}}}CFn}{{{h{{DNj{c}}}}Hf}{{h{A`}}}CFn}{{{h{Ah{CG`{}{{CGd{c}}}}}}{h{{Ab{A`}}}}}Bf{}}{{{h{Ah{DNl{c}}}}{h{{Ab{A`}}}}}BfCFn}{ce{}{}}00{{{h{Fj}}}Hf}{{{h{{CG`{}{{CGd{c}}}}}}}c{}}{{{h{{DNl{c}}}}}{}CFn}{{{h{{CG`{}{{CGd{c}}}}}}}Hf{}}{{{h{{DNl{c}}}}}HfCFn}{{{h{{Ab{A`}}}}}{{DNl{c}}}CFn}{{{h{{DNj{c}}}}{h{{DNj{c}}}}}{{Dd{Bh}}}{HhCFn}}`{{{h{{DNj{c}}}}e}Dj{CFnHl}Hj}`{{{CFn{}{{CFj{c}}{CFl{e}}}}}eCG`{CGbBB`}}{{{DNj{c}}}{}CFn}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00>>>{{{h{Ah{DNl{c}}}}{h{{Ab{A`}}}}}{{Dj{HfACb}}}CFn}{{{h{Ah{DNl{c}}}}{h{{Ab{A`}}}}}{{Dj{HfBBf}}}CFn}`````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DO`}}}{{Dd{{DOb{Db}}}}}}`{{{h{AhDF`}}{h{Ahc}}}Bf{DOdAC`}}{{{h{AhDOf}}{h{Ah{Ab{A`}}}}}Bf}{{{h{DO`}}{h{AhEj}}}{{Dj{BfEl}}}}0{DOhDO`}{{{DOb{Db}}}DO`}{cc{}}{{}{{DOl{}{{DOj{c}}}}}{DOn{E@`{{Ab{A`}}}}}}{c{{Dj{{DOl{}{{DOj{e}}}}DO`}}}DOf{DOn{E@`{{Ab{A`}}}}}}{c{{DOl{}{{DOj{c}}}}}{DOn{E@`{{Ab{A`}}}}}}{{{h{AhDF`}}}c{}}{{{h{AhDF`}}AD`}Eb}{{{h{AhDF`}}e}cE@b{{E@d{c}}}}{{{h{AhDF`}}DbDb}Eb}{{{h{DO`}}}{{h{AOb}}}}{ce{}{}}{cDO`{{AH`{{AJ`{AOb}}}}}}{{{h{AhDOf}}}Db}{{{h{AhDOf}}}E`}`{{}c{}}{{{h{DO`}}}{{Dd{BAl}}}}{{{h{AhDOf}}{h{Ah{Ab{A`}}}}}{{Dj{HfBBf}}}}`{{{h{AhDF`}}e}c{}{{E@f{c}}}}{{DF`e}{{E@h{eDF`c}}}{}{{E@f{c}}}}{E`{{DOl{}{{DOj{c}}}}}{DOn{E@`{{Ab{A`}}}}}}`{{{h{DO`}}}{{Dd{{h{AOb}}}}}}{DO`{{AJ`{AOb}}}}{{}E@j}{{{h{c}}}Ib{}}{{{h{AhDOd}}{h{Ahc}}}{{Dj{BfDO`}}}{DF`AC`}}{{{h{AhDF`}}{h{Ahc}}}{{Dj{BfDO`}}}{DOdAC`}}{{{h{AhDOf}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}{ce{}{}}```````````````````{{{h{E@l}}{h{Ahc}}{h{AhIb}}Hf}Bf{DF`AC`}}{{{h{E@n}}{h{Ahc}}{h{AhIb}}Hf}Bf{DF`AC`}}{{{h{EA`}}{h{Ahc}}{h{AhIb}}Hf}Bf{DF`AC`}}{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000000000{c{{Dd{Cf}}}{}}{c{{Dd{Ih}}}{}}{{{h{EAb}}}EAb}{{{h{EAd}}}EAd}{{{h{EAf}}}EAf}{{{h{EAh}}}EAh}{{{h{E@n}}}E@n}{{{h{{EAj{c}}}}}{{EAj{c}}}Al}{{{h{{EAl{c}}}}}{{EAl{c}}}{AlE@bHh}}{{{h{EAn}}}EAn}{{{h{{EB`{c}}}}}{{EB`{c}}}{AlE@b}}{{{h{EA`}}}EA`}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000{{{h{EAb}}{h{EAb}}}Eb}{{{h{EAd}}{h{EAd}}}Eb}{{{h{{EAl{c}}}}{h{{EAl{c}}}}}Eb{EdE@bHh}}{{{h{EAn}}{h{EAn}}}Eb}{{{h{{EB`{c}}}}{h{{EB`{c}}}}}Eb{EdE@b}}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{EAb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EAd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{E@h{ceg}}}}{h{AhEj}}}{{Dj{BfEl}}}EnEnEn}{{{h{{EBb{cegi}}}}{h{AhEj}}}{{Dj{BfEl}}}EnEnEnEn}{{{h{EAf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EAh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{E@n}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{{EAj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{{EAl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnE@bHh}}{{{h{EAn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{EB`{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnE@b}}{{{h{EA`}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000000000{{{AIb{c}}}{{EB`{c}}}E@b}{{{AIh{c}}}{{EB`{c}}}E@b}22{{DbDb}{{Dj{EAbEAd}}}}{ce{}{}}00000000000{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}1{{E@fg}{{EBb{E@fgce}}}{}{}{{AFb{c}{{H`{e}}}}}}{AD`{{Dj{EAbEAd}}}}{{{h{{Ab{c}}}}}{{Dj{{EAj{c}}EBd}}}{}}{c{{Dj{{EAl{e}}EAn}}}Eh{EBfAlDOnE@bHh}}{{eg}{{EB`{c}}}E@b{{EBh{c}}}{{EBh{c}}}}0{{{h{Ah{E@h{egc}}}}}{{Dd{c}}}{}{{E@f{c}}}DF`}{{{h{E@f}}{h{Ahc}}}e{DF`AC`}{}}{{{h{EAb}}{h{Ahc}}}Eb{DF`AC`}}{{{h{{EBb{eicg}}}}{h{Ahk}}}g{}{{E@f{c}}}{}{{AFb{c}{{H`{g}}}}}{DF`AC`}}{{{h{EAf}}{h{Ahc}}}AD`{DF`AC`}}{{{h{EAf}}{h{Ahc}}}CKj{DF`AC`}}{{{h{EAh}}{h{Ahc}}}CKj{DF`AC`}}{{{h{EAh}}{h{Ahc}}}AD`{DF`AC`}}{{{h{E@n}}{h{Ahc}}}A`{DF`AC`}}{{{h{{EAj{c}}}}{h{Ahe}}}{{h{c}}}{}{DF`AC`}}{{{h{{EAl{c}}}}{h{Ahe}}}Hf{E@bHh}{DF`AC`}}{{{h{{EB`{c}}}}{h{Ahe}}}cE@b{DF`AC`}}{{{h{EA`}}{h{Ahc}}}Hf{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Ad{e}}}{DF`AC`}{}}00{{{h{EA`}}{h{Ahc}}}{{DOb{Hf}}}{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{DOb{A`}}}{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Fb{egikmoAaAcAe}}}{DF`AC`}{}{}{}{}{}{}{}{}{}}{{{h{EA`}}{h{Ahc}}}{{Fb{egikmoAa}}}{DF`AC`}{}{}{}{}{}{}{}}444{{{h{EA`}}{h{Ahc}}}BAj{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Fb{egikm}}}{DF`AC`}{}{}{}{}{}}6666{{{h{EA`}}{h{Ahc}}}BBb{DF`AC`}}{{{h{EA`}}{h{Ahc}}}BJj{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Fb{egikmoAaAcAeAgAiAk}}}{DF`AC`}{}{}{}{}{}{}{}{}{}{}{}{}}{{{h{EA`}}{h{Ahc}}}CKj{DF`AC`}}:{{{h{EA`}}{h{Ahc}}}{{EBj{e}}}{DF`AC`}{}};;{{{h{EA`}}{h{Ahc}}}E`{DF`AC`}}<<{{{h{EA`}}{h{Ahc}}}{{Fb{egikmoAaAc}}}{DF`AC`}{}{}{}{}{}{}{}{}}={{{h{EA`}}{h{Ahc}}}{{DOb{Db}}}{DF`AC`}}>{{{h{EA`}}{h{Ahc}}}AD`{DF`AC`}}{{{h{EA`}}{h{Ahc}}}Bf{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Fb{egi}}}{DF`AC`}{}{}{}}{{{h{EA`}}{h{Ahc}}}{{Fb{egik}}}{DF`AC`}{}{}{}{}}{{{h{EA`}}{h{Ahc}}}{{Ad{e}}}{DF`AC`}{}}00{{{h{EA`}}{h{Ahc}}}{{DOb{ACl}}}{DF`AC`}}1{{{h{EA`}}{h{Ahc}}}{{DOb{AEj}}}{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Fb{egikmoAaAcAeAgAi}}}{DF`AC`}{}{}{}{}{}{}{}{}{}{}{}}{{{h{EA`}}{h{Ahc}}}Eb{DF`AC`}}4{{{h{EA`}}{h{Ahc}}}BAl{DF`AC`}}55{{{h{EA`}}{h{Ahc}}}D@l{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Fb{egikmo}}}{DF`AC`}{}{}{}{}{}{}}77{{{h{EA`}}{h{Ahc}}}{{Fb{egikmoAaAcAeAg}}}{DF`AC`}{}{}{}{}{}{}{}{}{}{}}{{{h{EA`}}{h{Ahc}}}{{Fb{eg}}}{DF`AC`}{}{}}{{{h{EA`}}{h{Ahc}}}ACl{DF`AC`}}{{{h{EA`}}{h{Ahc}}}BAn{DF`AC`}};;;{{{h{EA`}}{h{Ahc}}}{{DOb{E`}}}{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Dd{e}}}{DF`AC`}{}}={{{h{EA`}}{h{Ahc}}}A`{DF`AC`}}{{{h{EA`}}{h{Ahc}}}AEj{DF`AC`}}{{{h{EA`}}{h{Ahc}}}Db{DF`AC`}}{{{h{EA`}}{h{Ahc}}}{{Ad{e}}}{DF`AC`}{}}0{{{h{EA`}}{h{Ahc}}}Ol{DF`AC`}}1{{{h{EA`}}{h{Ahc}}}{{Fb{e}}}{DF`AC`}{}}{{E@fc}{{E@h{E@fce}}}DF`{}}{{{h{E@l}}{h{Ahc}}Hf}Ib{DF`AC`}}{{{h{{E@h{egc}}}}}{{Fb{Hf{Dd{Hf}}}}}{}{{E@f{c}}}DF`}{{{h{c}}}e{}{}}000000000{{{h{c}}}Ib{}}0{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}00000000000000000000000{{{h{c}}}If{}}00000000000`{{{h{Ah{EAl{c}}}}{h{{Ab{{Fb{Hf{h{c}}}}}}}}}{{Dj{BfEAn}}}{EBfEBlAlDOnE@bHh}}{ce{}{}}00000000000````````````{{{h{EBh}}}{{h{c}}}{}}{{{h{c}}}{{h{e}}}{}{}}000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000{{{h{{EBn{c}}}}}{{EBn{c}}}Al}{{{h{EC`}}}EC`}{{{h{{ECb{c}}}}}{{ECb{c}}}Al}{{{h{ECd}}}ECd}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{{EBn{c}}}}{h{{EBn{c}}}}}EbEd}{{{h{{ECb{c}}}}{h{{ECb{c}}}}}EbEd}{{{h{{EBn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{EC`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{{ECb{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{ECd}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}000????{{{h{E@d}}}Eb}{{eg}{{ECh{}{{ECf{c}}}}}{}{{EBh{c}}}{{EBh{c}}}}{{ce}{{EBn{E`}}}EBhEBh}{{ce}{{EBn{AEj}}}EBhEBh}{{ce}{{EBn{BAj}}}EBhEBh}{{ce}{{EBn{ACl}}}EBhEBh}{{ce}{{EBn{Ol}}}EBhEBh}{{ce}{{EBn{A`}}}EBhEBh}{{ce}{{EBn{BJj}}}EBhEBh}{{ce}{{EBn{D@l}}}EBhEBh}{{ce}{{EBn{Hf}}}EBhEBh}{{ce}{{EBn{Db}}}EBhEBh}{{ce}{{EBn{BAn}}}EBhEBh}{{ce}{{EBn{BAl}}}EBhEBh}{{ce}EC`EBhEBh}{{ce}{{ECb{CKj}}}EBhEBh}{{ce}{{ECb{AD`}}}EBhEBh}{{ce}ECdEBhEBh}{{eg}{{ECh{}{{ECf{c}}}}}{}{{EBh{c}}}{{EBh{c}}}}9576:{{ce}{{EBn{E`}}}EBhEBh}<>{{ce}{{EBn{AEj}}}EBhEBh}:>{{ce}{{EBn{BAj}}}EBhEBh}7654{{{h{{ECh{}{{ECf{c}}}}}}{h{Ahe}}}c{}{DF`AC`}}{{{h{{EBn{Ol}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{E`}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{AEj}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{BJj}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{Hf}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{ACl}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{BAj}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{D@l}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{BAn}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{BAl}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{A`}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{EBn{Db}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{EC`}}{h{Ahc}}}{}{DF`AC`}}{{{h{{ECb{AD`}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{{ECb{CKj}}}}{h{Ahc}}}{}{DF`AC`}}{{{h{ECd}}{h{Ahc}}}ECj{DF`AC`}}{{E@d{h{Ahc}}}e{DOfAC`}{}}{{eg{h{Ahi}}}c{}{{EBh{c}}}{{EBh{c}}}{DF`AC`}}{{ce{h{Ahg}}}{}EBhEBh{DF`AC`}}00000000000001000000000000{{{h{c}}}e{}{}}000{c{{Dj{e}}}{}{}}0000000{{{h{c}}}If{}}000{ce{}{}}000`````````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{ECl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnECn}}{cc{}}4{{{ADj{c}}}{{Dj{{ECl{c}}EAn}}}ECn}7765```````````{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}}{{Dd{{h{c}}}}}{}{DF`AC`}}{{EDb{h{Ahc}}}{{Dd{e}}}{DF`AC`}{}}{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}Hf}{{EDd{{ED`{}{{Ef{c}}}}c}}}{}{DF`AC`}}{{EDb{h{Ahc}}Hf}{{ADj{e}}}{DF`AC`}{}}{{EDb{h{Ahc}}{h{Ah{Ab{e}}}}}Hf{DF`AC`}{}}{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}Hfi}{{Dj{{EDd{{ED`{}{{Ef{c}}}}c}}EAn}}}{}{DF`AC`}{{AH`{AD`}}}{{AFb{{h{c}}}{{H`{g}}}}}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}}{{Dd{{h{Ahc}}}}}{}{DF`AC`}}5{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}k}{{Dj{{h{c}}EAn}}}{}{DF`AC`}{E@bEBfHhAlDOn}{{EBh{g}}}{{AFb{{h{c}}}{{H`{i}}}}}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}k}{{Dj{{h{Ahc}}EAn}}}{}{DF`AC`}{E@bEBfHhAlDOn}{{EBh{g}}}{{AFb{{h{c}}}{{H`{i}}}}}}{{{h{AhDF`}}{h{Ahc}}}Bf{DOdAC`}}{{{h{AhDOf}}{h{Ah{Ab{A`}}}}}Bf}{{}{{DOl{}{{DOj{c}}}}}{DOn{E@`{{Ab{A`}}}}}}{c{{Dj{{DOl{}{{DOj{e}}}}DO`}}}DOf{DOn{E@`{{Ab{A`}}}}}}{c{{DOl{}{{DOj{c}}}}}{DOn{E@`{{Ab{A`}}}}}}{{{h{AhDF`}}}c{}}{{{h{AhDF`}}AD`}Eb}{{{h{AhDF`}}e}cE@b{{E@d{c}}}}{{{h{AhDF`}}DbDb}Eb}{{E@fg}{{EBb{E@fgce}}}{}{}{{AFb{c}{{H`{e}}}}}}{{{h{AhDOf}}}Db}{{{h{AhDOf}}}E`}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}Hf}{{Fb{{h{Ah{Ab{c}}}}{h{Ah{Ab{c}}}}}}}{}{DF`AC`}}{{}c{}}{{{h{E@f}}{h{Ahc}}}e{DF`AC`}{}}{{{h{AhDF`}}e}c{}{{E@f{c}}}}{{E@fc}{{E@h{E@fce}}}DF`{}}{{DF`e}{{E@h{eDF`c}}}{}{{E@f{c}}}}{E`{{DOl{}{{DOj{c}}}}}{DOn{E@`{{Ab{A`}}}}}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}}Bf{}{DF`AC`}}{{}E@j}{{{h{AhDF`}}{h{Ahc}}}{{Dj{BfDO`}}}{DOdAC`}}{{{h{AhDOf}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}}````{{{h{Ahc}}}{{h{AhDOf}}}{}}00{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{EDf}}}EDf}{{{h{EDh}}}EDh}{{{h{E@j}}}E@j}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{}EDf}:{{{h{EDh}}{h{EDh}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhEDf}}{h{Ah{Ab{A`}}}}}Bf}{{{h{AhEDh}}{h{Ah{Ab{A`}}}}}Bf}{{{h{AhE@j}}{h{Ah{Ab{A`}}}}}Bf}{{{h{EDf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EDh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{E@j}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}00{c{{Dj{EDhDO`}}}DOf}{{}EDh}{ce{}{}}00`{{{h{AhEDf}}}Db}{{{h{AhEDh}}}Db}{{{h{AhE@j}}}Db}{{{h{AhEDf}}}E`}{{{h{AhEDh}}}E`}{{{h{AhE@j}}}E`}{{{h{c}}}e{}{}}00{{{h{AhEDf}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}}{{{h{AhEDh}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}}{{{h{AhE@j}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}}{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00<<<```{{{h{Ahc}}}{{h{AhDOf}}}{}}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{EDj{ce}}}}}{{EDj{ce}}}{EDlDOlAl}{DOfAl}}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{Ah{EDn{c}}}}{h{Ah{Ab{A`}}}}}BfBGj}{{{h{Ah{EDj{ce}}}}{h{Ah{Ab{A`}}}}}Bf{{EDl{}{{Ef{Db}}}}DOl}DOf}{{{h{{EDn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{EE`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{EDj{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnEDlDOl}{EnDOf}}{cc{}}00{ce{}{}}00{c{{EDn{c}}}BGj}{{cE`e}{{EDj{ce}}}{EDlDOl}DOf}{{{h{Ah{EDn{c}}}}}DbBGj}{{{h{Ah{EDj{ce}}}}}Db{{EDl{}{{Ef{Db}}}}DOl}DOf}{{{h{Ah{EDn{c}}}}}E`BGj}{{{h{Ah{EDj{ce}}}}}E`{{EDl{}{{Ef{Db}}}}DOl}DOf}{{{h{Ah{EDj{ce}}}}}{{Dj{BfDO`}}}{EDlDOl}DOf}{{{h{EE`}}}{{Dd{{h{AOb}}}}}}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{{{h{Ah{EDn{c}}}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}BGj}{{{h{Ah{EDj{ce}}}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}{{EDl{}{{Ef{Db}}}}DOl}DOf}{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00>>>`{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{EEb}}}EEb}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{EEb}}{h{EEb}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{AhEEb}}{h{Ah{Ab{A`}}}}}Bf}{{{h{EEb}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}{ce{}{}}{{E`E`}EEb}{{{h{AhEEb}}}Db}{{{h{AhEEb}}}E`}{{{h{c}}}e{}{}}{{{h{AhEEb}}{h{Ah{Ab{A`}}}}}{{Dj{BfDO`}}}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}7````{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}}{{Dd{{h{c}}}}}{}{DF`AC`}}{{EDb{h{Ahc}}}{{Dd{e}}}{DF`AC`}{}}{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}Hf}{{EDd{{ED`{}{{Ef{c}}}}c}}}{}{DF`AC`}}{{EDb{h{Ahc}}Hf}{{ADj{e}}}{DF`AC`}{}}{{EDb{h{Ahc}}{h{Ah{Ab{e}}}}}Hf{DF`AC`}{}}{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}Hfi}{{Dj{{EDd{{ED`{}{{Ef{c}}}}c}}EAn}}}{}{DF`AC`}{{AH`{AD`}}}{{AFb{{h{c}}}{{H`{g}}}}}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}}{{Dd{{h{Ahc}}}}}{}{DF`AC`}}5{{{h{{ED`{}{{Ef{c}}}}}}{h{Ahe}}k}{{Dj{{h{c}}EAn}}}{}{DF`AC`}{E@bEBfHhAlDOn}{{EBh{g}}}{{AFb{{h{c}}}{{H`{i}}}}}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}k}{{Dj{{h{Ahc}}EAn}}}{}{DF`AC`}{E@bEBfHhAlDOn}{{EBh{g}}}{{AFb{{h{c}}}{{H`{i}}}}}}{{{h{{EDd{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnAC`}En}{cc{}}`{ce{}{}}{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}1{{{h{{EDd{ec}}}}}Hf{}{{EEd{Hf}{{H`{c}}}}AC`}}{{{h{Ah{EDd{ec}}}}}Dd{}{{EEd{Hf}{{H`{c}}}}AC`}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}Hf}{{Fb{{h{Ah{Ab{c}}}}{h{Ah{Ab{c}}}}}}}{}{DF`AC`}}{{{h{Ah{ED`{}{{Ef{c}}}}}}{h{Ahe}}}Bf{}{DF`AC`}}{{{h{{EDd{ec}}}}}{{Fb{Hf{Dd{Hf}}}}}{}{{EEd{Hf}{{H`{c}}}}AC`}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}9```{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{EEf}}}EEf}{{{h{EEh}}}EEh}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{EEf}}{h{EEf}}}Eb}{{{h{EEf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EEj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EEh}}{h{AhEj}}}{{Dj{BfEl}}}}{{{ADj{Hf}}}EEf}{cc{}}{{{ADj{Db}}}EEf}11{{{h{EEf}}Hf}Hf}{ce{}{}}00{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}0{EEfEEh}22{EEf{{ADj{Hf}}}}{{{h{EEf}}}Eb}{{{h{EEf}}}EEj}{{{h{EEf}}}Hf}{{{h{AhEEj}}}{{Dd{Hf}}}}{{{h{AhEEh}}}Dd}{{{h{Ahc}}HfHf}EEf{DF`AC`}}{{{h{Ahc}}HfgHf}{{Dj{EEfEAn}}}{DF`AC`}{{AH`{AD`}}}{{AFb{Hf}{{H`{e}}}}}}{{{h{EEj}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{EEh}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{c}}}e{}{}}0{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}0{c{{Dj{e}}}{}{}}00000{{{h{c}}}If{}}00{ce{}{}}00``{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{DLj}}}DLj}{{{h{c}}{h{Ahe}}}Bf{}{}}{{{h{DLj}}{h{DLj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{DLj}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{{{h{DLj}}{h{Ahc}}}BfGb}9={{{h{c}}}Ib{}}<<;:`{{{h{AMj}}}}{{{h{AhAMj}}}}{{{h{AMj}}}{{h{{Ad{A`}}}}}}<;{{{h{AMj}}}AMj}:{{{h{AMj}}{h{AMj}}}Bh}{c{{Dj{AMj}}}Dl}{{{h{AMj}}{h{AMj}}}Eb};;{{{h{AMj}}{h{AhEj}}}{{Dj{BfEl}}}}00:{{{h{{Ab{A`}}}}}{{Dj{AMjJf}}}}{{{h{Fl}}}{{Dj{AMjJf}}}}{{{h{AMj}}{h{Ahc}}}BfGb}{{{h{AMj}}c}h{}}{ce{}{}}{{{h{AMj}}{h{AMj}}}{{Dd{Bh}}}}{{{h{AMj}}}{{Ad{A`}}}}{{{h{AMj}}c}DjHj}{{{h{c}}}e{}{}}{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}7`````````````````````````````````````````````````````{{{h{EEl}}}{{h{{Ab{A`}}}}}}{{{h{c}}}{{h{e}}}{}{}}000000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000000000000{{{h{{EEn{c}}}}}{{EEn{c}}}{Al{Df{AAb}}}}{{{h{AEl}}}AEl}{{{h{EF`}}}EF`}{{{h{EFb}}}EFb}{{{h{EFd}}}EFd}{{{h{AFf}}}AFf}{{{h{AHb}}}AHb}{{{h{EFf}}}EFf}{{{h{EEl}}}EEl}{{{h{DKh}}}DKh}{{{h{DKj}}}DKj}{{{h{EFh}}}EFh}{{{h{EFj}}}EFj}{{{h{c}}{h{Ahe}}}Bf{}{}}000000000000{{{h{{EEn{c}}}}{h{{EEn{c}}}}}Bh{Bj{Df{AAb}}}}{{{h{AEl}}{h{AEl}}}Bh}{{{h{EEl}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{{EEn{c}}}}{h{{EEn{c}}}}}Eb{Ed{Df{AAb}}}}{{{h{AEl}}{h{AEl}}}Eb}{{{h{EF`}}{h{EF`}}}Eb}{{{h{EFb}}{h{EFb}}}Eb}{{{h{EFd}}{h{EFd}}}Eb}{{{h{AFf}}{h{AFf}}}Eb}{{{h{AHb}}{h{AHb}}}Eb}{{{h{EFf}}{h{EFf}}}Eb}{{{h{EEl}}{h{EEl}}}Eb}{{{h{DKh}}{h{DKh}}}Eb}{{{h{DKj}}{h{DKj}}}Eb}{{{h{EFh}}{h{EFh}}}Eb}{{{h{EFj}}{h{EFj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0000000000000000000000000{{{h{{AKf{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{En{Df{Ch}}}}{{{h{{EEn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{En{Df{AAb}}}}{{{h{AEl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EF`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EFb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EFd}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AFf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{AHb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EFf}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EEl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{DKh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{DKj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EFh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EFj}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{{EFl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}CGl}{{{h{{EFl{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{cc{}}00000{ANlEFd}11111{EF`DKh}{EFdDKh}{ANlDKh}{EFbDKh}5{AM`DKh}{AM`DKj}7{ANlDKj}88{ANlEFj}{ANl{{EFl{c}}}{}}:{ACb{{EFl{c}}}{}}{{{h{{EEn{c}}}}{h{Ahe}}}Bf{Gd{Df{AAb}}}Gb}{{{h{AEl}}{h{Ahc}}}BfGb}{{{h{EEl}}{h{Ahc}}}BfGb}`{ce{}{}}000000000000000{{{AKf{c}}}c{{Df{Ch}}}}{{{EFn{c}}}{{Dj{Ebc}}}{}}{{{h{AEl}}}Lj}{{{h{{AKf{c}}}}{h{Ahe}}Hf{h{M`}}g}{{EFn{{EFl{AM`}}}}}{{Df{Ch}}}{ACdAC`}{{AH`{Db}}}}{{{h{{AKf{c}}}}Hf{h{M`}}Db}{{Dj{LdAM`}}}{{Df{Ch}}}}{{{EFn{c}}g}{{EFn{e}}}{}{}{{BDh{c}{{H`{e}}}}}}{c{{AKf{c}}}{{Df{Ch}}}}{{{h{M`}}AGh}AEl}{{{h{{Ab{A`}}}}}{{Dj{EElEFj}}}}`{{{h{Ah{AKf{c}}}}Hf{h{M`}}CfAAn}{{Dj{LfDKj}}}{{Df{Ch}}}}{{{h{Ah{AKf{c}}}}Hf{h{M`}}CfAAn}{{Dj{LfAM`}}}{{Df{Ch}}}}{{{h{{EEn{c}}}}{h{{EEn{c}}}}}{{Dd{Bh}}}{Hh{Df{AAb}}}}{{{h{AEl}}{h{AEl}}}{{Dd{Bh}}}}{{{h{Ah{AKf{c}}}}{h{Ahe}}Hf{h{M`}}CfAAn}{{Dj{Bf{EFl{AM`}}}}}{{Df{Ch}}}{ACdAC`}}{{{h{EF`}}}{{Dd{{h{AOb}}}}}}{{{h{EFb}}}{{Dd{{h{AOb}}}}}}{{{h{EFd}}}{{Dd{{h{AOb}}}}}}{{{h{AFf}}}{{Dd{{h{AOb}}}}}}{{{h{AHb}}}{{Dd{{h{AOb}}}}}}{{{h{EFf}}}{{Dd{{h{AOb}}}}}}{{{h{DKh}}}{{Dd{{h{AOb}}}}}}{{{h{DKj}}}{{Dd{{h{AOb}}}}}}{{{h{EFh}}}{{Dd{{h{AOb}}}}}}{{{h{EFj}}}{{Dd{{h{AOb}}}}}}{{{h{{EFl{c}}}}}{{Dd{{h{AOb}}}}}AOb}{{{h{Ah{AKf{c}}}}{h{Ahe}}Hf{h{{EEn{g}}}}{Dd{EEl}}{Dd{{Fb{LjDb}}}}AAl}{{Dj{Bf{EFl{DKh}}}}}{{Df{Ch}}}{ACdAC`}{{Df{AAb}}}}{{{h{Ah{AKf{c}}}}Hf{h{{EEn{e}}}}AAl}{{Dj{LhDKh}}}{{Df{Ch}}}{{Df{AAb}}}}{{{h{Ah{AKf{c}}}}Hf{h{{EEn{e}}}}gAAl}{{Dj{LhDKh}}}{{Df{Ch}}}{{Df{AAb}}}{{AH`{Lj}}}}{{{h{Ah{AKf{c}}}}Hf{h{{EEn{e}}}}{Dd{EEl}}{Dd{{Fb{LjDb}}}}AAl}{{Dj{LhDKh}}}{{Df{Ch}}}{{Df{AAb}}}}{{{h{c}}}e{}{}}000000000000{{{h{c}}}Ib{}}0000000000{{{h{{AKf{c}}}}}{{h{Ch}}}{{Df{Ch}}}}{c{{Dj{e}}}{}{}}0000000000000000000000000000000{{{h{c}}}If{}}000000000000000`{ce{}{}}000000000000000{{{h{M`}}}AEl}{{{h{Ah{AKf{c}}}}Hf}{{Dd{{h{AhA@f}}}}}{{EG`{Ch}}}}```````{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{EGb}}}EGb}{{{h{EGd}}}EGd}{{{h{c}}{h{Ahe}}}Bf{}{}}0`{{{h{EGb}}{h{EGb}}}Eb}{{{h{EGd}}{h{EGd}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000{{{h{EGb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EGd}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}{JfEGb}{ANlEGb}2{{{h{Fl}}}{{Dj{EGdEGb}}}}{{{h{{Ab{A`}}}}}{{Dj{EGdEGb}}}}1{ce{}{}}0{{{h{EGd}}{h{{J`{c}}}}{h{Jj}}Md}{{Dj{EbEGb}}}Jh}{{DFfEb}EGd}{{{h{EGd}}{h{{J`{c}}}}Md}{{Dj{AAfEGb}}}Jh}{{{h{EGd}}}{{Ad{A`}}}}`{{{h{Fl}}}Md}{{{h{EGb}}}{{Dd{{h{AOb}}}}}}{EGdIb}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}0{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0;;`````````````````````````````````````````````````````{{EGfA`Ll}{{Dj{EGfEGh}}}}{{EGfA`Cl}{{Dj{EGfEGh}}}}{{EGfA`ClAGh}{{Dj{EGfEGh}}}}{{{h{EGj}}}{{Dd{{h{Ll}}}}}}{{{h{BCb}}}{{h{{Ab{Ll}}}}}}{{{h{AhBCb}}}{{h{Ah{Ab{Ll}}}}}}1{{{h{EGj}}}{{Dd{{Fb{{h{M`}}AGh}}}}}}2{{{h{c}}}{{h{e}}}{}{}}0003000000000000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0003000000000000000{{{h{AJn}}}AJn}{{{h{EGl}}}EGl}{{{h{BCb}}}BCb}{{{h{AF`}}}AF`}{{{h{EGf}}}EGf}{{{h{EGn}}}EGn}{{{h{EH`}}}EH`}{{{h{EHb}}}EHb}{{{h{EHd}}}EHd}{{{h{EGj}}}EGj}{{{h{AEn}}}AEn}{{{h{EHf}}}EHf}{{{h{AKb}}}AKb}{{{h{EHh}}}EHh}{{{h{AGh}}}AGh}{{{h{EGh}}}EGh}{{{h{EHj}}}EHj}{{{h{c}}{h{Ahe}}}Bf{}{}}0000000000000000{{{h{AJn}}{h{AJn}}}Bh}{{{h{BCb}}{h{BCb}}}Bh}{{{h{AF`}}{h{AF`}}}Bh}{{{h{EGf}}{h{EGf}}}Bh}{{{h{EHd}}{h{EHd}}}Bh}{{{h{EGj}}{h{EGj}}}Bh}{{{h{AEn}}{h{AEn}}}Bh}{{{h{EHf}}{h{EHf}}}Bh}{{{h{AKb}}{h{AKb}}}Bh}{{{h{EHh}}{h{EHh}}}Bh}{{{h{AGh}}{h{AGh}}}Bh}{{EHdEHd}{{Dj{EHdEGh}}}}{{{h{AF`}}{h{{Fb{ClAGh}}}}}{{Dd{AKb}}}}{{{h{{Ab{A`}}}}}{{Dj{BCbEHj}}}}{{{h{{Ab{A`}}}}}{{Dj{AKbEHj}}}}{{}BCb}{{}EGf}{{{h{AEn}}}A`}{{{h{BCb}}}h}{{{h{AhBCb}}}{{h{Ah}}}}{c{{Dj{AJn}}}Dl}{c{{Dj{BCb}}}Dl}{c{{Dj{EHb}}}Dl}{c{{Dj{EHd}}}Dl}{c{{Dj{EGj}}}Dl}{c{{Dj{AKb}}}Dl}{c{{Dj{AGh}}}Dl}{{{h{BCb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AKb}}{h{Ahc}}}{{Dj{HfACb}}}{ACdAC`}}{{{h{AJn}}{h{AJn}}}Eb}{{{h{EGl}}{h{EGl}}}Eb}{{{h{BCb}}{h{BCb}}}Eb}{{{h{AF`}}{h{AF`}}}Eb}{{{h{EGf}}{h{EGf}}}Eb}{{{h{EGn}}{h{EGn}}}Eb}{{{h{EH`}}{h{EH`}}}Eb}{{{h{EHb}}{h{EHb}}}Eb}{{{h{EHd}}{h{EHd}}}Eb}{{{h{EGj}}{h{EGj}}}Eb}{{{h{AEn}}{h{AEn}}}Eb}{{{h{EHf}}{h{EHf}}}Eb}{{{h{AKb}}{h{AKb}}}Eb}{{{h{EHh}}{h{EHh}}}Eb}{{{h{AGh}}{h{AGh}}}Eb}{{{h{EGh}}{h{EGh}}}Eb}{{{h{EHj}}{h{EHj}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}000000000000000000000000000000000{{EGf{h{{J`{c}}}}In}{{Dj{AF`EGf}}}Jh}{{{h{AJn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EGl}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{BCb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AF`}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EGf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EGn}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EH`}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EHb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EHd}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EGj}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AEn}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EHf}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{AKb}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{EHh}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{AGh}}{h{AhEj}}}{{Dj{BfEl}}}}000{{{h{EGh}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EHj}}{h{AhEj}}}{{Dj{BfEl}}}}0{cc{}}00{AFfEGl}{ANlEGl}2{JfEGl}{{{Ad{Ll}}}BCb}000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000444{ANlEGn}{ANlEH`}66{EHbEHd}7777777{ANlEGh}8{ANlEHj}9{A`{{Dj{AGhEHj}}}}{{{h{AEn}}}{{Dd{EHf}}}}{{{h{{J`{c}}}}InEHd}AF`Jh}{{{h{{Ab{A`}}}}}{{Dj{AJnEGl}}}}{{{h{EGf}}}Eb}{{{h{AJn}}{h{Ahc}}}BfGb}{{{h{BCb}}{h{Ahc}}}BfGb}{{{h{AF`}}{h{Ahc}}}BfGb}{{{h{EGf}}{h{Ahc}}}BfGb}{{{h{EHb}}{h{Ahc}}}BfGb}{{{h{EHd}}{h{Ahc}}}BfGb}{{{h{EGj}}{h{Ahc}}}BfGb}{{{h{AEn}}{h{Ahc}}}BfGb}{{{h{EHf}}{h{Ahc}}}BfGb}{{{h{AKb}}{h{Ahc}}}BfGb}{{{h{EHh}}{h{Ahc}}}BfGb}{{{h{AGh}}{h{Ahc}}}BfGb}{{{h{AF`}}}In}`{ce{}{}}000000000000000000{EGnEGf}{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}0{BCb{{ADj{Ll}}}}33{{{h{AhBCb}}}}{BCb}{{{h{BCb}}}}{EH`EHd}{EHbEHd}5{{{h{BCb}}}Eb}{{{h{EGf}}}Eb}{{{h{AEn}}}{{h{EGj}}}}{{{h{AEn}}}{{Dd{Lj}}}}{{{h{EHd}}}EHl}{{{h{AEn}}}{{Dd{AGh}}}}`{{{h{BCb}}}Hf}`{{{h{AEn}}}{{h{BCb}}}}{{{h{EHf}}}{{h{BCb}}}}`{{{h{AF`}}}{{Dd{Ll}}}}{{}EGf}{LlAEn}{LlEHd}{{{h{{J`{c}}}}In{Dd{Ll}}}AF`Jh}{{ClAGh}EHd}{{ClAGh}AEn}{{{h{AhEHn}}}Dd}{{{h{AhEHl}}}Dd}10{{{h{EHd}}}Ll}{{{h{AEn}}}Ll}{{{h{EHb}}}{{h{EHd}}}}{{{h{AF`}}}ACf}{{{h{AF`}}}Jd}`{{{h{AJn}}{h{AJn}}}{{Dd{Bh}}}}{{{h{BCb}}{h{BCb}}}{{Dd{Bh}}}}{{{h{AF`}}{h{AF`}}}{{Dd{Bh}}}}{{{h{EGf}}{h{EGf}}}{{Dd{Bh}}}}{{{h{EHd}}{h{EHd}}}{{Dd{Bh}}}}{{{h{EGj}}{h{EGj}}}{{Dd{Bh}}}}{{{h{AEn}}{h{AEn}}}{{Dd{Bh}}}}{{{h{EHf}}{h{EHf}}}{{Dd{Bh}}}}{{{h{AKb}}{h{AKb}}}{{Dd{Bh}}}}{{{h{EHh}}{h{EHh}}}{{Dd{Bh}}}}{{{h{AGh}}{h{AGh}}}{{Dd{Bh}}}}{{{h{EHb}}}Ll}{{{h{AEn}}}{{Dd{{h{M`}}}}}}{{{h{EHf}}}{{h{M`}}}}{{{h{EHb}}}EHn}{{{h{AF`}}}{{h{{AKd{{Fb{ClAGh}}{EI`{BCb}}}}}}}}{AJnEIb}{{{h{AJn}}c}DjHj}{{{h{BCb}}c}DjHj}{{{h{BCb}}}{{ADj{A`}}}}{{{h{EHb}}c}DjHj}{{{h{EHd}}c}DjHj}{{{h{EGj}}c}DjHj}{{{h{AKb}}c}DjHj}{{{h{AKb}}}{{ADj{A`}}}}{{{h{AGh}}c}DjHj}{{{h{AJn}}{h{Ahc}}}{{Dj{BfACb}}}{ACdAC`}}```{{{h{AKb}}}Hf}{{{h{EHn}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{EHl}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{EGl}}}{{Dd{{h{AOb}}}}}}{{{h{EGn}}}{{Dd{{h{AOb}}}}}}{{{h{EH`}}}{{Dd{{h{AOb}}}}}}{{{h{EGh}}}{{Dd{{h{AOb}}}}}}{{{h{EHj}}}{{Dd{{h{AOb}}}}}}{{{h{AF`}}}Ln}{EHhA`}{AGhA`}{{{h{c}}}e{}{}}0000000000000000{{{h{c}}}Ib{}}000000{AJn{{ADj{A`}}}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}0{c{{Dj{e}}}{}{}}0{EIb{{Dj{AJn}}}}{{{h{EIb}}}{{Dj{AJn}}}}222{{{ADj{Ll}}}{{Dj{BCb}}}}{{{AJ`{{Ab{Ll}}}}}{{Dj{BCb}}}}{{{h{{Ab{Ll}}}}}{{Dj{BCb}}}}55555{EGf{{Dj{EHb}}}}{EHd{{Dj{EHb}}}}{EGf{{Dj{EHd}}}}8888888888888888888888888888{EGf{{Dj{EHdEGn}}}}{EGf{{Dj{EHbEGn}}}}{{{h{c}}}If{}}000000000000000000{{{h{AKb}}{h{{J`{c}}}}In{h{M`}}}EbJh}{{{h{EHf}}}AGh}{ce{}{}}000000000000000000{HfEGf}{{{h{{J`{c}}}}Ine}{{Dj{AF`EGh}}}Jh{{Eh{}{{Ef{{Fb{DbCl}}}}}}}}{c{{Dj{EGfEGh}}}{{Eh{}{{Ef{{Fb{DbCl}}}}}}}}``{{{h{AhEId}}}{{h{Ah{Ab{Ll}}}}}}{{{h{EId}}}{{h{{Ab{Ll}}}}}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{EId}}}EId}{{{h{c}}{h{Ahe}}}Bf{}{}}{EIdHf}{{{h{EId}}{h{AhEj}}}{{Dj{BfEl}}}}{cc{}}<{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}={EIdDd}{{{h{AhEId}}}Dd}0{{{h{AhEId}}Hf}Dd}0{{{h{EId}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{c}}}e{}{}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}0{{{h{c}}}If{}}{ce{}{}}``{{{h{EIb}}}{{h{{Ab{A`}}}}}}{{{h{EIf}}}{{h{{Ab{A`}}}}}}1{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{EIb}}}EIb}{{{h{EIf}}}EIf}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{EIb}}{h{EIb}}}Bh}7{{{h{EIb}}{h{{Ab{A`}}}}}Eb}{{{h{EIb}}{h{EIb}}}Eb}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{EIb}}{h{AhEj}}}{{Dj{BfEl}}}}0{{{h{EIf}}{h{AhEj}}}{{Dj{BfEl}}}}{AJnEIb}{cc{}}{{{h{AJn}}}EIb}10{{{h{EIb}}{h{Ahc}}}BfGb}{ce{}{}}0{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}{{{h{EIb}}}}{EIb}3{{{h{EIb}}}Hf}{{{h{AhEIf}}}Dd}0{{{h{AhEIf}}Hf}Dd}{{{h{EIb}}{h{{Ab{A`}}}}}{{Dd{Bh}}}}{{{h{EIb}}{h{EIb}}}{{Dd{Bh}}}}{{{h{EIf}}}{{Fb{Hf{Dd{Hf}}}}}}{{{h{c}}}e{}{}}0{{{h{EIb}}}{{Dj{AJnEGl}}}}{{{h{c}}}Ib{}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}{c{{Dj{e}}}{}{}}000{{{h{c}}}If{}}0??{{{h{EIb}}{h{Ahc}}}{{Dj{BfACb}}}{ACdAC`}}``{{{h{Ah{EIh{ce}}}}NlDb}{{EIj{c}}}{f{DL`{Bb}}}EIl}{{{h{Ah{EIh{ce}}}}{h{Nl}}Db}{{EIj{c}}}{f{DL`{Bb}}}EIl}{{{h{Ah{EIh{ce}}}}{EIj{c}}}BffEIl}{{{h{Ah{EIh{ce}}}}{Aj{c}}}{{EIj{c}}}fEIl}{{{h{Ah{EIh{ce}}}}{Aj{c}}{Dd{E`}}}{{EIj{c}}}fEIl}{{{h{{EIh{ce}}}}}{{h{{Fd{c}}}}}{}{}}{{{h{Ah{EIh{ce}}}}k}{{EIj{c}}}fEIl{{AH`{{EIn{Ch}}}}}{{Eh{}{{Ef{c}}}}}{{Eh{}{{Ef{{Fb{gi}}}}}}}}{{{h{Ah{EIh{ce}}}}i}{{EIj{c}}}fEIl{{AH`{{EIn{Ch}}}}}{{Eh{}{{Ef{{Fb{gE`}}}}}}}}0{{{h{c}}}{{h{e}}}{}{}}0{{{h{Ahc}}}{{h{Ahe}}}{}{}}0{{{h{{EIj{ce}}}}}{{EIj{ce}}}AlAl}{{{h{c}}{h{Ahe}}}Bf{}{}}{{}{{EIh{ce}}}{}DOn}{{}{{EIj{ce}}}{}DOn}{c{{Dj{{EIj{eg}}}}}Dl{BjDn}Dn}{{{h{{EIj{ce}}}}{h{{EIj{ce}}}}}EbEdEd}{{{h{{EIh{ce}}}}{h{AhEj}}}F`EnEn}{{{h{{EIj{ce}}}}{h{AhEj}}}F`EnEn}{cc{}}{EJ`{{EIj{cEJ`}}}{}}1{{{EJb{c}}}{{EIj{ce}}}{}DOn}?``{{{h{{EIh{ce}}}}}{{EIj{c}}}fEIl}{{{h{Ah{EIh{ce}}}}Cbc}{{EIj{c}}}fEIl}{{{h{Ah{EIh{ce}}}}CbE`}{{EIj{c}}}fEIl}{{{h{Ah{EIh{ce}}}}g}{{EIj{c}}}fEIl{{AH`{{EIn{Ch}}}}}}{{{h{Ah{EIh{ce}}}}AA`AAb}{{EIj{c}}}fEIl}{ce{}{}}0{{{h{{EIj{ce}}}}}EbfGl}{{{h{Ah{EIj{ce}}}}{EIj{ce}}}BffGl}{c{{EIh{ec}}}{}{}}{{{h{{EIj{ce}}}}g}Dj{BjHl}HlHj}{{{h{c}}}e{}{}}{c{{Dj{e}}}{}{}}000`{{{h{c}}}If{}}077``{{{h{Ah{EIl{}{{EJd{c}}}}}}c}Bf{}}{{{h{Ah{EIl{}{{EJd{c}}}}}}{h{Ch}}}c{}}{{{h{Ah{EIl{}{{EJd{c}}}}}}AA`{h{AAb}}}c{}}{{{h{{EIl{}{{EJd{c}}}}}}}c{}}{{{h{{EIl{}{{EJd{c}}}}}}{h{Ch}}}Eb{}}````````````{{{h{{EJf{c}}}}}{{AKd{c{Bd{{D`{Cn}}}}}}}{AlBjEn}}{{{h{Ah{EJf{c}}}}EJ`}Bf{AlBjEn}}{{{h{Ah{EJf{c}}}}e}Bf{AlBjEn}{}}{{{h{c}}}{{h{e}}}{}{}}00{{{h{Ahc}}}{{h{Ahe}}}{}{}}00{{{h{{EJf{c}}}}}{{EJf{c}}}Al}{{{h{{EJh{c}}}}}{{EJh{c}}}Al}{{{h{EJ`}}}EJ`}{{{h{c}}{h{Ahe}}}Bf{}{}}00{{}{{EJf{c}}}{}}{{}EJ`}{c{{Dj{EJ`}}}Dl}{{{h{{EJh{c}}}}{h{{EJh{c}}}}}EbEd}{{{h{EJ`}}{h{EJ`}}}Eb}{{{h{{EJf{c}}}}{h{AhEj}}}F`En}{{{h{{EJh{c}}}}{h{AhEj}}}F`En}0{{{h{EJ`}}{h{AhEj}}}F`}{cc{}}00{{{h{EJj}}}{{I`{EJ`}}}}{{{h{{EJf{c}}}}c}{{Dd{{h{{D`{Cn}}}}}}}{AlBjEn}}{{{h{{EJf{c}}}}Cl}{{Dd{{h{{Fb{cDb}}}}}}}{AlBjEn}}{{{h{Ah{EJf{c}}}}{h{Ch}}}e{AlBjEn}{}}{{{h{Ah{EJf{c}}}}AA`{h{AAb}}}e{AlBjEn}{}}{{{h{EJj}}}{{I`{Bf}}}}{{{h{{EJf{c}}}}}e{AlBjEn}{}}{{{h{Ah{EJf{c}}}}c{D`{Cn}}}{{Dj{Eb{EJh{c}}}}}{AlBjEn}}{ce{}{}}00{{{h{EJ`}}}Eb}{{{h{{EJf{c}}}}{h{Ch}}}Eb{AlBjEn}}{{{h{{EJf{c}}}}cDb}Eb{AlBjEn}}{{{h{{EJf{c}}}}c}{{`{{CHl{}{{Ef{{EJl{AA`}}}}}}}}}{AlBjEn}}{{{h{{EJf{c}}}}e}{{`{{CHl{}{{Ef{{EJn{cAA`}}}}}}}}}{AlBjEn}{{Hd{c}}}}{{{h{{EJf{c}}}}}{{`{{CHl{}{{Ef{{Fb{c{h{{D`{Cn}}}}}}}}}}BN`}}}{AlBjEn}}`{{{h{{EJf{c}}}}c}{{Dd{Db}}}{AlBjEn}}{{{h{{EJf{c}}}}}{{AKd{cDb}}}{AlBjEn}}10{{{h{{EJf{c}}}}}Db{AlBjEn}}{{{h{Ah{EJf{c}}}}cDb}Bf{AlBjEn}}{{{h{Ah{EJf{c}}}}cDb}Eb{AlBjEn}}{{{h{AhEJ`}}EJ`}Bf}{{{h{{EJf{c}}}}{h{Ch}}e}Ih{AlBjEn}{{Hd{c}}}}{Db{{EJf{c}}}{}}{{{h{{EJf{c}}}}c}{{Dd{{Fb{DbEb}}}}}{AlBjEn}}{{{h{Ah{EJf{c}}}}c}{{Dd{{Fb{{EJl{Cl}}EJ`}}}}}{AlBjEn}}{{{h{{EJf{c}}}}}{{h{{EI`{{EJn{cAA`}}}}}}}{AlBjEn}}{{{h{EJ`}}{h{EJj}}}{{I`{Bf}}}}2{{{h{Ah{EJf{c}}}}cDb}{{Dd{{Fb{{ADj{{EJl{Cl}}}}EJ`}}}}}{AlBjEn}}{{{h{Ah{EJf{c}}}}{h{{AKd{cDb}}}}}EJ`{AlBjEn}}{{{h{{EJf{c}}}}c}{{`{{CHl{}{{Ef{{EJl{Cl}}}}}}}}}{AlBjEn}}{{{h{{EJf{c}}}}e}{{`{{Gj{}{{Ef{{EJn{cCl}}}}}}}}}{AlBjEn}{{Hd{c}}}}{{EK`{h{{EJf{c}}}}e}EK`{}{{Hd{c}}}}{{}Ib}{{{h{{EJf{c}}}}{h{Ch}}e}{{Fb{CfCf}}}{AlBjEn}{{Hd{c}}}}{{{h{EJ`}}c}DjHj}{{{h{{EJf{c}}}}cDb}{{Dd{Cl}}}{AlBjEn}}{{EKb{h{{EJf{c}}}}}EKb{}}{{{h{c}}}e{}{}}00{{{h{c}}}Ib{}}{c{{Dj{e}}}{}{}}00000{{{h{{EJf{c}}}}AA`}{{Dd{{EJn{c{h{AAb}}}}}}}{AlBjEn}}{{{h{{EJf{c}}}}}{{`{{CHl{}{{Ef{{EJn{c{Fb{AA`{h{AAb}}}}}}}}}}BN`}}}{AlBjEn}}{{{h{{EJf{c}}}}Cb}{{`{{CHl{}{{Ef{{EJn{c{Fb{AA`{h{AAb}}}}}}}}}}}}}{AlBjEn}}{{{h{c}}}If{}}00{{{h{{EJf{c}}}}c}{{Dd{{Bd{{D`{Cn}}}}}}}{AlBjEn}}{{{h{Ah{EJf{c}}}}cDb}Eb{AlBjEn}}{{{h{{EJf{c}}}}c}{{`{{CHl{}{{Ef{{EJl{Cl}}}}}}Al}}}{AlBjEn}}{{{h{{EJf{c}}}}}{{`{{CHl{}{{Ef{{EJn{cCl}}}}}}Al}}}{AlBjEn}}{{EK`{h{{EJf{c}}}}}EK`{}}{ce{}{}}00`````{{{h{{EKd{c}}}}}{{h{{AKd{cCl}}}}}{AlBjEn}}{{{h{Ah{EKd{c}}}}e}Bf{AlBjEn}{}}{{{h{c}}}{{h{e}}}{}{}}{{{h{Ahc}}}{{h{Ahe}}}{}{}}{{{h{{EKd{c}}}}}{{EKd{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}{{}{{EKd{c}}}{}}{{{h{{EKd{c}}}}{h{AhEj}}}F`En}{cc{}}{{{h{{EKd{c}}}}Cl}{{Dd{{h{c}}}}}{AlBjEn}}{{{h{Ah{EKd{c}}}}{h{Ch}}}e{AlBjEn}{}}{{{h{Ah{EKd{c}}}}AA`{h{AAb}}}e{AlBjEn}{}}{{{h{{EKd{c}}}}}e{AlBjEn}{}}{{{h{Ah{EKd{c}}}}cCl}Eb{AlBjEn}}>{{{h{{EKd{c}}}}{h{Ch}}}Eb{AlBjEn}}0{{{h{{EKd{c}}}}{h{c}}}Eb{AlBjEn}}{{{h{Ah{EKd{c}}}}{h{c}}}Eb{AlBjEn}}{{{h{{EKd{c}}}}{h{Ch}}e}Ih{AlBjEn}{{Hd{c}}}}{{{h{{EKd{c}}}}}{{h{{EI`{{Fb{cAA`}}}}}}}{AlBjEn}}{{{h{{EKd{c}}}}e}{{`{{CHl{}{{Ef{{Fb{{h{c}}AA`}}}}}}}}}{AlBjEn}{{Hd{c}}}}{{{h{Ah{EKd{c}}}}{h{Ch}}}{{EI`{c}}}{AlBjEn}}{{{h{Ah{EKd{c}}}}AA`{h{AAb}}}{{Dd{{h{c}}}}}{AlBjEn}}{{{h{{EKd{c}}}}{h{Ch}}e}{{Fb{CfCf}}}{AlBjEn}{{Hd{c}}}}{{{h{{EKd{c}}}}{h{c}}}{{Dd{Cl}}}{AlBjEn}}{{{h{c}}}e{}{}}{c{{Dj{e}}}{}{}}0{{{h{{EKd{c}}}}AA`}{{Dd{{Fb{{h{c}}{h{AAb}}}}}}}{AlBjEn}}{{{h{{EKd{c}}}}}{{`{{CHl{}{{Ef{{Fb{{h{c}}AA`{h{AAb}}}}}}}}BN`}}}{AlBjEn}}{{{h{{EKd{c}}}}Cb}{{`{{CHl{}{{Ef{{Fb{{h{c}}AA`{h{AAb}}}}}}}}}}}{AlBjEn}}{{{h{c}}}If{}}={{{h{{EKd{c}}}}e}{{`{{CHl{}{{Ef{{Fb{{h{c}}Cl}}}}}}Al}}}{AlBjEn}{{Hd{c}}}}{ce{}{}}````````````{{{h{AhEKf}}{h{EKh}}}{{Dj{BfEKj}}}}{{{h{AhEKf}}{h{Fh}}Db}{{Dj{EKhEKl}}}}{{{h{AhEKf}}{h{Fh}}Dbj}{{Dj{EKhEKn}}}}{{{h{AhEKf}}Af}{{Dj{EKhEKl}}}}`{{{h{c}}}{{h{e}}}{}{}}00000{{{h{Ahc}}}{{h{Ahe}}}{}{}}00000{{{h{EKf}}}EKf}{{{h{EKh}}}EKh}{{{h{EKj}}}EKj}{{{h{EL`}}}EL`}{{{h{EKl}}}EKl}{{{h{EKn}}}EKn}{{{h{c}}{h{Ahe}}}Bf{}{}}00000{{}EKh}{c{{Dj{EKh}}}Dl}{{{h{AhEKf}}j}{{Dj{EKhEKj}}}}{{{h{EKf}}{h{EKf}}}Eb}{{{h{EKh}}{h{EKh}}}Eb}{{{h{EKj}}{h{EKj}}}Eb}{{{h{EL`}}{h{EL`}}}Eb}{{{h{EKl}}{h{EKl}}}Eb}{{{h{EKn}}{h{EKn}}}Eb}{{{h{EKf}}{h{AhEj}}}F`}{{{h{EKh}}{h{AhEj}}}F`}{{{h{EKj}}{h{AhEj}}}F`}0{{{h{EL`}}{h{AhEj}}}F`}0{{{h{EKl}}{h{AhEj}}}F`}0{{{h{EKn}}{h{AhEj}}}F`}0{cc{}}0{cEKh{{Eh{}{{Ef{{Fb{Db{Dd{Cj}}}}}}}}}}1111{{{AKd{DbCj}}}{{Dj{EKfEKj}}}}{EKh{{Dj{EKfEKj}}}}{Cj{{Fb{EKfEKh}}}}3{cEKh{{Eh{}{{Ef{{Fb{DbCj}}}}}}}}{{{h{EJj}}}{{I`{EKh}}}}{Af{{Dj{EKfEKj}}}}{{{h{EKf}}}Cj}{{{h{EKf}}Db}{{Dd{Af}}}}{{{h{EKf}}}{{Dj{jc}}}{}}`{{{h{EJj}}}{{I`{Bf}}}}{{{h{EKf}}}EKh}{{{h{AhEKf}}j}{{Dj{EKhEL`}}}}{ce{}{}}00000{{{h{EKf}}jj}{{Dj{{Dd{Eb}}c}}}{}}{{{h{EKh}}}Eb}{{{h{EKf}}}Gn}{{{h{AhEKh}}EKh}Bf}`{{{h{EKh}}{h{EJj}}}{{I`{Bf}}}}{{{h{EKf}}c}{{`{{Gj{}{{Ef{Af}}}}}}}{{Hd{Db}}}}{{}Ib}{{{h{EKh}}c}DjHj}{{{h{EKf}}}Af}{{{h{c}}}e{}{}}00000{{{h{c}}}Ib{}}000{c{{Dj{e}}}{}{}}00000`000000{{{h{c}}}If{}}00000`======`{{{h{EJj}}{h{Fl}}{h{{Ab{{h{Fl}}}}}}}{{I`{Bf}}}}```````````{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}0000000{{{ELb{c}}}{{ELd{c}}}{}}{{{ELf{c}}}{{ELh{c}}}Bj}{{}{{ELb{c}}}{}}{{}{{ELf{c}}}{BjAl}}{{{ELb{c}}Af}{{ELb{c}}}{}}{{{h{{ELd{c}}}}}{{Dd{Af}}}{}}{{{ELf{c}}Af}{{ELf{c}}}Bj}{{{h{{ELh{c}}}}}{{Dd{Af}}}{BjAl}}``{{{h{{ELj{c}}}}}{{ELj{c}}}Al}{{{h{ELl}}}ELl}{{{h{c}}{h{Ahe}}}Bf{}{}}0{{{h{{ELj{c}}}}{h{{ELj{c}}}}}BhBj}{{{h{ELl}}}Hf}:{{}{{ELd{c}}}{}}{{}{{ELf{c}}}{}}{{}{{ELh{c}}}{}}{{}{{ELn{c}}}{}}{{}{{EM`{ce}}}{}{}}{{{h{{ELj{c}}}}{h{{ELj{c}}}}}EbEd}{{{h{c}}{h{e}}}Eb{}{}}0{{{h{{ELj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{{ELj{c}}}}{h{AhEj}}}{{Dj{BfEl}}}{EnEMb}}{{{h{ELl}}{h{AhEj}}}{{Dj{BfEl}}}}{{{h{{ELn{c}}}}{h{AhEj}}}{{Dj{BfEl}}}En}{{{h{{EM`{ce}}}}{h{AhEj}}}{{Dj{BfEl}}}EnEn}{cc{}}{{{ELb{c}}}{{ELd{c}}}{}}11{{{ELf{c}}}{{ELh{c}}}{}}22222{{{h{{ELj{c}}}}{h{Ahe}}}BfGdGb}{{{ELb{c}}e}{{ELb{c}}}{}{{Hb{{ELj{c}}ELl}}EMd}}{{{ELf{c}}e}{{ELf{c}}}Bj{{Hb{cDb{h{M`}}}}EMd}}{ce{}{}}0000000{{{h{Ah{ELd{c}}}}}{{`{BN`}}}{}}0{{{h{Ah{ELh{c}}}}c}{{`{{Gj{}{{Ef{{Fb{DbCl}}}}}}}}}{BjAl}}1{{{h{{ELh{c}}}}}{{ADj{c}}}{BjAl}}`{{{h{Ah{ELd{c}}}}}{{Dd{AA`}}}{}}{{{h{Ah{ELd{c}}}}}{{Dd{Cl}}}{}}{{{h{Ah{ELh{c}}}}c}{{Dd{{Fb{DbCl}}}}}{BjAl}}{{{h{Ah{ELd{c}}}}}{{Dd{Cb}}}{}}{{{ELb{c}}e}{{ELb{c}}}{}{{Eh{}{{Ef{AA`}}}}}}``{{{h{{ELj{c}}}}{h{{ELj{c}}}}}{{Dd{Bh}}}Hh}{{{h{{ELd{c}}}}}ELl{}}{{{h{ELl}}}Hf}{{{ELb{{Fb{cDb}}}}{h{{EJf{c}}}}e}{{ELb{{Fb{cDb}}}}}{AlBjEn}{{Hd{c}}}}{{ELbc}ELb{{Eh{}{{Ef{Cl}}}}}}`{{{ELf{c}}cg}{{ELf{c}}}Bj{{Gj{}{{Ef{{Fb{DbCl}}}}}}EMd}{{Eh{}{{EMf{e}}}}}}{{{ELf{c}}{h{{EJf{c}}}}}{{ELf{c}}}{AlBjEn}}`{{{ELb{c}}e}{{ELb{c}}}{}{{Eh{}{{Ef{{Fb{cCl}}}}}}}}{{{h{c}}}e{}{}}0{{{h{c}}}Ib{}}7777{c{{Dj{e}}}{}{}}000000000000000``{{{ELb{c}}e}{{ELb{c}}}{}{{Eh{}{{Ef{Cb}}}}}}``{{{h{c}}}If{}}0000000{{{ELb{{Fb{cDb}}}}{h{{EJf{c}}}}}{{ELb{{Fb{cDb}}}}}{AlBjEn}}{ce{}{}}0000000``````````````{{{h{{Fd{c}}}}}{{h{{EI`{{Fb{cCb}}}}}}}{}}{{{h{{Fd{c}}}}}{{`{{Gj{}{{Ef{{Fb{AA`{h{AAb}}}}}}}}}}}{}}{{{h{{EJb{c}}}}}{{`{{Gj{}{{Ef{Db}}}}}}}f}```{{{h{Ah{Fd{c}}}}{EJb{c}}}Bf{AlBj}}{{{h{Ah{Fd{c}}}}{Aj{c}}}{{EJb{c}}}{AlBj}}{{{h{Ah{Fd{c}}}}{Aj{c}}{Dd{E`}}}{{EJb{c}}}{AlBj}}{{{h{{Fd{c}}}}}{{h{{Fd{c}}}}}{}}{{{h{{Fd{c}}}}{h{e}}jik}bf{{G`{}{{Fn{ANl}}}}}Al{{Eh{}{{Ef{{Fb{gAA`}}}}}}}{{Hb{{h{g}}Cl}{{H`{Eb}}}}}}{{{h{Ah{Fd{c}}}}g}{{EJb{c}}}{AlBj}{{AH`{{EIn{Ch}}}}}{{Eh{}{{Ef{{Fb{eE`}}}}}}}}{{{h{c}}}{{h{e}}}{}{}}000000{{{h{Ahc}}}{{h{Ahe}}}{}{}}000000{{{h{{Fd{c}}}}{h{Ch}}}{{Dj{CfEMh}}}{}}`{c{{Dd{Ih}}}{}}{c{{Dd{Cf}}}{}}01{{{h{{Fd{c}}}}}{{Fd{c}}}Al}{{{h{{EMj{ce}}}}}{{EMj{ce}}}AlAl}{{{h{{EMl{ce}}}}}{{EMl{ce}}}AlAl}{{{h{{EJb{c}}}}}{{EJb{c}}}Al}{{{h{c}}{h{Ahe}}}Bf{}{}}000{{{h{{EMj{ce}}}}{h{{EMj{ce}}}}}BhBjBj}{{{h{{EMl{ce}}}}{h{{EMl{ce}}}}}BhBjBj}{{}{{Fd{c}}}{}}{{}{{EJb{c}}}{}}{{{h{{EMj{ce}}}}}{{h{g}}}{}{}{}}{c{{Dj{{EJb{e}}}}}Dl{BjDn}}{{{h{{Fd{c}}}}{h{Ch}}}{{`{{Gj{}{{Ef{{Fb{HfCb}}}}}}}}}{}}{{{h{{Fd{c}}}}{h{{Fd{c}}}}}EbEd}{{{h{{EMj{ce}}}}{h{{EMj{ce}}}}}EbEdEd}{{{h{{EMl{ce}}}}{h{{EMl{ce}}}}}EbEdEd}{{{h{EMh}}{h{EMh}}}Eb}{{{h{{EJb{c}}}}{h{{EJb{c}}}}}EbEd}{{{h{c}}{h{e}}}Eb{}{}}00000{{{h{{Fd{c}}}}{h{e}}ji}{{`{{Gj{}{{Ef{{Fb{g{B`{c}}}}}}}}}}}f{{G`{}{{Fn{ANl}}}}}Al{{Eh{}{{Ef{{Fb{gAA`}}}}}}}}0{{{h{{Fd{c}}}}}{{`{{Gj{}{{Ef{{Fb{AA`{h{AAb}}}}}}}}}}}{}}{{{h{{Fd{c}}}}{h{AhEj}}}F`En}{{{h{{EMj{ce}}}}{h{AhEj}}}F`EnEn}{{{h{{EMl{ce}}}}{h{AhEj}}}F`EnEn}{{{h{EMh}}{h{AhEj}}}F`}0{{{h{{EJb{c}}}}{h{AhEj}}}F`En}{cc{}}0{{{Aj{c}}}{{Fd{c}}}{BjAl}}11111{{{h{EJj}}}{{I`{{EJb{l}}}}}}{{{h{{Fd{c}}}}}{{`{{Gj{}{{Ef{{EMj{{EIn{Ch}}c}}}}}}}}}{}}{{{h{{Fd{c}}}}{h{e}}jCb}{{Dd{{An{{h{c}}}}}}}f{{G`{}{{Fn{ANl}}}}}}{{{h{{Fd{c}}}}{h{e}}jAA`}{{Dd{{Fb{{An{{h{c}}}}Cb}}}}}f{{G`{}{{Fn{ANl}}}}}}{{{h{{Fd{c}}}}Cb}{{Dd{{EIn{Ch}}}}}{}}{{{h{{Fd{c}}}}Cb}{{Dd{{EMj{{EIn{Ch}}c}}}}}{}}{{{h{{Fd{c}}}}AA`}{{Dd{{h{AAb}}}}}{}}{{{h{EJj}}}{{I`{Bf}}}}{{{h{{Fd{c}}}}}{{EJb{c}}}{AlBj}}{{{h{Ah{Fd{c}}}}Cbc}{{EJb{c}}}{AlBj}}{{{h{Ah{Fd{c}}}}CbE`}{{EJb{c}}}{AlBj}}{{{h{Ah{Fd{c}}}}e}{{EJb{c}}}{AlBj}{{AH`{{EIn{Ch}}}}}}{{{h{Ah{Fd{c}}}}AA`AAb}{{EJb{c}}}{AlBj}}{ce{}{}}000000{c{{Gh{g}}}{}{}{{Gj{}{{Ef{e}}}}}}011{{{h{{Fd{c}}}}}Eb{}}{{{h{{EJb{c}}}}}EbBj}``{{{h{{Fd{c}}}}{h{e}}j}{{`{{Gj{}{{Ef{{EMl{{EIn{Ch}}c}}}}}}}}}f{{G`{}{{Fn{ANl}}}}}}{{{Fd{c}}g}{{Fd{e}}}{AlBj}{AlBj}{{Hb{c}{{H`{e}}}}}}{{{EJb{c}}g}{{EJb{e}}}BjBj{{Hb{c}{{H`{e}}}}}}{{{h{Ah{EJb{c}}}}{EJb{c}}}BfBj}{c{{Fd{e}}}{{Eh{}{{Ef{Ch}}}}}{AlBj}}{{{h{Ah{EMn{cg}}}}}{{Dd{i}}}{}{}{{Hb{Hf{EIn{Ch}}}{{H`{{Dd{e}}}}}}}{}}{{{h{Ah{EN`{cg}}}}}{{Dd{i}}}{}{}{{Hb{HfCb}{{H`{{Dd{e}}}}}}}{}}{{{h{{Fd{c}}}}AA`}{{h{{ENb{Cb}}}}}{}}{{{h{{EMj{ce}}}}{h{{EMj{ce}}}}}{{Dd{Bh}}}HhHh}{{{h{{EMl{ce}}}}{h{{EMl{ce}}}}}{{Dd{Bh}}}HhHh}{{{h{{EJb{l}}}}{h{EJj}}}{{I`{Bf}}}}{{}Ib}0`{{{h{{EJb{c}}}}e}Dj{BjHl}Hj}{{{h{c}}}e{}{}}000{{{h{c}}}Ib{}}{c{{Id{i}}}{}{}{}{{Gj{}{{Ef{{Dj{eg}}}}}}}}0{{{h{{Fd{c}}}}{h{e}}jik}{{Dj{b}}}fG`Al{{Eh{}{{Ef{{Fb{gAA`}}}}}}}{{Hb{{h{g}}Cl}{{H`{Eb}}}}}}{{{h{{Fd{c}}}}{h{e}}ji}{{`{{Gj{}{{Ef{{Dj{{Fb{g{B`{c}}}}}}}}}}}}}fG`Al{{Eh{}{{Ef{{Fb{gAA`}}}}}}}}0{c{{Dj{e}}}{}{}}000000{{{h{{Fd{c}}}}{h{e}}jCb}{{Dj{{Dd{{An{{h{c}}}}}}}}}fG`}{{{h{{Fd{c}}}}{h{e}}jAA`}{{Dj{{Dd{{Fb{{An{{h{c}}}}Cb}}}}}}}fG`}2222222{{{h{{Fd{c}}}}{h{e}}j}{{`{{Gj{}{{Ef{{Dj{{EMl{{EIn{Ch}}c}}}}}}}}}}}fG`}``{{{h{{Fd{c}}}}Cb}{{Dd{{AKd{Db{h{AAb}}}}}}}{}}{{{h{{Fd{c}}}}Cb}{{`{{CHl{}{{Ef{{Fb{Db{h{{ENb{Cb}}}}}}}}}}}}}{}}`{{{h{{EJb{c}}}}}{{`{{Gj{}{{Ef{{Fb{AA`{h{AAb}}}}}}}}}}}{}}````{{{h{{Fd{c}}}}}{{`{{Gj{}{{Ef{{EMj{{EIn{Ch}}c}}}}}}}}}{}}{{{h{c}}}If{}}000000{ce{}{}}000000{{{h{{Fd{c}}}}ei}{{EMn{ci}}}{AlBj}{{AH`{{EIn{Ch}}}}}{}{{Hb{Hf{EIn{Ch}}}{{H`{{Dd{g}}}}}}}}{{{h{{Fd{c}}}}{h{Ch}}g}{{EN`{cg}}}{}{}{{Hb{HfCb}{{H`{{Dd{e}}}}}}}}{{{h{{Fd{c}}}}Cbg}{{EN`{cg}}}{AlBj}{}{{Hb{HfCb}{{H`{{Dd{e}}}}}}}}","D":"AEIdAEChCh","p":[[5,"Balance",0,16132],[5,"DescriptorId",0,16133],[10,"Anchor",0,16134],[1,"reference"],[5,"BlockId",0,16135],[5,"ConfirmationBlockTime",0,16135],[5,"Hash",9991,16136],[1,"u8"],[1,"slice"],[1,"array"],[5,"CheckPoint",0,16137],[0,"mut"],[5,"TxUpdate",0,16138],[10,"Clone",16139],[6,"ChainPosition",0,16140],[5,"FullTxOut",0,16140],[5,"TxPosInBlock",0,16134],[5,"SpkIterator",0,16141],[1,"unit"],[6,"Ordering",16142],[10,"Ord",16142],[6,"ValueRef",16143],[5,"Impl",0],[8,"FromSqlResult",16144],[5,"Txid",344,16145],[6,"Network",344,16146],[5,"Amount",344,16147],[5,"Transaction",344,16145],[5,"BlockHash",344,16148],[5,"ScriptBuf",344,16149],[6,"DescriptorPublicKey",16150],[6,"Descriptor",16151],[1,"u32"],[6,"Option",16152],[10,"Borrow",16153],[10,"DescriptorExt",0,16133],[6,"Result",16154],[10,"Deserializer",8192,16155],[10,"Deserialize",8192,16155],[1,"u64"],[1,"bool"],[10,"PartialEq",16142],[17,"Item"],[10,"IntoIterator",16156],[5,"Formatter",16157],[5,"Error",16157],[10,"Debug",16157],[8,"Result",16157],[1,"tuple"],[5,"TxGraph",15945],[1,"never"],[5,"Header",5519,16148],[5,"FromSliceError",13416,16158],[1,"str"],[17,"Error"],[10,"ChainOracle",0,16159],[10,"Hasher",16160],[10,"Hash",16160],[10,"SliceIndex",16161],[5,"IntoFallible",16162],[10,"Iterator",16163],[10,"Merge",0,16164],[5,"CheckPointIter",0,16137],[17,"Output"],[10,"FnMut",16165],[10,"RangeBounds",16166],[1,"usize"],[10,"PartialOrd",16142],[10,"Serializer",8192,16167],[10,"Serialize",8192,16167],[6,"ToSqlOutput",16168],[8,"Result",16169],[5,"String",3124,16170],[5,"Convert",16162],[5,"TypeId",16171],[5,"SignedAmount",344,16147],[5,"Weight",344,16172],[5,"Work",344,16173],[5,"XOnlyPublicKey",344,16174],[5,"Secp256k1",10727,16175],[5,"Scalar",12488,16176],[6,"Parity",10727,16174],[6,"Error",12488,16175],[10,"Verification",10727,16177],[5,"Address",344,16178],[6,"AddressType",344,16178],[5,"FilterHash",344,16179],[5,"FilterHeader",344,16179],[5,"XKeyIdentifier",344,16180],[5,"TxMerkleNode",344,16148],[5,"WitnessMerkleNode",344,16148],[5,"WitnessCommitment",344,16148],[5,"ScriptHash",344,16181],[5,"WScriptHash",344,16181],[5,"Wtxid",344,16145],[5,"PubkeyHash",344,16182],[5,"WPubkeyHash",344,16182],[5,"LegacySighash",344,16183],[5,"SegwitV0Sighash",344,16183],[5,"TapSighash",344,16183],[5,"TapLeafHash",344,16184],[5,"TapNodeHash",344,16184],[5,"TapTweakHash",344,16184],[5,"Script",344,16185],[5,"XOnlyPublicKey",13108,16186],[5,"Hash",10105,16187],[5,"Hash",7794,16188],[5,"TapSighashTag",344,16183],[5,"Hash",10158,16189],[5,"TapLeafTag",344,16184],[5,"TapBranchTag",344,16184],[5,"TapTweakTag",344,16184],[5,"PushBytes",6413,16190],[5,"Params",7253,16191],[6,"NetworkUnchecked",2746,16178],[10,"NetworkValidation",2746,16178],[5,"TxIn",344,16145],[5,"Block",344,16148],[6,"Bip34Error",5519,16148],[5,"Builder",6413,16192],[5,"Bytes",6413,16185],[5,"ChainHash",5639,16193],[6,"LockTime",5710,16194],[5,"Sequence",344,16145],[6,"LockTime",5896,16195],[1,"i64"],[5,"FeeRate",344,16196],[5,"Opcode",344,16197],[6,"ClassifyContext",6106,16197],[6,"Class",6106,16197],[5,"Witness",344,16198],[6,"Denomination",344,16147],[6,"KnownHrp",344,16178],[5,"WitnessProgram",344,16199],[6,"WitnessVersion",344,16200],[5,"OutPoint",344,16145],[5,"TxOut",344,16145],[5,"VarInt",344,16201],[5,"PublicKey",344,16182],[5,"CompressedPublicKey",344,16182],[5,"PrivateKey",344,16182],[6,"TapSighashType",344,16183],[6,"EcdsaSighashType",344,16183],[5,"MerkleBlock",344,16202],[6,"NetworkKind",344,16146],[5,"Target",344,16173],[5,"CompactTarget",344,16173],[5,"Psbt",344,16203],[6,"Error",12026,16204],[6,"Error",7344,16201],[10,"Read",10479,16205],[10,"Sized",16206],[5,"Error",10479,16207],[10,"Write",10479,16205],[5,"TweakedPublicKey",10727,16182],[5,"Token",16208],[10,"BufRead",10479,16205],[1,"u128"],[10,"AsRef",16209],[1,"f64"],[5,"Display",3042,16147],[5,"HashEngine",9991,16136],[6,"Instruction",6413,16210],[6,"Error",16211],[5,"Vec",3124,16212],[6,"MerkleBlockError",11097,16202],[6,"ExtractTxError",12026,16203],[10,"Write",16157],[5,"PublicKey",12488,16174],[5,"Xpub",5160,16180],[6,"Cow",16213],[5,"RelLockTime",16214],[1,"u16"],[5,"ScriptPath",14335,16183],[5,"LeafNode",14739,16184],[5,"TaprootSpendInfo",14739,16184],[10,"Fn",16165],[6,"ParseAmountError",3042,16147],[5,"InvalidSighashTypeError",14335,16183],[5,"ParseNetworkError",11155,16146],[6,"HexToBytesError",7839,16215],[6,"PrefixedHexError",7661,16216],[5,"Keypair",10727,16174],[5,"Magic",11205,16217],[10,"Signing",12488,16177],[5,"UncompressedPublicKeyError",10727,16182],[6,"FromScriptError",2746,16218],[6,"LeafVersion",14739,16184],[5,"TimeOverflowError",5896,16219],[6,"KeyParseError",16220],[6,"FromSliceError",10727,16182],[10,"Into",16209],[5,"NonStandardSighashTypeError",14335,16183],[6,"ParseError",2746,16218],[6,"ParsePublicKeyError",10727,16182],[6,"FromWifError",10727,16182],[6,"ParseError",16147],[6,"UnprefixedHexError",7661,16216],[5,"RangeFull",16166],[6,"Bound",16166],[5,"Range",16166],[5,"RangeToInclusive",16166],[5,"RangeTo",16166],[5,"RangeInclusive",16166],[5,"RangeFrom",16166],[5,"InstructionIndices",6413,16210],[5,"Instructions",6413,16210],[5,"Box",16221],[5,"Height",5710,16222],[5,"Time",5710,16222],[5,"Iter",7238,16198],[6,"Error",6967,16199],[5,"SecretKey",12488,16174],[6,"P2shError",2746,16218],[5,"Signature",14739,16223],[5,"Signature",7574,16224],[5,"ControlBlock",14739,16184],[5,"BTreeMap",16225],[5,"SighashCache",14335,16183],[5,"Message",12488,16175],[6,"SignError",12026,16203],[6,"PsbtSighashMsg",16211],[6,"SighashError",16211],[6,"SigningKeys",12026,16203],[10,"GetKey",12026,16203],[6,"AddressData",2746,16178],[5,"Fe32",3831,16226],[5,"Hash",16227],[5,"Hash",8121,16228],[5,"OutOfRangeError",16147],[5,"SortKey",10727,16182],[5,"InputsIndexError",7076,16145],[5,"OutputsIndexError",7076,16145],[5,"DefiniteDescriptorKey",16150],[6,"UtxoUpdateError",16211],[6,"OutputUpdateError",16211],[5,"Signature",14304,16229],[5,"UnknownAddressTypeError",2746,16218],[5,"UnknownHrpError",2746,16218],[5,"NetworkValidationError",2746,16218],[5,"InvalidBase58PayloadLengthError",2746,16218],[5,"LegacyAddressTooLongError",2746,16218],[5,"InvalidLegacyPrefixError",2746,16218],[6,"NetworkChecked",2746,16178],[5,"TryFromError",6992,16200],[6,"Infallible",16209],[5,"DecodeError",4796,16230],[6,"Error",3124,16231],[10,"StdError",9786],[10,"CheckedSum",3042,16147],[5,"MissingDigitsError",16147],[5,"InputTooLargeError",16147],[5,"InvalidCharacterError",16147],[5,"TooPreciseError",16147],[10,"SerdeAmount",3103,16232],[10,"SerdeAmountForOpt",3103,16232],[10,"Allocator",16233],[5,"OsStr",16234],[5,"Path",16235],[5,"InvalidCharacterError",3124,16231],[6,"FromSqlError",16144],[5,"PrefilledTransaction",4856,16236],[6,"Inventory",11548,16237],[5,"ShortId",4856,16236],[5,"Address",11205,16238],[5,"AddrV2Message",11363,16238],[5,"Drain",16239],[5,"Drain",16170],[1,"i16"],[1,"i32"],[1,"i8"],[10,"Copy",16206],[1,"char"],[5,"ExtractIf",16240],[5,"Error",16241],[5,"TooShortError",3492,16231],[5,"IncorrectChecksumError",3492,16231],[5,"BinaryHeap",16242],[5,"DerivationPath",5160,16180],[6,"ChildNumber",5160,16180],[5,"TaprootMerkleBranch",14739,16243],[5,"VecDeque",16244],[5,"CString",16245],[5,"PushBytesBuf",6413,16190],[5,"FromUtf16Error",16170],[5,"FromUtf8Error",16170],[5,"Assets",16246],[6,"Error",5160,16180],[10,"Error",8279,16155],[10,"IntoDeserializer",8279,16155],[5,"StringDeserializer",8463,16247],[10,"FnOnce",16165],[10,"Pattern",16248],[20,"MaybeUninit",16249],[5,"Splice",16250],[6,"SocketAddr",16251],[5,"IntoIter",16252],[6,"Error",16253],[5,"TryReserveError",16254],[5,"IoSlice",16255],[6,"EncodeSliceError",3535,16256],[6,"DecodeError",3535,16257],[6,"DecodeSliceError",3535,16257],[17,"Config"],[17,"DecodeEstimate"],[10,"Engine",3535,16258],[10,"Config",3681,16258],[10,"DecodeEstimate",3681,16258],[5,"Alphabet",3625,16259],[6,"ParseAlphabetError",3625,16259],[5,"Base64Display",3669,16260],[5,"GeneralPurpose",3681,16261],[5,"GeneralPurposeConfig",3681,16261],[6,"DecodePaddingMode",3681,16258],[5,"DecodeMetadata",3681,16258],[5,"DecoderReader",3786,16262],[10,"Read",16255],[10,"StrConsumer",3799,16263],[5,"EncoderWriter",3799,16264],[10,"Write",16255],[5,"EncoderStringWriter",3799,16263],[5,"Hrp",3831,16265],[5,"ByteIter",4587,16265],[10,"ByteIterExt",3831,16266],[5,"BytesToFes",4679,16266],[5,"CharIter",4587,16265],[6,"NoChecksum",3831,16267],[6,"Bech32",3831,16267],[6,"Bech32m",3831,16267],[6,"DecodeError",3831,16268],[6,"EncodeError",3831,16268],[6,"EncodeIoError",3831,16268],[5,"CodeLengthError",4179,16269],[10,"Fe32IterExt",3831,16266],[5,"FesToBytes",4679,16266],[6,"UncheckedHrpstringError",4179,16269],[6,"FromCharError",4542,16226],[5,"LowercaseByteIter",4587,16265],[5,"LowercaseCharIter",4587,16265],[6,"Error",4587,16265],[1,"i128"],[5,"Encoder",4462,16270],[10,"Checksum",3831,16271],[5,"PackedNull",4111,16271],[5,"Engine",4111,16271],[10,"PackedFe32",4111,16271],[5,"HrpFe32Iter",4111,16271],[5,"CheckedHrpstring",4179,16269],[5,"ByteIter",4179,16269],[5,"SegwitHrpstring",4179,16269],[6,"SegwitHrpstringError",4179,16269],[6,"CheckedHrpstringError",4179,16269],[6,"CharError",4179,16269],[6,"ChecksumError",4179,16269],[5,"SegwitCodeLengthError",4179,16269],[6,"PaddingError",4179,16269],[5,"UncheckedHrpstring",4179,16269],[5,"AsciiToFe32Iter",4179,16269],[6,"WitnessLengthError",4748,16272],[5,"Fe32Iter",4179,16269],[5,"ByteIter",4462,16270],[5,"CharIter",4462,16270],[5,"Fe32Iter",4462,16270],[5,"WitnessVersionIter",4462,16270],[6,"TryFromError",4542,16226],[5,"TryFromIntError",16273],[5,"Checksummed",4679,16266],[10,"ExactSizeIterator",16274],[5,"InvalidWitnessVersionError",4748,16272],[6,"EncodeError",4796,16230],[6,"Error",4856,16236],[5,"HeaderAndShortIds",4856,16236],[5,"BlockTransactionsRequest",4856,16236],[5,"TxIndexOutOfRangeError",4856,16236],[5,"BlockTransactions",4856,16236],[6,"HexToArrayError",7839,16215],[5,"BlockFilterWriter",5046,16179],[5,"GcsFilterWriter",5046,16179],[6,"Error",5046,16179],[5,"BlockFilter",5046,16179],[5,"BitStreamWriter",5046,16179],[5,"BlockFilterReader",5046,16179],[5,"GcsFilterReader",5046,16179],[5,"BitStreamReader",5046,16179],[5,"ChainCode",5160,16180],[5,"Fingerprint",5160,16180],[5,"DerivationPathIterator",5160,16180],[5,"Xpriv",5160,16180],[5,"InvalidBase58PayloadLengthError",5160,16180],[6,"KeyRequest",12026,16203],[10,"IntoDerivationPath",5160,16180],[5,"Version",5519,16148],[6,"ValidationError",5519,16148],[5,"ParseHeightError",5710,16222],[5,"ParseTimeError",5710,16222],[5,"ConversionError",5710,16222],[6,"ParseError",16222],[5,"AbsLockTime",16275],[5,"Height",5896,16219],[5,"Time",5896,16219],[5,"DisabledLockTimeError",5896,16195],[5,"IncompatibleHeightError",5896,16195],[5,"IncompatibleTimeError",5896,16195],[5,"PushBytesError",6413,16276],[6,"Error",6413,16181],[6,"UintError",16181],[10,"PushBytesErrorReport",6413,16277],[6,"FromStrError",6992,16200],[6,"TryFromInstructionError",6992,16200],[5,"ParseIntError",11993,16278],[6,"ParseOutPointError",7076,16145],[5,"IndexOutOfBoundsError",7076,16145],[5,"Version",7076,16145],[5,"InputWeightPrediction",7076,16145],[10,"Decodable",7253,16201],[10,"Encodable",7253,16201],[10,"WriteExt",7253,16201],[6,"DecodeError",7253,16279],[10,"IntoDeError",7461,16280],[10,"ReadExt",7253,16201],[5,"CheckedData",7344,16201],[6,"FromHexError",7344,16201],[5,"OddLengthStringError",7839,16215],[5,"Hex",7461,16280],[10,"Case",7496,16281],[10,"EncodeBytes",7461,16280],[5,"DecodeInitError",7496,16281],[5,"DecodeError",7496,16281],[5,"Encoder",7496,16281],[5,"Decoder",7496,16281],[5,"SerializedSignature",7574,16224],[6,"Error",7574,16224],[5,"Iter",16282],[5,"Signature",12889,16283],[5,"MissingPrefixError",7661,16216],[5,"ContainsPrefixError",7661,16216],[17,"Engine"],[17,"Bytes"],[10,"Hash",13416,16158],[10,"HashEngine",13416,16158],[10,"FromHex",7839,16284],[17,"MidState"],[17,"Display"],[10,"DisplayHex",7839,16285],[6,"Case",7839,16286],[10,"Display",16157],[10,"LowerHex",16157],[10,"UpperHex",16157],[5,"InvalidCharError",7839,16215],[5,"InvalidLengthError",8059,16215],[5,"HexToBytesIter",7839,16287],[5,"BytesToHexIter",7839,16287],[5,"HexDigitsIter",16287],[10,"DoubleEndedIterator",16288],[10,"FusedIterator",16289],[5,"BufEncoder",8003,16290],[5,"DisplayByteSlice",8021,16285],[5,"DisplayArray",8021,16285],[5,"HashEngine",8121,16228],[17,"Ok"],[17,"SerializeSeq"],[17,"SerializeTuple"],[17,"SerializeTupleStruct"],[17,"SerializeTupleVariant"],[17,"SerializeMap"],[17,"SerializeStruct"],[17,"SerializeStructVariant"],[10,"Error",9786,16167],[10,"SerializeSeq",9786,16167],[10,"SerializeTuple",9786,16167],[10,"SerializeTupleStruct",9786,16167],[10,"SerializeTupleVariant",9786,16167],[10,"SerializeMap",9786,16167],[10,"SerializeStruct",9786,16167],[10,"SerializeStructVariant",9786,16167],[10,"Visitor",8279,16155],[1,"f32"],[5,"IgnoredAny",8279,16291],[6,"Unexpected",8279,16155],[17,"Value"],[10,"DeserializeSeed",8279,16155],[10,"Expected",8279,16155],[17,"Deserializer"],[10,"VariantAccess",8279,16155],[10,"SeqAccess",8279,16155],[10,"MapAccess",8279,16155],[5,"Request",16292],[17,"Variant"],[10,"EnumAccess",8279,16155],[5,"UnitDeserializer",8463,16247],[5,"U32Deserializer",8463,16247],[5,"StrDeserializer",8463,16247],[5,"BorrowedStrDeserializer",8463,16247],[5,"CowStrDeserializer",8463,16247],[5,"BytesDeserializer",8463,16247],[5,"BorrowedBytesDeserializer",8463,16247],[5,"MapDeserializer",8463,16247],[5,"Error",8463,16247],[5,"BoolDeserializer",8463,16247],[5,"I8Deserializer",8463,16247],[5,"I16Deserializer",8463,16247],[5,"I32Deserializer",8463,16247],[5,"I64Deserializer",8463,16247],[5,"I128Deserializer",8463,16247],[5,"IsizeDeserializer",8463,16247],[5,"U8Deserializer",8463,16247],[5,"U16Deserializer",8463,16247],[5,"U64Deserializer",8463,16247],[5,"U128Deserializer",8463,16247],[5,"UsizeDeserializer",8463,16247],[5,"F32Deserializer",8463,16247],[5,"F64Deserializer",8463,16247],[5,"CharDeserializer",8463,16247],[5,"SeqDeserializer",8463,16247],[5,"SeqAccessDeserializer",8463,16247],[5,"MapAccessDeserializer",8463,16247],[5,"EnumAccessDeserializer",8463,16247],[1,"isize"],[5,"Impossible",9786,16293],[5,"Source",16292],[10,"SerdeHash",9916,16294],[5,"Hash",9921,16295],[5,"HashEngine",9921,16295],[5,"Midstate",9991,16136],[10,"Tag",10158,16189],[5,"Hash",10205,16296],[5,"HashEngine",10205,16296],[5,"Hash",10261,16297],[5,"HashEngine",10261,16297],[5,"Hash",10331,16298],[5,"HashEngine",10331,16298],[5,"Hash",10387,16299],[5,"State",10387,16299],[5,"HashEngine",10387,16299],[6,"ErrorKind",10479,16207],[5,"FromStd",10479,16300],[10,"BufRead",16255],[5,"ToStd",10479,16300],[5,"Take",10479,16205],[5,"Cursor",10479,16205],[5,"Sink",10479,16205],[5,"Keypair",13108,16186],[10,"Context",12488,16177],[5,"TweakedKeypair",10727,16182],[6,"ParseCompressedPublicKeyError",10727,16182],[5,"InvalidBase58PayloadLengthError",10727,16182],[5,"InvalidAddressVersionError",10727,16182],[5,"Context",13108,16186],[5,"NonNull",16301],[17,"TweakedAux"],[17,"TweakedKey"],[10,"TapTweak",10727,16182],[6,"All",12488,16302],[5,"DisplaySecret",16303],[5,"InvalidParityValue",12488,16174],[5,"AllPreallocated",12488,16177],[5,"ManuallyDrop",16304],[5,"SignOnlyPreallocated",12488,16177],[5,"VerifyOnlyPreallocated",12488,16177],[10,"Rng",13530,16305],[5,"AlignedType",13386,16306],[10,"PreallocatedContext",12488,16177],[5,"RecoverableSignature",12889,16307],[10,"CryptoRng",13530,16308],[6,"SignOnly",12488,16302],[6,"VerifyOnly",12488,16302],[5,"PartialMerkleTree",11097,16202],[5,"UnknownChainHashError",11155,16146],[5,"ServiceFlags",11205,16217],[5,"ParseMagicError",11205,16217],[5,"UnknownMagicError",11205,16217],[6,"AddrV2",11363,16238],[5,"CommandString",11418,16309],[5,"CommandStringError",11418,16309],[5,"RawNetworkMessage",11418,16309],[6,"NetworkMessage",11418,16309],[5,"GetBlocksMessage",11548,16237],[5,"GetHeadersMessage",11548,16237],[5,"FilterLoad",11626,16310],[6,"BloomFlags",11626,16310],[5,"FilterAdd",11626,16310],[5,"SendCmpct",11690,16311],[5,"CmpctBlock",11690,16311],[5,"GetBlockTxn",11690,16311],[5,"BlockTxn",11690,16311],[5,"GetCFilters",11783,16312],[5,"CFilter",11783,16312],[5,"GetCFHeaders",11783,16312],[5,"CFHeaders",11783,16312],[5,"GetCFCheckpt",11783,16312],[5,"CFCheckpt",11783,16312],[5,"VersionMessage",11915,16313],[6,"RejectReason",11915,16313],[5,"Reject",11915,16313],[5,"ParseIntError",16273],[5,"Output",12026,16314],[6,"GetKeyError",12026,16203],[6,"OutputType",12026,16203],[6,"SigningAlgorithm",12026,16203],[6,"IndexOutOfBoundsError",12026,16203],[5,"PsbtSighashType",12026,16315],[5,"Input",12026,16315],[6,"PsbtParseError",12026,16316],[6,"TaprootError",14335,16183],[6,"P2wpkhError",14335,16183],[6,"ConversionError",16150],[5,"ProprietaryKey",12417,16317],[10,"From",16209],[5,"Key",12417,16317],[5,"Pair",12417,16317],[5,"PublicKey",13108,16186],[10,"ThirtyTwoByteHash",12488,16175],[5,"OutOfRangeError",14284,16176],[5,"ElligatorSwift",13033,16318],[5,"SharedSecret",12858,16319],[5,"RecoverableSignature",13354,16320],[5,"Signature",13108,16186],[5,"SerializedSignature",12889,16321],[5,"RecoveryId",12889,16307],[5,"IntoIter",13011,16322],[5,"ElligatorSwiftSharedSecret",13033,16318],[6,"ElligatorSwiftParty",13033,16318],[17,"Target"],[10,"CPtr",13108,16186],[5,"ElligatorSwift",13108,16186],[6,"c_void",13386,16323],[1,"fn"],[5,"SchnorrSigExtraParams",13108,16186],[5,"Hmac",13416,16324],[5,"HmacEngine",13416,16324],[10,"FromStr",16325],[5,"Error",13530,16326],[5,"NonZero",16327],[10,"Fill",13530,16305],[10,"RngCore",13530,16308],[5,"Error",16328],[17,"Seed"],[10,"SeedableRng",13530,16308],[10,"Default",16329],[10,"AsMut",16209],[10,"SampleUniform",13857,16330],[10,"SampleRange",13857,16330],[10,"Distribution",14019,16331],[5,"DistIter",13582,16331],[5,"ThreadRng",14063,16332],[10,"DistString",13582,16331],[5,"Alphanumeric",13582,16333],[5,"Standard",13582,16334],[5,"Bernoulli",13582,16335],[6,"BernoulliError",13582,16335],[5,"OpenClosed01",13582,16336],[5,"Open01",13582,16336],[5,"Slice",13582,16337],[5,"WeightedIndex",13582,16338],[6,"WeightedError",13582,16338],[5,"Uniform",13582,16330],[5,"DistMap",13582,16331],[5,"EmptySlice",16337],[10,"AddAssign",16339],[10,"SampleBorrow",13857,16330],[5,"Wrapping",16340],[10,"SubAssign",16339],[5,"UniformInt",13857,16330],[5,"UniformChar",13857,16330],[5,"UniformFloat",13857,16330],[5,"UniformDuration",13857,16330],[17,"X"],[10,"UniformSampler",13857,16330],[5,"Duration",16341],[5,"WeightedIndex",14007,16342],[10,"Weight",14007,16342],[10,"SliceRandom",14195,16343],[10,"IteratorRandom",14195,16343],[5,"SliceChooseIter",14195,16343],[5,"OsRng",14063,16344],[5,"StdRng",14063,16345],[5,"ReseedingRng",14126,16346],[10,"BlockRngCore",16347],[5,"ReadRng",14126,16348],[5,"ReadError",14126,16348],[5,"StepRng",14174,16349],[10,"Index",16350],[6,"IndexVec",14227,16351],[6,"IndexVecIntoIter",14227,16351],[6,"IndexVecIter",14227,16351],[5,"Annex",14335,16183],[6,"Prevouts",14335,16183],[5,"PrevoutsSizeError",14335,16183],[5,"PrevoutsKindError",14335,16183],[6,"PrevoutsIndexError",14335,16183],[5,"SighashTypeParseError",14335,16183],[5,"SingleMissingOutputError",14335,16183],[6,"AnnexError",14335,16183],[6,"SigningDataError",14335,16183],[6,"EncodeSigningDataResult",14335,16183],[10,"BorrowMut",16153],[6,"MessageSignatureError",14684,16352],[5,"MessageSignature",14684,16352],[5,"TaprootBuilder",14739,16184],[6,"TaprootBuilderError",14739,16184],[6,"TapLeaf",14739,16184],[6,"SigFromSliceError",14739,16223],[6,"IncompleteBuilderError",14739,16184],[6,"HiddenNodesError",14739,16184],[5,"TapTree",14739,16184],[5,"NodeInfo",14739,16184],[5,"ScriptLeaf",14739,16184],[5,"FutureLeafVersion",14739,16184],[6,"TaprootError",14739,16184],[5,"LeafNodes",14739,16184],[5,"ScriptLeaves",14739,16184],[5,"BTreeSet",16353],[5,"SerializedSignature",15404,16354],[5,"IntoIter",15378,16243],[5,"IntoIter",15404,16355],[5,"IndexedTxGraph",15459],[5,"ChangeSet",15459],[10,"Indexer",15510],[5,"Arc",16356],[5,"ChangeSet",15519],[5,"ChangeSet",15945],[17,"ChangeSet"],[5,"KeychainTxOutIndex",15519],[6,"InsertDescriptorError",15519],[5,"Transaction",16357],[8,"Indexed",0,16358],[8,"KeychainIndexed",0,16358],[10,"SyncRequestBuilderExt",15519],[10,"FullScanRequestBuilderExt",15519],[5,"SpkTxOutIndex",15627],[5,"LocalChain",15664],[5,"ChangeSet",15664],[5,"MissingGenesisError",15664],[5,"CannotConnectError",15664],[6,"ApplyHeaderError",15664],[5,"AlterCheckPointError",15664],[5,"SyncRequestBuilder",15799,16359],[5,"SyncRequest",15799,16359],[5,"FullScanRequestBuilder",15799,16359],[5,"FullScanRequest",15799,16359],[6,"SyncItem",15799,16359],[5,"SyncProgress",15799,16359],[5,"SyncResponse",15799,16359],[5,"FullScanResponse",15799,16359],[10,"Any",16171],[10,"Send",16206],[17,"IntoIter"],[6,"CalculateFeeError",15945],[5,"TxNode",15945],[5,"CanonicalTx",15945],[5,"TxAncestors",15945],[5,"TxDescendants",15945],[5,"HashSet",16360],[15,"Confirmed",341],[15,"Unconfirmed",341],[15,"P2pkh",3017],[15,"P2sh",3017],[15,"Segwit",3017],[8,"ExtendedPubKey",5160],[8,"ExtendendPubKey",5160],[8,"ExtendedPrivKey",5160],[8,"ExtendendPrivKey",5160],[15,"Normal",5506],[15,"Hardened",5506],[15,"InvalidChecksum",7437],[15,"OversizedVectorAllocation",7437],[10,"ByteDecoder",7461],[10,"ByteEncoder",7461],[5,"With",7461],[6,"Lower",7496],[6,"Upper",7496],[5,"HmacMidState",8108],[8,"Result",10479],[15,"Unknown",11546],[15,"Unknown",11624],[15,"UnexpectedUnsignedTx",12404],[15,"InvalidPreimageHashPair",12404],[15,"AbsurdFeeRate",12409],[15,"SendingTooMuch",12409],[15,"MissingInputValue",12409],[15,"Inputs",12413],[15,"TxInput",12413],[8,"NonceFn",13108],[8,"EcdhHashFn",13108],[8,"SchnorrNonceFn",13108],[8,"EllswiftEcdhHashFn",13108],[15,"DescriptorAlreadyAssigned",15623],[15,"KeychainAlreadyAssigned",15623]],"r":[[0,16134],[1,16141],[2,16132],[3,16135],[4,16159],[5,16140],[6,16137],[7,16137],[8,16135],[10,16133],[11,16133],[13,16140],[15,16358],[16,15459],[17,15510],[18,16358],[19,16164],[20,16141],[21,15945],[22,16134],[23,16138],[227,15510],[257,16358],[258,15510],[344,16178],[345,16178],[350,16147],[356,16148],[357,16148],[359,16173],[360,16182],[364,16147],[367,16183],[368,16196],[369,16179],[370,16179],[371,16178],[372,16183],[394,16202],[400,16146],[401,16146],[410,16197],[411,16145],[418,16182],[419,16203],[420,16182],[421,16182],[427,16185],[428,16149],[429,16181],[430,16183],[431,16145],[432,16147],[438,16184],[439,16184],[440,16184],[441,16184],[442,16183],[443,16183],[444,16183],[445,16184],[446,16184],[447,16173],[452,16145],[453,16145],[454,16148],[455,16145],[456,16145],[474,16201],[476,16182],[477,16181],[478,16172],[479,16198],[480,16148],[481,16148],[482,16199],[483,16200],[484,16173],[485,16145],[486,16180],[487,16174],[503,16361],[524,16361],[628,16361],[629,16361],[630,16361],[633,16361],[970,16361],[1095,16362],[1295,16361],[1858,16361],[1996,16362],[2008,16361],[2024,16361],[2049,16361],[2071,16361],[2124,16361],[2126,16361],[2142,16361],[2231,16362],[2235,16361],[2253,16361],[2746,16178],[2747,16178],[2748,16178],[2752,16218],[2755,16218],[2757,16218],[2758,16178],[2760,16218],[2762,16178],[2763,16178],[2764,16178],[2766,16218],[2771,16218],[2775,16218],[2779,16218],[2781,16218],[2874,16178],[3023,16218],[3025,16218],[3027,16218],[3029,16218],[3031,16218],[3032,16218],[3033,16218],[3034,16218],[3036,16218],[3042,16147],[3046,16147],[3047,16147],[3048,16147],[3057,16147],[3060,16147],[3088,16147],[3103,16232],[3104,16232],[3105,16232],[3106,16232],[3114,16363],[3115,16363],[3116,16363],[3117,16364],[3118,16364],[3119,16365],[3120,16365],[3121,16365],[3122,16366],[3123,16366],[3125,16231],[3127,16231],[3128,16170],[3130,16212],[3222,16367],[3223,16367],[3248,16367],[3249,16367],[3250,16367],[3271,16367],[3493,16231],[3495,16231],[3496,16231],[3498,16231],[3536,16257],[3539,16257],[3540,16256],[3541,16258],[3548,16368],[3562,16257],[3564,16257],[3565,16257],[3566,16257],[3570,16257],[3571,16368],[3572,16256],[3574,16256],[3575,16256],[3576,16256],[3579,16256],[3580,16368],[3603,16368],[3604,16368],[3624,16368],[3625,16259],[3626,16259],[3627,16259],[3628,16259],[3630,16259],[3632,16259],[3634,16259],[3635,16259],[3669,16260],[3681,16258],[3683,16258],[3685,16258],[3686,16258],[3687,16258],[3688,16261],[3689,16261],[3734,16258],[3763,16261],[3764,16261],[3765,16261],[3766,16261],[3767,16261],[3768,16261],[3769,16261],[3770,16261],[3777,16258],[3786,16262],[3799,16263],[3800,16264],[3801,16263],[3832,16267],[3833,16267],[3834,16266],[3838,16271],[3841,16268],[3843,16268],[3844,16268],[3846,16226],[3847,16266],[3852,16265],[3859,16267],[3930,16268],[3936,16268],[3937,16268],[3938,16268],[3939,16268],[3940,16268],[3941,16268],[3942,16268],[3943,16268],[3944,16268],[3945,16268],[3999,16268],[4028,16268],[4030,16268],[4097,16265],[4098,16265],[4099,16265],[4100,16265],[4101,16267],[4102,16267],[4103,16267],[4104,16267],[4105,16267],[4106,16267],[4107,16267],[4108,16267],[4109,16267],[4110,16267],[4113,16271],[4114,16271],[4116,16271],[4119,16271],[4120,16271],[4179,16269],[4180,16269],[4182,16269],[4183,16269],[4184,16269],[4187,16269],[4189,16269],[4190,16269],[4202,16269],[4204,16269],[4205,16269],[4206,16269],[4210,16269],[4211,16269],[4462,16270],[4463,16270],[4464,16270],[4465,16270],[4466,16270],[4542,16226],[4543,16226],[4548,16226],[4587,16265],[4588,16265],[4589,16265],[4590,16265],[4592,16265],[4593,16265],[4595,16265],[4596,16265],[4599,16265],[4679,16266],[4680,16266],[4681,16266],[4682,16266],[4683,16266],[4749,16272],[4750,16272],[4753,16272],[4754,16272],[4755,16272],[4778,16272],[4779,16272],[4792,16272],[4793,16272],[4796,16230],[4797,16230],[4800,16272],[4801,16272],[4812,16230],[4813,16230],[4814,16230],[4815,16230],[4816,16230],[4817,16230],[4818,16230],[4819,16230],[4820,16230],[4821,16230],[4822,16230],[4856,16236],[4857,16236],[4858,16236],[4859,16236],[4861,16236],[4862,16236],[4863,16236],[5046,16179],[5047,16179],[5048,16179],[5049,16179],[5050,16179],[5051,16179],[5052,16179],[5053,16179],[5054,16179],[5055,16179],[5162,16180],[5163,16180],[5164,16180],[5165,16180],[5166,16180],[5167,16180],[5168,16180],[5169,16180],[5170,16180],[5171,16180],[5174,16180],[5176,16180],[5181,16180],[5186,16180],[5187,16180],[5188,16180],[5508,16196],[5509,16172],[5510,16369],[5511,16369],[5512,16369],[5513,16369],[5514,16369],[5515,16369],[5516,16369],[5517,16369],[5518,16369],[5521,16148],[5522,16148],[5523,16148],[5524,16148],[5531,16148],[5534,16148],[5535,16148],[5536,16148],[5537,16148],[5640,16193],[5641,16193],[5642,16193],[5643,16193],[5644,16193],[5645,16193],[5646,16193],[5647,16193],[5648,16193],[5650,16193],[5651,16193],[5653,16193],[5654,16193],[5658,16193],[5689,16193],[5707,16196],[5708,16370],[5709,16370],[5711,16222],[5712,16222],[5713,16222],[5714,16194],[5719,16222],[5720,16222],[5723,16222],[5897,16195],[5898,16219],[5899,16195],[5900,16195],[5901,16195],[5907,16219],[5909,16219],[6106,16197],[6107,16197],[6111,16197],[6112,16197],[6113,16197],[6114,16197],[6115,16197],[6116,16197],[6123,16197],[6157,16371],[6158,16371],[6159,16371],[6160,16371],[6161,16371],[6162,16371],[6163,16371],[6164,16371],[6165,16371],[6166,16371],[6167,16371],[6168,16371],[6169,16371],[6170,16371],[6171,16371],[6172,16371],[6173,16371],[6174,16371],[6175,16371],[6176,16371],[6177,16371],[6178,16371],[6179,16371],[6180,16371],[6181,16371],[6182,16371],[6183,16371],[6184,16371],[6185,16371],[6186,16371],[6187,16371],[6188,16371],[6189,16371],[6190,16371],[6191,16371],[6192,16371],[6193,16371],[6194,16371],[6195,16371],[6196,16371],[6197,16371],[6198,16371],[6199,16371],[6200,16371],[6201,16371],[6202,16371],[6203,16371],[6204,16371],[6205,16371],[6206,16371],[6207,16371],[6208,16371],[6209,16371],[6210,16371],[6211,16371],[6212,16371],[6213,16371],[6214,16371],[6215,16371],[6216,16371],[6217,16371],[6218,16371],[6219,16371],[6220,16371],[6221,16371],[6222,16371],[6223,16371],[6224,16371],[6225,16371],[6226,16371],[6227,16371],[6228,16371],[6229,16371],[6230,16371],[6231,16371],[6232,16371],[6233,16371],[6234,16371],[6235,16371],[6236,16371],[6237,16371],[6238,16371],[6239,16371],[6240,16371],[6241,16371],[6242,16371],[6243,16371],[6244,16371],[6245,16371],[6246,16371],[6247,16371],[6248,16371],[6249,16371],[6250,16371],[6251,16371],[6252,16371],[6253,16371],[6254,16371],[6255,16371],[6256,16371],[6257,16371],[6258,16371],[6259,16371],[6260,16371],[6261,16371],[6262,16371],[6263,16371],[6264,16371],[6265,16371],[6266,16371],[6267,16371],[6268,16371],[6269,16371],[6270,16371],[6271,16371],[6272,16371],[6273,16371],[6274,16371],[6275,16371],[6276,16371],[6277,16371],[6278,16371],[6279,16371],[6280,16371],[6281,16371],[6282,16371],[6283,16371],[6284,16371],[6285,16371],[6286,16371],[6287,16371],[6288,16371],[6289,16371],[6290,16371],[6291,16371],[6292,16371],[6293,16371],[6294,16371],[6295,16371],[6296,16371],[6297,16371],[6298,16371],[6299,16371],[6300,16371],[6301,16371],[6302,16371],[6303,16371],[6304,16371],[6305,16371],[6306,16371],[6307,16371],[6308,16371],[6309,16371],[6310,16371],[6311,16371],[6312,16371],[6313,16371],[6314,16371],[6315,16371],[6316,16371],[6317,16371],[6318,16371],[6319,16371],[6320,16371],[6321,16371],[6322,16371],[6323,16371],[6324,16371],[6325,16371],[6326,16371],[6327,16371],[6328,16371],[6329,16371],[6330,16371],[6331,16371],[6332,16371],[6333,16371],[6334,16371],[6335,16371],[6336,16371],[6337,16371],[6338,16371],[6339,16371],[6340,16371],[6341,16371],[6342,16371],[6343,16371],[6344,16371],[6345,16371],[6346,16371],[6347,16371],[6348,16371],[6349,16371],[6350,16371],[6351,16371],[6352,16371],[6353,16371],[6354,16371],[6355,16371],[6356,16371],[6357,16371],[6358,16371],[6359,16371],[6360,16371],[6361,16371],[6362,16371],[6363,16371],[6364,16371],[6365,16371],[6366,16371],[6367,16371],[6368,16371],[6369,16371],[6370,16371],[6371,16371],[6372,16371],[6373,16371],[6374,16371],[6375,16371],[6376,16371],[6377,16371],[6378,16371],[6379,16371],[6380,16371],[6381,16371],[6382,16371],[6383,16371],[6384,16371],[6385,16371],[6386,16371],[6387,16371],[6388,16371],[6389,16371],[6390,16371],[6391,16371],[6392,16371],[6393,16371],[6394,16371],[6395,16371],[6396,16371],[6397,16371],[6398,16371],[6399,16371],[6400,16371],[6401,16371],[6402,16371],[6403,16371],[6404,16371],[6405,16371],[6406,16371],[6407,16371],[6408,16371],[6409,16371],[6410,16371],[6411,16371],[6412,16371],[6413,16192],[6414,16185],[6416,16181],[6417,16210],[6418,16210],[6419,16210],[6423,16190],[6425,16190],[6426,16276],[6427,16277],[6428,16185],[6429,16149],[6430,16181],[6433,16181],[6901,16181],[6902,16181],[6903,16181],[6964,16181],[6965,16181],[6966,16181],[6967,16199],[6970,16199],[6971,16199],[6972,16199],[6993,16200],[6996,16200],[6997,16200],[7016,16200],[7077,16145],[7078,16145],[7079,16145],[7081,16145],[7082,16145],[7088,16145],[7089,16145],[7092,16145],[7093,16145],[7094,16145],[7095,16145],[7097,16145],[7100,16145],[7129,16145],[7184,16145],[7185,16145],[7236,16172],[7237,16172],[7238,16198],[7239,16198],[7255,16201],[7256,16279],[7257,16201],[7260,16191],[7262,16201],[7268,16201],[7284,16201],[7285,16201],[7297,16279],[7316,16279],[7331,16279],[7332,16201],[7344,16201],[7345,16201],[7347,16201],[7348,16201],[7349,16201],[7352,16201],[7357,16201],[7359,16201],[7360,16201],[7376,16201],[7377,16201],[7378,16201],[7418,16201],[7419,16201],[7441,16191],[7442,16191],[7443,16191],[7444,16191],[7445,16191],[7446,16191],[7447,16191],[7461,16280],[7462,16280],[7465,16280],[7467,16280],[7469,16280],[7470,16280],[7483,16280],[7496,16281],[7497,16281],[7498,16281],[7499,16281],[7500,16281],[7501,16281],[7502,16281],[7575,16224],[7578,16224],[7580,16224],[7662,16216],[7664,16216],[7667,16278],[7668,16216],[7669,16216],[7744,16148],[7745,16179],[7746,16179],[7747,16148],[7748,16145],[7749,16148],[7750,16148],[7751,16145],[7756,16158],[7757,16158],[7758,16158],[7759,16324],[7760,16324],[7765,16158],[7766,16158],[7772,16158],[7774,16158],[7775,16158],[7776,16158],[7780,16158],[7781,16158],[7782,16158],[7783,16158],[7784,16158],[7785,16158],[7786,16158],[7787,16158],[7788,16158],[7789,16158],[7790,16158],[7791,16158],[7793,16372],[7794,16188],[7839,16287],[7840,16286],[7842,16285],[7844,16284],[7845,16287],[7846,16215],[7847,16215],[7848,16287],[7851,16215],[7855,16215],[7873,16286],[7885,16286],[7901,16286],[7911,16286],[7927,16286],[7950,16286],[7951,16286],[7959,16286],[8002,16286],[8003,16290],[8022,16285],[8023,16285],[8024,16285],[8039,16286],[8043,16286],[8059,16215],[8060,16215],[8063,16215],[8065,16215],[8067,16215],[8089,16284],[8090,16215],[8091,16215],[8098,16285],[8100,16284],[8108,16324],[8109,16324],[8110,16324],[8121,16228],[8122,16228],[8192,16155],[8193,16373],[8194,16155],[8198,16167],[8199,16373],[8207,16167],[8211,16374],[8244,16374],[8247,16374],[8282,16155],[8283,16155],[8284,16155],[8285,16155],[8288,16155],[8289,16155],[8295,16155],[8297,16291],[8298,16155],[8300,16155],[8306,16155],[8312,16155],[8319,16155],[8320,16155],[8416,16155],[8463,16247],[8464,16247],[8465,16247],[8466,16247],[8467,16247],[8468,16247],[8469,16247],[8470,16247],[8471,16247],[8472,16247],[8473,16247],[8474,16247],[8475,16247],[8476,16247],[8477,16247],[8478,16247],[8479,16247],[8480,16247],[8481,16247],[8482,16247],[8483,16247],[8484,16247],[8485,16247],[8486,16247],[8487,16247],[8488,16247],[8489,16247],[8490,16247],[8491,16247],[9786,16167],[9795,16293],[9804,16167],[9805,16167],[9807,16167],[9809,16167],[9811,16167],[9813,16167],[9815,16167],[9817,16167],[9819,16167],[9915,16375],[9917,16294],[9921,16295],[9922,16295],[9991,16136],[9992,16136],[9993,16136],[10105,16187],[10158,16189],[10159,16189],[10205,16296],[10206,16296],[10261,16297],[10262,16297],[10331,16298],[10332,16298],[10387,16299],[10388,16299],[10389,16299],[10483,16205],[10487,16205],[10489,16207],[10490,16207],[10491,16300],[10500,16205],[10501,16205],[10502,16205],[10503,16205],[10505,16300],[10508,16205],[10595,16205],[10596,16205],[10599,16205],[10680,16205],[10728,16182],[10731,16182],[10732,16182],[10735,16182],[10737,16182],[10742,16174],[10744,16174],[10745,16182],[10746,16182],[10747,16182],[10748,16182],[10749,16182],[10750,16175],[10754,16182],[10755,16182],[10758,16182],[10759,16182],[10760,16182],[10761,16182],[10762,16182],[10763,16177],[10764,16182],[10765,16174],[11100,16202],[11101,16202],[11107,16202],[11115,16376],[11116,16376],[11157,16146],[11158,16146],[11159,16146],[11165,16146],[11166,16146],[11203,16377],[11204,16377],[11205,16238],[11210,16217],[11215,16217],[11216,16217],[11219,16217],[11223,16217],[11226,16217],[11316,16217],[11317,16217],[11318,16217],[11319,16217],[11320,16217],[11321,16217],[11363,16238],[11364,16238],[11365,16238],[11427,16309],[11428,16309],[11443,16309],[11444,16309],[11447,16309],[11451,16309],[11551,16237],[11552,16237],[11553,16237],[11627,16310],[11628,16310],[11629,16310],[11690,16311],[11691,16311],[11692,16311],[11693,16311],[11783,16312],[11784,16312],[11785,16312],[11786,16312],[11787,16312],[11788,16312],[11923,16313],[11924,16313],[11925,16313],[11993,16278],[12014,16378],[12015,16378],[12016,16378],[12017,16378],[12018,16378],[12019,16378],[12020,16378],[12021,16378],[12022,16378],[12023,16173],[12024,16173],[12025,16173],[12036,16204],[12038,16203],[12040,16203],[12041,16203],[12043,16203],[12044,16315],[12062,16203],[12077,16314],[12078,16203],[12081,16203],[12083,16316],[12084,16315],[12094,16203],[12095,16203],[12096,16203],[12097,16203],[12098,16203],[12294,16203],[12298,16203],[12417,16317],[12418,16317],[12419,16317],[12420,16317],[12488,16302],[12489,16177],[12490,16177],[12492,16175],[12498,16174],[12507,16174],[12509,16175],[12513,16174],[12514,16177],[12515,16174],[12516,16176],[12517,16175],[12518,16174],[12519,16302],[12520,16177],[12521,16177],[12522,16175],[12523,16177],[12524,16302],[12525,16177],[12526,16174],[12602,16175],[12613,16175],[12614,16175],[12615,16175],[12720,16175],[12721,16175],[12760,16175],[12761,16175],[12842,16379],[12843,16379],[12844,16379],[12845,16379],[12846,16379],[12847,16379],[12848,16379],[12849,16379],[12850,16379],[12851,16379],[12852,16379],[12853,16379],[12854,16379],[12855,16379],[12856,16379],[12857,16379],[12858,16319],[12883,16319],[12889,16307],[12890,16307],[12891,16321],[12892,16283],[12983,16283],[13011,16322],[13012,16321],[13035,16318],[13036,16318],[13037,16318],[13108,16186],[13109,16186],[13110,16186],[13111,16186],[13112,16186],[13113,16186],[13114,16186],[13119,16186],[13120,16186],[13121,16186],[13122,16186],[13123,16186],[13124,16186],[13125,16186],[13126,16186],[13127,16186],[13133,16186],[13187,16186],[13231,16186],[13232,16186],[13251,16186],[13257,16186],[13258,16186],[13259,16186],[13260,16186],[13261,16186],[13262,16186],[13263,16186],[13264,16186],[13265,16186],[13266,16186],[13267,16186],[13268,16186],[13269,16186],[13270,16186],[13271,16186],[13272,16186],[13273,16186],[13274,16186],[13275,16186],[13276,16186],[13277,16186],[13278,16186],[13279,16186],[13280,16186],[13281,16186],[13282,16186],[13283,16186],[13284,16186],[13285,16186],[13286,16186],[13287,16186],[13288,16186],[13289,16186],[13290,16186],[13291,16186],[13292,16186],[13293,16186],[13294,16186],[13295,16186],[13296,16186],[13297,16186],[13298,16186],[13299,16186],[13300,16186],[13301,16186],[13302,16186],[13303,16186],[13304,16186],[13305,16186],[13306,16186],[13307,16186],[13308,16186],[13309,16186],[13310,16186],[13311,16186],[13312,16186],[13313,16186],[13342,16186],[13354,16320],[13376,16320],[13377,16320],[13378,16320],[13379,16320],[13380,16320],[13386,16306],[13392,16306],[13393,16306],[13394,16306],[13395,16306],[13396,16323],[13405,16306],[13420,16158],[13421,16158],[13422,16158],[13423,16324],[13424,16324],[13438,16158],[13487,16158],[13488,16158],[13506,16158],[13508,16158],[13531,16308],[13532,16326],[13533,16305],[13535,16305],[13536,16308],[13538,16308],[13542,16380],[13562,16380],[13563,16380],[13566,16380],[13570,16380],[13573,16332],[13583,16333],[13584,16335],[13585,16335],[13586,16331],[13587,16331],[13588,16331],[13589,16331],[13593,16336],[13594,16336],[13595,16337],[13596,16334],[13598,16330],[13599,16338],[13600,16338],[13842,16334],[13856,16334],[13857,16330],[13858,16330],[13859,16330],[13861,16330],[13862,16330],[13863,16330],[13864,16330],[13865,16330],[13866,16330],[14004,16338],[14005,16338],[14006,16381],[14007,16342],[14008,16342],[14019,16308],[14020,16331],[14022,16343],[14023,16305],[14024,16308],[14026,16308],[14027,16343],[14028,16345],[14029,16332],[14053,16380],[14060,16332],[14063,16344],[14064,16345],[14065,16332],[14066,16382],[14101,16382],[14126,16348],[14127,16348],[14128,16346],[14174,16349],[14196,16343],[14197,16343],[14198,16343],[14213,16343],[14227,16351],[14228,16351],[14229,16351],[14264,16351],[14265,16351],[14284,16176],[14285,16176],[14304,16229],[14340,16183],[14341,16183],[14343,16183],[14345,16183],[14351,16183],[14353,16183],[14354,16183],[14361,16183],[14362,16183],[14364,16183],[14366,16183],[14368,16183],[14369,16183],[14370,16183],[14373,16183],[14375,16183],[14376,16183],[14380,16183],[14383,16183],[14384,16183],[14385,16183],[14386,16183],[14684,16383],[14688,16352],[14689,16352],[14724,16383],[14739,16184],[14743,16184],[14745,16184],[14748,16184],[14757,16184],[14758,16184],[14759,16184],[14760,16184],[14765,16184],[14766,16184],[14768,16223],[14770,16223],[14771,16184],[14772,16184],[14773,16184],[14774,16184],[14775,16184],[14776,16184],[14777,16184],[14778,16184],[14779,16184],[14780,16184],[14781,16184],[14782,16184],[14784,16184],[14785,16184],[14786,16184],[14787,16184],[14788,16184],[14789,16184],[14790,16243],[14791,16184],[15198,16184],[15246,16184],[15378,16243],[15379,16243],[15404,16355],[15405,16354],[15670,16137],[15671,16137],[15799,16359],[15800,16359],[15801,16359],[15804,16359],[15805,16359],[15806,16359],[15807,16359],[15808,16359],[15958,16138]],"b":[[33,"impl-AsRef%3C%5Bu8%5D%3E-for-DescriptorId"],[34,"impl-AsRef%3C%5Bu8;+%3C%24hash+as+%24crate::Hash%3E::LEN%5D%3E-for-DescriptorId"],[93,"impl-FromSql-for-Impl%3CDescriptorId%3E"],[94,"impl-FromSql-for-Impl%3CTxid%3E"],[95,"impl-FromSql-for-Impl%3CNetwork%3E"],[96,"impl-FromSql-for-Impl%3CAmount%3E"],[97,"impl-FromSql-for-Impl%3CTransaction%3E"],[98,"impl-FromSql-for-Impl%3CBlockHash%3E"],[99,"impl-FromSql-for-Impl%3CScriptBuf%3E"],[100,"impl-FromSql-for-Impl%3CDescriptor%3CDescriptorPublicKey%3E%3E"],[150,"impl-Display-for-Balance"],[151,"impl-Debug-for-Balance"],[155,"impl-Display-for-DescriptorId"],[156,"impl-UpperHex-for-DescriptorId"],[157,"impl-Debug-for-DescriptorId"],[158,"impl-LowerHex-for-DescriptorId"],[161,"impl-From%3CTxPosInBlock%3C\'b%3E%3E-for-BlockId"],[162,"impl-From%3C(u32,+BlockHash)%3E-for-BlockId"],[163,"impl-From%3C(%26u32,+%26BlockHash)%3E-for-BlockId"],[272,"impl-ToSql-for-Impl%3CDescriptor%3CDescriptorPublicKey%3E%3E"],[273,"impl-ToSql-for-Impl%3CTxid%3E"],[274,"impl-ToSql-for-Impl%3CNetwork%3E"],[275,"impl-ToSql-for-Impl%3CScriptBuf%3E"],[276,"impl-ToSql-for-Impl%3CBlockHash%3E"],[277,"impl-ToSql-for-Impl%3CDescriptorId%3E"],[278,"impl-ToSql-for-Impl%3CAmount%3E"],[279,"impl-ToSql-for-Impl%3CTransaction%3E"],[546,"impl-AsMut%3C%5Bu8%5D%3E-for-Script"],[547,"impl-AsMut%3CScript%3E-for-Script"],[548,"impl-AsMut%3C%5Bu8%5D%3E-for-ScriptBuf"],[549,"impl-AsMut%3CScript%3E-for-ScriptBuf"],[574,"impl-AsRef%3C%5Bu8;+bitcoin::::bip158::%7Bimpl%2317%7D::%7Bconstant%230%7D%5D%3E-for-FilterHash"],[575,"impl-AsRef%3C%5Bu8%5D%3E-for-FilterHash"],[576,"impl-AsRef%3C%5Bu8%5D%3E-for-FilterHeader"],[577,"impl-AsRef%3C%5Bu8;+bitcoin::::bip158::%7Bimpl%2324%7D::%7Bconstant%230%7D%5D%3E-for-FilterHeader"],[578,"impl-AsRef%3C%5Bu8%5D%3E-for-XKeyIdentifier"],[579,"impl-AsRef%3C%5Bu8;+bitcoin::::bip32::%7Bimpl%23106%7D::%7Bconstant%230%7D%5D%3E-for-XKeyIdentifier"],[580,"impl-AsRef%3C%5Bu8%5D%3E-for-BlockHash"],[581,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2322%7D::%7Bconstant%230%7D%5D%3E-for-BlockHash"],[582,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2329%7D::%7Bconstant%230%7D%5D%3E-for-TxMerkleNode"],[583,"impl-AsRef%3C%5Bu8%5D%3E-for-TxMerkleNode"],[584,"impl-AsRef%3C%5Bu8%5D%3E-for-WitnessMerkleNode"],[585,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2336%7D::%7Bconstant%230%7D%5D%3E-for-WitnessMerkleNode"],[586,"impl-AsRef%3C%5Bu8%5D%3E-for-WitnessCommitment"],[587,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::block::%7Bimpl%2343%7D::%7Bconstant%230%7D%5D%3E-for-WitnessCommitment"],[588,"impl-AsRef%3C%5Bu8%5D%3E-for-Script"],[589,"impl-AsRef%3CScript%3E-for-Script"],[590,"impl-AsRef%3CScript%3E-for-ScriptBuf"],[591,"impl-AsRef%3C%5Bu8%5D%3E-for-ScriptBuf"],[592,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::script::%7Bimpl%2356%7D::%7Bconstant%230%7D%5D%3E-for-ScriptHash"],[593,"impl-AsRef%3C%5Bu8%5D%3E-for-ScriptHash"],[594,"impl-AsRef%3CPushBytes%3E-for-ScriptHash"],[595,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::script::%7Bimpl%2363%7D::%7Bconstant%230%7D%5D%3E-for-WScriptHash"],[596,"impl-AsRef%3CPushBytes%3E-for-WScriptHash"],[597,"impl-AsRef%3C%5Bu8%5D%3E-for-WScriptHash"],[598,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::transaction::%7Bimpl%2353%7D::%7Bconstant%230%7D%5D%3E-for-Txid"],[599,"impl-AsRef%3C%5Bu8%5D%3E-for-Txid"],[600,"impl-AsRef%3C%5Bu8;+bitcoin::::blockdata::transaction::%7Bimpl%2360%7D::%7Bconstant%230%7D%5D%3E-for-Wtxid"],[601,"impl-AsRef%3C%5Bu8%5D%3E-for-Wtxid"],[602,"impl-AsRef%3CPushBytes%3E-for-PubkeyHash"],[603,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::key::%7Bimpl%2383%7D::%7Bconstant%230%7D%5D%3E-for-PubkeyHash"],[604,"impl-AsRef%3C%5Bu8%5D%3E-for-PubkeyHash"],[605,"impl-AsRef%3C%5Bu8%5D%3E-for-WPubkeyHash"],[606,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::key::%7Bimpl%2390%7D::%7Bconstant%230%7D%5D%3E-for-WPubkeyHash"],[607,"impl-AsRef%3CPushBytes%3E-for-WPubkeyHash"],[608,"impl-AsRef%3C%5Bu8%5D%3E-for-LegacySighash"],[609,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::sighash::%7Bimpl%2349%7D::%7Bconstant%230%7D%5D%3E-for-LegacySighash"],[610,"impl-AsRef%3C%5Bu8%5D%3E-for-SegwitV0Sighash"],[611,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::sighash::%7Bimpl%2356%7D::%7Bconstant%230%7D%5D%3E-for-SegwitV0Sighash"],[612,"impl-AsRef%3C%5Bu8%5D%3E-for-TapSighash"],[613,"impl-AsRef%3C%5Bu8;+bitcoin::::crypto::sighash::%7Bimpl%23109%7D::%7Bconstant%230%7D%5D%3E-for-TapSighash"],[615,"impl-AsRef%3C%5Bu8%5D%3E-for-TapLeafHash"],[616,"impl-AsRef%3C%5Bu8;+bitcoin::::taproot::%7Bimpl%2371%7D::%7Bconstant%230%7D%5D%3E-for-TapLeafHash"],[617,"impl-AsRef%3C%5Bu8%5D%3E-for-TapNodeHash"],[618,"impl-AsRef%3C%5Bu8;+bitcoin::::taproot::%7Bimpl%23104%7D::%7Bconstant%230%7D%5D%3E-for-TapNodeHash"],[619,"impl-AsRef%3C%5Bu8;+bitcoin::::taproot::%7Bimpl%23137%7D::%7Bconstant%230%7D%5D%3E-for-TapTweakHash"],[620,"impl-AsRef%3C%5Bu8%5D%3E-for-TapTweakHash"],[1074,"impl-Psbt"],[1075,"impl-Deserialize%3C\'de%3E-for-Psbt"],[1086,"impl-Div%3CWeight%3E-for-Amount"],[1087,"impl-Div%3Cu64%3E-for-Amount"],[1089,"impl-Div%3Cu64%3E-for-Weight"],[1090,"impl-Div-for-Weight"],[1139,"impl-PartialEq-for-Script"],[1140,"impl-PartialEq%3CScriptBuf%3E-for-Script"],[1141,"impl-PartialEq-for-ScriptBuf"],[1142,"impl-PartialEq%3CScript%3E-for-ScriptBuf"],[1316,"impl-Debug-for-Denomination"],[1317,"impl-Display-for-Denomination"],[1318,"impl-Display-for-Amount"],[1319,"impl-Debug-for-Amount"],[1320,"impl-Debug-for-SignedAmount"],[1321,"impl-Display-for-SignedAmount"],[1322,"impl-Display-for-FeeRate"],[1323,"impl-Debug-for-FeeRate"],[1324,"impl-Display-for-XOnlyPublicKey"],[1325,"impl-LowerHex-for-XOnlyPublicKey"],[1326,"impl-Debug-for-XOnlyPublicKey"],[1327,"impl-Debug-for-Weight"],[1328,"impl-Display-for-Weight"],[1329,"impl-Debug-for-AddressType"],[1330,"impl-Display-for-AddressType"],[1332,"impl-Debug-for-Address%3CV%3E"],[1333,"impl-Display-for-Address"],[1334,"impl-Debug-for-FilterHash"],[1335,"impl-UpperHex-for-FilterHash"],[1336,"impl-Display-for-FilterHash"],[1337,"impl-LowerHex-for-FilterHash"],[1338,"impl-LowerHex-for-FilterHeader"],[1339,"impl-Debug-for-FilterHeader"],[1340,"impl-UpperHex-for-FilterHeader"],[1341,"impl-Display-for-FilterHeader"],[1342,"impl-UpperHex-for-XKeyIdentifier"],[1343,"impl-Debug-for-XKeyIdentifier"],[1344,"impl-LowerHex-for-XKeyIdentifier"],[1345,"impl-Display-for-XKeyIdentifier"],[1346,"impl-Display-for-BlockHash"],[1347,"impl-LowerHex-for-BlockHash"],[1348,"impl-Debug-for-BlockHash"],[1349,"impl-UpperHex-for-BlockHash"],[1350,"impl-Display-for-TxMerkleNode"],[1351,"impl-LowerHex-for-TxMerkleNode"],[1352,"impl-Debug-for-TxMerkleNode"],[1353,"impl-UpperHex-for-TxMerkleNode"],[1354,"impl-Display-for-WitnessMerkleNode"],[1355,"impl-UpperHex-for-WitnessMerkleNode"],[1356,"impl-LowerHex-for-WitnessMerkleNode"],[1357,"impl-Debug-for-WitnessMerkleNode"],[1358,"impl-LowerHex-for-WitnessCommitment"],[1359,"impl-UpperHex-for-WitnessCommitment"],[1360,"impl-Display-for-WitnessCommitment"],[1361,"impl-Debug-for-WitnessCommitment"],[1363,"impl-Debug-for-Opcode"],[1364,"impl-Display-for-Opcode"],[1365,"impl-LowerHex-for-Script"],[1366,"impl-Display-for-Script"],[1367,"impl-UpperHex-for-Script"],[1368,"impl-Debug-for-Script"],[1369,"impl-LowerHex-for-ScriptBuf"],[1370,"impl-Debug-for-ScriptBuf"],[1371,"impl-UpperHex-for-ScriptBuf"],[1372,"impl-Display-for-ScriptBuf"],[1374,"impl-Debug-for-WitnessVersion"],[1375,"impl-Display-for-WitnessVersion"],[1376,"impl-Display-for-ScriptHash"],[1377,"impl-UpperHex-for-ScriptHash"],[1378,"impl-Debug-for-ScriptHash"],[1379,"impl-LowerHex-for-ScriptHash"],[1380,"impl-Display-for-WScriptHash"],[1381,"impl-UpperHex-for-WScriptHash"],[1382,"impl-LowerHex-for-WScriptHash"],[1383,"impl-Debug-for-WScriptHash"],[1384,"impl-Debug-for-Txid"],[1385,"impl-Display-for-Txid"],[1386,"impl-UpperHex-for-Txid"],[1387,"impl-LowerHex-for-Txid"],[1388,"impl-UpperHex-for-Wtxid"],[1389,"impl-Display-for-Wtxid"],[1390,"impl-Debug-for-Wtxid"],[1391,"impl-LowerHex-for-Wtxid"],[1392,"impl-Debug-for-OutPoint"],[1393,"impl-Display-for-OutPoint"],[1395,"impl-Debug-for-Sequence"],[1396,"impl-LowerHex-for-Sequence"],[1397,"impl-Display-for-Sequence"],[1398,"impl-UpperHex-for-Sequence"],[1403,"impl-Debug-for-PublicKey"],[1404,"impl-Display-for-PublicKey"],[1405,"impl-UpperHex-for-PubkeyHash"],[1406,"impl-Debug-for-PubkeyHash"],[1407,"impl-Display-for-PubkeyHash"],[1408,"impl-LowerHex-for-PubkeyHash"],[1409,"impl-UpperHex-for-WPubkeyHash"],[1410,"impl-LowerHex-for-WPubkeyHash"],[1411,"impl-Display-for-WPubkeyHash"],[1412,"impl-Debug-for-WPubkeyHash"],[1413,"impl-Debug-for-CompressedPublicKey"],[1414,"impl-Display-for-CompressedPublicKey"],[1415,"impl-Debug-for-PrivateKey"],[1416,"impl-Display-for-PrivateKey"],[1417,"impl-LowerHex-for-LegacySighash"],[1418,"impl-UpperHex-for-LegacySighash"],[1419,"impl-Display-for-LegacySighash"],[1420,"impl-Debug-for-LegacySighash"],[1421,"impl-Debug-for-SegwitV0Sighash"],[1422,"impl-Display-for-SegwitV0Sighash"],[1423,"impl-UpperHex-for-SegwitV0Sighash"],[1424,"impl-LowerHex-for-SegwitV0Sighash"],[1425,"impl-Display-for-TapSighash"],[1426,"impl-UpperHex-for-TapSighash"],[1427,"impl-Debug-for-TapSighash"],[1428,"impl-LowerHex-for-TapSighash"],[1429,"impl-Display-for-TapSighashType"],[1430,"impl-Debug-for-TapSighashType"],[1431,"impl-Debug-for-EcdsaSighashType"],[1432,"impl-Display-for-EcdsaSighashType"],[1435,"impl-Display-for-Network"],[1436,"impl-Debug-for-Network"],[1437,"impl-UpperHex-for-Work"],[1438,"impl-Debug-for-Work"],[1439,"impl-Display-for-Work"],[1440,"impl-LowerHex-for-Work"],[1441,"impl-LowerHex-for-Target"],[1442,"impl-UpperHex-for-Target"],[1443,"impl-Display-for-Target"],[1444,"impl-Debug-for-Target"],[1445,"impl-LowerHex-for-CompactTarget"],[1446,"impl-UpperHex-for-CompactTarget"],[1447,"impl-Debug-for-CompactTarget"],[1448,"impl-Display-for-Psbt"],[1449,"impl-Debug-for-Psbt"],[1450,"impl-Debug-for-TapLeafHash"],[1451,"impl-LowerHex-for-TapLeafHash"],[1452,"impl-Display-for-TapLeafHash"],[1453,"impl-UpperHex-for-TapLeafHash"],[1454,"impl-LowerHex-for-TapNodeHash"],[1455,"impl-Debug-for-TapNodeHash"],[1456,"impl-Display-for-TapNodeHash"],[1457,"impl-UpperHex-for-TapNodeHash"],[1458,"impl-Display-for-TapTweakHash"],[1459,"impl-Debug-for-TapTweakHash"],[1460,"impl-LowerHex-for-TapTweakHash"],[1461,"impl-UpperHex-for-TapTweakHash"],[1470,"impl-From%3CCompressedPublicKey%3E-for-XOnlyPublicKey"],[1472,"impl-From%3CTweakedPublicKey%3E-for-XOnlyPublicKey"],[1473,"impl-From%3CXOnlyPublicKey%3E-for-XOnlyPublicKey"],[1474,"impl-From%3CPublicKey%3E-for-XOnlyPublicKey"],[1475,"impl-From%3CPublicKey%3E-for-XOnlyPublicKey"],[1485,"impl-From%3CHash%3E-for-XKeyIdentifier"],[1486,"impl-From%3CXpub%3E-for-XKeyIdentifier"],[1487,"impl-From%3C%26Xpub%3E-for-XKeyIdentifier"],[1489,"impl-From%3C%26Block%3E-for-BlockHash"],[1490,"impl-From%3CHash%3E-for-BlockHash"],[1491,"impl-From%3CHeader%3E-for-BlockHash"],[1493,"impl-From%3C%26Header%3E-for-BlockHash"],[1494,"impl-From%3CBlock%3E-for-BlockHash"],[1495,"impl-From%3CHash%3E-for-TxMerkleNode"],[1496,"impl-From%3CTxid%3E-for-TxMerkleNode"],[1498,"impl-From%3CWtxid%3E-for-WitnessMerkleNode"],[1499,"impl-From%3CHash%3E-for-WitnessMerkleNode"],[1504,"impl-From%3CWitnessVersion%3E-for-Opcode"],[1505,"impl-From%3Cu8%3E-for-Opcode"],[1508,"impl-From%3CCow%3C\'a,+Script%3E%3E-for-ScriptBuf"],[1509,"impl-From%3CVec%3Cu8%3E%3E-for-ScriptBuf"],[1510,"impl-From%3C%26Script%3E-for-ScriptBuf"],[1511,"impl-From%3CAddress%3E-for-ScriptBuf"],[1515,"impl-From%3C%26Script%3E-for-ScriptHash"],[1516,"impl-From%3C%26ScriptBuf%3E-for-ScriptHash"],[1517,"impl-From%3CHash%3E-for-ScriptHash"],[1518,"impl-From%3CScriptBuf%3E-for-ScriptHash"],[1519,"impl-From%3CHash%3E-for-WScriptHash"],[1520,"impl-From%3CScriptBuf%3E-for-WScriptHash"],[1521,"impl-From%3C%26Script%3E-for-WScriptHash"],[1523,"impl-From%3C%26ScriptBuf%3E-for-WScriptHash"],[1524,"impl-From%3CHash%3E-for-Txid"],[1525,"impl-From%3C%26Transaction%3E-for-Txid"],[1526,"impl-From%3CTransaction%3E-for-Txid"],[1528,"impl-From%3CHash%3E-for-Wtxid"],[1530,"impl-From%3C%26Transaction%3E-for-Wtxid"],[1531,"impl-From%3CTransaction%3E-for-Wtxid"],[1534,"impl-From%3CLockTime%3E-for-Sequence"],[1535,"impl-From%3CRelLockTime%3E-for-Sequence"],[1539,"impl-From%3C%26%5BVec%3Cu8%3E%5D%3E-for-Witness"],[1540,"impl-From%3C%26%5B%26%5Bu8%5D%5D%3E-for-Witness"],[1542,"impl-From%3CVec%3C%26%5Bu8%5D%3E%3E-for-Witness"],[1543,"impl-From%3CVec%3CVec%3Cu8%3E%3E%3E-for-Witness"],[1544,"impl-From%3Cu64%3E-for-VarInt"],[1545,"impl-From%3Cusize%3E-for-VarInt"],[1546,"impl-From%3Cu16%3E-for-VarInt"],[1547,"impl-From%3Cu32%3E-for-VarInt"],[1549,"impl-From%3Cu8%3E-for-VarInt"],[1551,"impl-From%3CPublicKey%3E-for-PublicKey"],[1552,"impl-From%3CCompressedPublicKey%3E-for-PublicKey"],[1553,"impl-From%3C%26PublicKey%3E-for-PubkeyHash"],[1554,"impl-From%3C%26CompressedPublicKey%3E-for-PubkeyHash"],[1556,"impl-From%3CHash%3E-for-PubkeyHash"],[1557,"impl-From%3CCompressedPublicKey%3E-for-PubkeyHash"],[1558,"impl-From%3CPublicKey%3E-for-PubkeyHash"],[1560,"impl-From%3CCompressedPublicKey%3E-for-WPubkeyHash"],[1561,"impl-From%3CHash%3E-for-WPubkeyHash"],[1562,"impl-From%3C%26CompressedPublicKey%3E-for-WPubkeyHash"],[1585,"impl-From%3CHash%3CTapLeafTag%3E%3E-for-TapLeafHash"],[1587,"impl-From%3CScriptPath%3C\'s%3E%3E-for-TapLeafHash"],[1590,"impl-From%3C%26LeafNode%3E-for-TapNodeHash"],[1591,"impl-From%3CLeafNode%3E-for-TapNodeHash"],[1592,"impl-From%3CTapLeafHash%3E-for-TapNodeHash"],[1593,"impl-From%3CHash%3CTapBranchTag%3E%3E-for-TapNodeHash"],[1596,"impl-From%3CHash%3CTapTweakTag%3E%3E-for-TapTweakHash"],[1597,"impl-From%3C%26TaprootSpendInfo%3E-for-TapTweakHash"],[1598,"impl-From%3CTaprootSpendInfo%3E-for-TapTweakHash"],[1705,"impl-ParseableKey-for-XOnlyPublicKey"],[1706,"impl-XOnlyPublicKey"],[1719,"impl-PublicKey"],[1720,"impl-ParseableKey-for-PublicKey"],[1868,"impl-Index%3CRangeFull%3E-for-Script"],[1869,"impl-Index%3C(Bound%3Cusize%3E,+Bound%3Cusize%3E)%3E-for-Script"],[1870,"impl-Index%3CRange%3Cusize%3E%3E-for-Script"],[1871,"impl-Index%3CRangeToInclusive%3Cusize%3E%3E-for-Script"],[1872,"impl-Index%3CRangeTo%3Cusize%3E%3E-for-Script"],[1873,"impl-Index%3CRangeInclusive%3Cusize%3E%3E-for-Script"],[1874,"impl-Index%3CRangeFrom%3Cusize%3E%3E-for-Script"],[2018,"impl-Mul%3CFeeRate%3E-for-Weight"],[2019,"impl-Mul%3Cu64%3E-for-Weight"],[2087,"impl-PartialOrd%3CScriptBuf%3E-for-Script"],[2088,"impl-PartialOrd-for-Script"],[2089,"impl-PartialOrd-for-ScriptBuf"],[2090,"impl-PartialOrd%3CScript%3E-for-ScriptBuf"],[2185,"impl-XOnlyPublicKey"],[2186,"impl-Serialize-for-XOnlyPublicKey"],[2224,"impl-Serialize-for-Psbt"],[2225,"impl-Psbt"],[2250,"impl-Sum%3C%26Weight%3E-for-Weight"],[2251,"impl-Sum-for-Weight"],[2465,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-FeeRate"],[2466,"impl-TryFrom%3C%26str%3E-for-FeeRate"],[2467,"impl-TryFrom%3CString%3E-for-FeeRate"],[2470,"impl-TryFrom%3C%26str%3E-for-Weight"],[2471,"impl-TryFrom%3CString%3E-for-Weight"],[2473,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Weight"],[2488,"impl-TryFrom%3Cu8%3E-for-WitnessVersion"],[2489,"impl-TryFrom%3COpcode%3E-for-WitnessVersion"],[2491,"impl-TryFrom%3CInstruction%3C\'a%3E%3E-for-WitnessVersion"],[2492,"impl-TryFrom%3CFe32%3E-for-WitnessVersion"],[2499,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Sequence"],[2500,"impl-TryFrom%3C%26str%3E-for-Sequence"],[2502,"impl-TryFrom%3CString%3E-for-Sequence"],[2521,"impl-TryFrom%3CMagic%3E-for-Network"],[2523,"impl-TryFrom%3CChainHash%3E-for-Network"],[2875,"impl-Display-for-FromScriptError"],[2876,"impl-Debug-for-FromScriptError"],[2877,"impl-Display-for-P2shError"],[2878,"impl-Debug-for-P2shError"],[2879,"impl-Display-for-UnknownAddressTypeError"],[2880,"impl-Debug-for-UnknownAddressTypeError"],[2881,"impl-Display-for-ParseError"],[2882,"impl-Debug-for-ParseError"],[2883,"impl-Debug-for-UnknownHrpError"],[2884,"impl-Display-for-UnknownHrpError"],[2885,"impl-Display-for-NetworkValidationError"],[2886,"impl-Debug-for-NetworkValidationError"],[2887,"impl-Debug-for-InvalidBase58PayloadLengthError"],[2888,"impl-Display-for-InvalidBase58PayloadLengthError"],[2889,"impl-Display-for-LegacyAddressTooLongError"],[2890,"impl-Debug-for-LegacyAddressTooLongError"],[2891,"impl-Display-for-InvalidLegacyPrefixError"],[2892,"impl-Debug-for-InvalidLegacyPrefixError"],[2896,"impl-From%3CError%3E-for-FromScriptError"],[2897,"impl-From%3CTryFromError%3E-for-FromScriptError"],[2899,"impl-From%3CInfallible%3E-for-FromScriptError"],[2903,"impl-From%3CTryFromError%3E-for-ParseError"],[2904,"impl-From%3CInfallible%3E-for-ParseError"],[2905,"impl-From%3CNetworkValidationError%3E-for-ParseError"],[2906,"impl-From%3CInvalidLegacyPrefixError%3E-for-ParseError"],[2907,"impl-From%3CError%3E-for-ParseError"],[2908,"impl-From%3CUnknownHrpError%3E-for-ParseError"],[2909,"impl-From%3CDecodeError%3E-for-ParseError"],[2911,"impl-From%3CInvalidBase58PayloadLengthError%3E-for-ParseError"],[2912,"impl-From%3CError%3E-for-ParseError"],[2913,"impl-From%3CLegacyAddressTooLongError%3E-for-ParseError"],[3074,"impl-Debug-for-ParseAmountError"],[3075,"impl-Display-for-ParseAmountError"],[3076,"impl-Debug-for-Display"],[3077,"impl-Display-for-Display"],[3078,"impl-From%3CMissingDigitsError%3E-for-ParseAmountError"],[3079,"impl-From%3CInputTooLargeError%3E-for-ParseAmountError"],[3080,"impl-From%3CInfallible%3E-for-ParseAmountError"],[3082,"impl-From%3CInvalidCharacterError%3E-for-ParseAmountError"],[3083,"impl-From%3COutOfRangeError%3E-for-ParseAmountError"],[3084,"impl-From%3CTooPreciseError%3E-for-ParseAmountError"],[3137,"impl-AsMut%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[3138,"impl-AsMut%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3145,"impl-AsRef%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[3146,"impl-AsRef%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3147,"impl-AsRef%3Cstr%3E-for-String"],[3148,"impl-AsRef%3COsStr%3E-for-String"],[3149,"impl-AsRef%3C%5Bu8%5D%3E-for-String"],[3150,"impl-AsRef%3CPath%3E-for-String"],[3184,"impl-Decodable-for-Vec%3CTxOut%3E"],[3185,"impl-Decodable-for-Vec%3CTxMerkleNode%3E"],[3186,"impl-Decodable-for-Vec%3CPrefilledTransaction%3E"],[3187,"impl-Decodable-for-Vec%3CFilterHash%3E"],[3188,"impl-Decodable-for-Vec%3CInventory%3E"],[3189,"impl-Decodable-for-Vec%3CVarInt%3E"],[3190,"impl-Decodable-for-Vec%3Cu64%3E"],[3191,"impl-Decodable-for-Vec%3CFilterHeader%3E"],[3192,"impl-Decodable-for-Vec%3CHeader%3E"],[3193,"impl-Decodable-for-Vec%3CTransaction%3E"],[3194,"impl-Decodable-for-Vec%3CTxIn%3E"],[3195,"impl-Decodable-for-Vec%3Cu8%3E"],[3196,"impl-Decodable-for-Vec%3CBlockHash%3E"],[3197,"impl-Decodable-for-Vec%3CVec%3Cu8%3E%3E"],[3198,"impl-Decodable-for-Vec%3CShortId%3E"],[3199,"impl-Decodable-for-Vec%3C(u32,+Address)%3E"],[3200,"impl-Decodable-for-Vec%3CAddrV2Message%3E"],[3201,"impl-Decodable-for-Vec%3CTapLeafHash%3E"],[3202,"impl-Encodable-for-Vec%3CTxIn%3E"],[3203,"impl-Encodable-for-Vec%3CBlockHash%3E"],[3204,"impl-Encodable-for-Vec%3Cu8%3E"],[3205,"impl-Encodable-for-Vec%3CAddrV2Message%3E"],[3206,"impl-Encodable-for-Vec%3CShortId%3E"],[3207,"impl-Encodable-for-Vec%3CHeader%3E"],[3208,"impl-Encodable-for-Vec%3Cu64%3E"],[3209,"impl-Encodable-for-Vec%3CPrefilledTransaction%3E"],[3210,"impl-Encodable-for-Vec%3CVarInt%3E"],[3211,"impl-Encodable-for-Vec%3CTxOut%3E"],[3212,"impl-Encodable-for-Vec%3CVec%3Cu8%3E%3E"],[3213,"impl-Encodable-for-Vec%3C(u32,+Address)%3E"],[3214,"impl-Encodable-for-Vec%3CTxMerkleNode%3E"],[3215,"impl-Encodable-for-Vec%3CFilterHeader%3E"],[3216,"impl-Encodable-for-Vec%3CInventory%3E"],[3217,"impl-Encodable-for-Vec%3CFilterHash%3E"],[3218,"impl-Encodable-for-Vec%3CTransaction%3E"],[3219,"impl-Encodable-for-Vec%3CTapLeafHash%3E"],[3253,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3254,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3255,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3256,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3257,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3258,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[3259,"impl-PartialEq%3C%26str%3E-for-String"],[3260,"impl-PartialEq-for-String"],[3261,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[3262,"impl-PartialEq%3Cstr%3E-for-String"],[3272,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[3273,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[3274,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[3275,"impl-Extend%3CString%3E-for-String"],[3276,"impl-Extend%3C%26str%3E-for-String"],[3277,"impl-Extend%3Cchar%3E-for-String"],[3278,"impl-Extend%3C%26char%3E-for-String"],[3279,"impl-Extend%3CBox%3Cstr%3E%3E-for-String"],[3283,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[3284,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[3285,"impl-Extend%3Cchar%3E-for-String"],[3286,"impl-Extend%3C%26char%3E-for-String"],[3287,"impl-Extend%3CString%3E-for-String"],[3288,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[3289,"impl-Extend%3C%26str%3E-for-String"],[3290,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[3291,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[3292,"impl-Extend%3C%26char%3E-for-String"],[3293,"impl-Extend%3Cchar%3E-for-String"],[3295,"impl-Write-for-Vec%3Cu8%3E"],[3296,"impl-Write-for-Vec%3Cu8,+A%3E"],[3297,"impl-Display-for-Error"],[3298,"impl-Debug-for-Error"],[3299,"impl-Debug-for-InvalidCharacterError"],[3300,"impl-Display-for-InvalidCharacterError"],[3302,"impl-Display-for-String"],[3303,"impl-Debug-for-String"],[3304,"impl-From%3CInvalidCharacterError%3E-for-Error"],[3305,"impl-From%3CTooShortError%3E-for-Error"],[3306,"impl-From%3CInfallible%3E-for-Error"],[3307,"impl-From%3CIncorrectChecksumError%3E-for-Error"],[3310,"impl-From%3C%26mut+%5BT;+N%5D%3E-for-Vec%3CT%3E"],[3311,"impl-From%3C%5BT;+N%5D%3E-for-Vec%3CT%3E"],[3312,"impl-From%3CBinaryHeap%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3313,"impl-From%3CScriptBuf%3E-for-Vec%3Cu8%3E"],[3314,"impl-From%3CString%3E-for-Vec%3Cu8%3E"],[3315,"impl-From%3CDerivationPath%3E-for-Vec%3CChildNumber%3E"],[3316,"impl-From%3CTaprootMerkleBranch%3E-for-Vec%3CTapNodeHash%3E"],[3317,"impl-From%3CCow%3C\'a,+%5BT%5D%3E%3E-for-Vec%3CT%3E"],[3318,"impl-From%3C%26%5BT%5D%3E-for-Vec%3CT%3E"],[3319,"impl-From%3CVecDeque%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[3320,"impl-From%3C%26%5BT;+N%5D%3E-for-Vec%3CT%3E"],[3321,"impl-From%3CCString%3E-for-Vec%3Cu8%3E"],[3322,"impl-From%3CPushBytesBuf%3E-for-Vec%3Cu8%3E"],[3323,"impl-From%3C%26str%3E-for-Vec%3Cu8%3E"],[3325,"impl-From%3C%26mut+%5BT%5D%3E-for-Vec%3CT%3E"],[3326,"impl-From%3CBox%3C%5BT%5D,+A%3E%3E-for-Vec%3CT,+A%3E"],[3327,"impl-From%3C%26str%3E-for-String"],[3328,"impl-From%3Cchar%3E-for-String"],[3330,"impl-From%3C%26String%3E-for-String"],[3331,"impl-From%3C%26mut+str%3E-for-String"],[3332,"impl-From%3CBox%3Cstr%3E%3E-for-String"],[3333,"impl-From%3CCow%3C\'a,+str%3E%3E-for-String"],[3336,"impl-FromIterator%3C%26char%3E-for-String"],[3337,"impl-FromIterator%3C%26str%3E-for-String"],[3338,"impl-FromIterator%3CCow%3C\'a,+str%3E%3E-for-String"],[3339,"impl-FromIterator%3Cchar%3E-for-String"],[3340,"impl-FromIterator%3CBox%3Cstr%3E%3E-for-String"],[3341,"impl-FromIterator%3CString%3E-for-String"],[3378,"impl-IntoIterator-for-%26Vec%3CT,+A%3E"],[3379,"impl-IntoIterator-for-%26mut+Vec%3CT,+A%3E"],[3380,"impl-IntoIterator-for-Vec%3CT,+A%3E"],[3387,"impl-Vec%3CT,+A%3E"],[3388,"impl-Merge-for-Vec%3CT%3E"],[3398,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3399,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[3400,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3401,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3402,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[3403,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[3404,"impl-PartialEq%3Cstr%3E-for-String"],[3405,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[3406,"impl-PartialEq%3C%26str%3E-for-String"],[3486,"impl-Write-for-Vec%3Cu8,+A%3E"],[3487,"impl-Write-for-Vec%3Cu8%3E"],[3513,"impl-Debug-for-IncorrectChecksumError"],[3514,"impl-Display-for-IncorrectChecksumError"],[3515,"impl-Display-for-TooShortError"],[3516,"impl-Debug-for-TooShortError"],[3590,"impl-Display-for-EncodeSliceError"],[3591,"impl-Debug-for-EncodeSliceError"],[3592,"impl-Display-for-DecodeError"],[3593,"impl-Debug-for-DecodeError"],[3594,"impl-Display-for-DecodeSliceError"],[3595,"impl-Debug-for-DecodeSliceError"],[3651,"impl-Display-for-ParseAlphabetError"],[3652,"impl-Debug-for-ParseAlphabetError"],[3885,"impl-Add-for-Fe32"],[3886,"impl-Add%3C%26Fe32%3E-for-%26Fe32"],[3887,"impl-Add%3CFe32%3E-for-%26Fe32"],[3888,"impl-Add%3C%26Fe32%3E-for-Fe32"],[3931,"impl-Div%3C%26Fe32%3E-for-Fe32"],[3932,"impl-Div-for-Fe32"],[3933,"impl-Div%3C%26Fe32%3E-for-%26Fe32"],[3934,"impl-Div%3CFe32%3E-for-%26Fe32"],[3968,"impl-Display-for-Fe32"],[3969,"impl-Debug-for-Fe32"],[3970,"impl-Display-for-Hrp"],[3971,"impl-Debug-for-Hrp"],[3972,"impl-Debug-for-DecodeError"],[3973,"impl-Display-for-DecodeError"],[3974,"impl-Debug-for-EncodeError"],[3975,"impl-Display-for-EncodeError"],[3976,"impl-Display-for-EncodeIoError"],[3977,"impl-Debug-for-EncodeIoError"],[3987,"impl-From%3CError%3E-for-EncodeError"],[3988,"impl-From%3CCodeLengthError%3E-for-EncodeError"],[3989,"impl-From%3CCodeLengthError%3E-for-EncodeIoError"],[3990,"impl-From%3CError%3E-for-EncodeIoError"],[4017,"impl-Mul%3C%26Fe32%3E-for-Fe32"],[4018,"impl-Mul%3C%26Fe32%3E-for-%26Fe32"],[4019,"impl-Mul-for-Fe32"],[4020,"impl-Mul%3CFe32%3E-for-%26Fe32"],[4034,"impl-Sub-for-Fe32"],[4035,"impl-Sub%3CFe32%3E-for-%26Fe32"],[4036,"impl-Sub%3C%26Fe32%3E-for-Fe32"],[4037,"impl-Sub%3C%26Fe32%3E-for-%26Fe32"],[4054,"impl-TryFrom%3Cu64%3E-for-Fe32"],[4055,"impl-TryFrom%3Cu32%3E-for-Fe32"],[4056,"impl-TryFrom%3Cu16%3E-for-Fe32"],[4057,"impl-TryFrom%3Ci16%3E-for-Fe32"],[4058,"impl-TryFrom%3Cu128%3E-for-Fe32"],[4059,"impl-TryFrom%3Ci8%3E-for-Fe32"],[4060,"impl-TryFrom%3Ci32%3E-for-Fe32"],[4061,"impl-TryFrom%3Ci128%3E-for-Fe32"],[4062,"impl-TryFrom%3Ci64%3E-for-Fe32"],[4063,"impl-TryFrom%3Cu8%3E-for-Fe32"],[4292,"impl-Debug-for-SegwitHrpstringError"],[4293,"impl-Display-for-SegwitHrpstringError"],[4294,"impl-Debug-for-CheckedHrpstringError"],[4295,"impl-Display-for-CheckedHrpstringError"],[4296,"impl-Display-for-UncheckedHrpstringError"],[4297,"impl-Debug-for-UncheckedHrpstringError"],[4298,"impl-Display-for-CharError"],[4299,"impl-Debug-for-CharError"],[4300,"impl-Debug-for-ChecksumError"],[4301,"impl-Display-for-ChecksumError"],[4302,"impl-Debug-for-CodeLengthError"],[4303,"impl-Display-for-CodeLengthError"],[4304,"impl-Display-for-SegwitCodeLengthError"],[4305,"impl-Debug-for-SegwitCodeLengthError"],[4306,"impl-Display-for-PaddingError"],[4307,"impl-Debug-for-PaddingError"],[4314,"impl-From%3CUncheckedHrpstringError%3E-for-SegwitHrpstringError"],[4316,"impl-From%3CChecksumError%3E-for-SegwitHrpstringError"],[4317,"impl-From%3CPaddingError%3E-for-SegwitHrpstringError"],[4318,"impl-From%3CWitnessLengthError%3E-for-SegwitHrpstringError"],[4320,"impl-From%3CChecksumError%3E-for-CheckedHrpstringError"],[4321,"impl-From%3CUncheckedHrpstringError%3E-for-CheckedHrpstringError"],[4322,"impl-From%3CError%3E-for-UncheckedHrpstringError"],[4324,"impl-From%3CCharError%3E-for-UncheckedHrpstringError"],[4563,"impl-Debug-for-FromCharError"],[4564,"impl-Display-for-FromCharError"],[4565,"impl-Display-for-TryFromError"],[4566,"impl-Debug-for-TryFromError"],[4569,"impl-From%3CInfallible%3E-for-TryFromError"],[4570,"impl-From%3CTryFromIntError%3E-for-TryFromError"],[4616,"impl-Debug-for-Error"],[4617,"impl-Display-for-Error"],[4770,"impl-Debug-for-InvalidWitnessVersionError"],[4771,"impl-Display-for-InvalidWitnessVersionError"],[4772,"impl-Display-for-WitnessLengthError"],[4773,"impl-Debug-for-WitnessLengthError"],[4829,"impl-Display-for-DecodeError"],[4830,"impl-Debug-for-DecodeError"],[4831,"impl-Display-for-EncodeError"],[4832,"impl-Debug-for-EncodeError"],[4835,"impl-From%3CError%3E-for-EncodeError"],[4836,"impl-From%3CInvalidWitnessVersionError%3E-for-EncodeError"],[4838,"impl-From%3CSegwitCodeLengthError%3E-for-EncodeError"],[4839,"impl-From%3CWitnessLengthError%3E-for-EncodeError"],[4866,"impl-AsMut%3C%5Bu8;+6%5D%3E-for-ShortId"],[4867,"impl-AsMut%3C%5Bu8%5D%3E-for-ShortId"],[4871,"impl-AsRef%3C%5Bu8%5D%3E-for-ShortId"],[4872,"impl-AsRef%3C%5Bu8;+6%5D%3E-for-ShortId"],[4877,"impl-Borrow%3C%5Bu8%5D%3E-for-ShortId"],[4878,"impl-Borrow%3C%5Bu8;+6%5D%3E-for-ShortId"],[4886,"impl-BorrowMut%3C%5Bu8%5D%3E-for-ShortId"],[4887,"impl-BorrowMut%3C%5Bu8;+6%5D%3E-for-ShortId"],[4948,"impl-Debug-for-Error"],[4949,"impl-Display-for-Error"],[4951,"impl-Debug-for-ShortId"],[4952,"impl-LowerHex-for-ShortId"],[4953,"impl-UpperHex-for-ShortId"],[4954,"impl-Display-for-ShortId"],[4957,"impl-Debug-for-TxIndexOutOfRangeError"],[4958,"impl-Display-for-TxIndexOutOfRangeError"],[4964,"impl-From%3C%26%5Bu8;+6%5D%3E-for-ShortId"],[4965,"impl-From%3C%5Bu8;+6%5D%3E-for-ShortId"],[5088,"impl-Display-for-Error"],[5089,"impl-Debug-for-Error"],[5098,"impl-From%3CError%3E-for-Error"],[5099,"impl-From%3CInfallible%3E-for-Error"],[5191,"impl-AsMut%3C%5Bu8%5D%3E-for-ChainCode"],[5192,"impl-AsMut%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5193,"impl-AsMut%3C%5Bu8%5D%3E-for-Fingerprint"],[5194,"impl-AsMut%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5199,"impl-AsRef%3C%5Bu8%5D%3E-for-ChainCode"],[5200,"impl-AsRef%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5201,"impl-AsRef%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5202,"impl-AsRef%3C%5Bu8%5D%3E-for-Fingerprint"],[5206,"impl-Borrow%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5207,"impl-Borrow%3C%5Bu8%5D%3E-for-ChainCode"],[5209,"impl-Borrow%3C%5Bu8%5D%3E-for-Fingerprint"],[5210,"impl-Borrow%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5219,"impl-BorrowMut%3C%5Bu8%5D%3E-for-ChainCode"],[5220,"impl-BorrowMut%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5222,"impl-BorrowMut%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5224,"impl-BorrowMut%3C%5Bu8%5D%3E-for-Fingerprint"],[5317,"impl-UpperHex-for-ChainCode"],[5318,"impl-Display-for-ChainCode"],[5319,"impl-Debug-for-ChainCode"],[5320,"impl-LowerHex-for-ChainCode"],[5321,"impl-Display-for-Fingerprint"],[5322,"impl-Debug-for-Fingerprint"],[5323,"impl-LowerHex-for-Fingerprint"],[5324,"impl-UpperHex-for-Fingerprint"],[5325,"impl-Display-for-Xpriv"],[5326,"impl-Debug-for-Xpriv"],[5327,"impl-Debug-for-Xpub"],[5328,"impl-Display-for-Xpub"],[5329,"impl-Debug-for-ChildNumber"],[5330,"impl-Display-for-ChildNumber"],[5331,"impl-Debug-for-DerivationPath"],[5332,"impl-Display-for-DerivationPath"],[5333,"impl-Debug-for-Error"],[5334,"impl-Display-for-Error"],[5335,"impl-Display-for-InvalidBase58PayloadLengthError"],[5336,"impl-Debug-for-InvalidBase58PayloadLengthError"],[5338,"impl-From%3C%26%5Bu8;+32%5D%3E-for-ChainCode"],[5340,"impl-From%3C%5Bu8;+32%5D%3E-for-ChainCode"],[5341,"impl-From%3C%26%5Bu8;+4%5D%3E-for-Fingerprint"],[5343,"impl-From%3C%5Bu8;+4%5D%3E-for-Fingerprint"],[5348,"impl-From%3CVec%3CChildNumber%3E%3E-for-DerivationPath"],[5349,"impl-From%3C%26%5BChildNumber%5D%3E-for-DerivationPath"],[5351,"impl-From%3CInfallible%3E-for-Error"],[5352,"impl-From%3CError%3E-for-Error"],[5353,"impl-From%3CError%3E-for-Error"],[5354,"impl-From%3CInvalidBase58PayloadLengthError%3E-for-Error"],[5582,"impl-Debug-for-Bip34Error"],[5583,"impl-Display-for-Bip34Error"],[5584,"impl-Debug-for-ValidationError"],[5585,"impl-Display-for-ValidationError"],[5660,"impl-AsMut%3C%5Bu8%5D%3E-for-ChainHash"],[5661,"impl-AsMut%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5664,"impl-AsRef%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5665,"impl-AsRef%3C%5Bu8%5D%3E-for-ChainHash"],[5666,"impl-Borrow%3C%5Bu8%5D%3E-for-ChainHash"],[5668,"impl-Borrow%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5669,"impl-BorrowMut%3C%5Bu8%5D%3E-for-ChainHash"],[5670,"impl-BorrowMut%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5679,"impl-LowerHex-for-ChainHash"],[5680,"impl-Display-for-ChainHash"],[5681,"impl-UpperHex-for-ChainHash"],[5682,"impl-Debug-for-ChainHash"],[5683,"impl-From%3C%26%5Bu8;+32%5D%3E-for-ChainHash"],[5684,"impl-From%3C%5Bu8;+32%5D%3E-for-ChainHash"],[5778,"impl-Debug-for-Height"],[5779,"impl-Display-for-Height"],[5780,"impl-Display-for-ParseHeightError"],[5781,"impl-Debug-for-ParseHeightError"],[5782,"impl-Debug-for-Time"],[5783,"impl-Display-for-Time"],[5784,"impl-Display-for-ParseTimeError"],[5785,"impl-Debug-for-ParseTimeError"],[5786,"impl-Debug-for-ConversionError"],[5787,"impl-Display-for-ConversionError"],[5788,"impl-Display-for-LockTime"],[5789,"impl-Debug-for-LockTime"],[5797,"impl-From%3CTime%3E-for-LockTime"],[5798,"impl-From%3CHeight%3E-for-LockTime"],[5799,"impl-From%3CAbsLockTime%3E-for-LockTime"],[5863,"impl-TryFrom%3CString%3E-for-Height"],[5864,"impl-TryFrom%3C%26str%3E-for-Height"],[5865,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Height"],[5868,"impl-TryFrom%3CString%3E-for-Time"],[5869,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Time"],[5871,"impl-TryFrom%3C%26str%3E-for-Time"],[5874,"impl-TryFrom%3C%26str%3E-for-LockTime"],[5876,"impl-TryFrom%3CString%3E-for-LockTime"],[5877,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-LockTime"],[5973,"impl-Debug-for-Height"],[5974,"impl-Display-for-Height"],[5975,"impl-Display-for-Time"],[5976,"impl-Debug-for-Time"],[5977,"impl-Display-for-TimeOverflowError"],[5978,"impl-Debug-for-TimeOverflowError"],[5979,"impl-Debug-for-LockTime"],[5980,"impl-Display-for-LockTime"],[5981,"impl-Display-for-DisabledLockTimeError"],[5982,"impl-Debug-for-DisabledLockTimeError"],[5983,"impl-Display-for-IncompatibleHeightError"],[5984,"impl-Debug-for-IncompatibleHeightError"],[5985,"impl-Debug-for-IncompatibleTimeError"],[5986,"impl-Display-for-IncompatibleTimeError"],[5991,"impl-From%3CHeight%3E-for-LockTime"],[5992,"impl-From%3CRelLockTime%3E-for-LockTime"],[5993,"impl-From%3CTime%3E-for-LockTime"],[6069,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Height"],[6070,"impl-TryFrom%3CString%3E-for-Height"],[6071,"impl-TryFrom%3C%26str%3E-for-Height"],[6073,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-Time"],[6074,"impl-TryFrom%3C%26str%3E-for-Time"],[6076,"impl-TryFrom%3CString%3E-for-Time"],[6436,"impl-AsMut%3C%5Bu8%5D%3E-for-PushBytes"],[6437,"impl-AsMut%3CPushBytes%3E-for-PushBytes"],[6442,"impl-AsRef%3CPushBytes%3E-for-PushBytes"],[6443,"impl-AsRef%3C%5Bu8%5D%3E-for-PushBytes"],[6510,"impl-Display-for-Builder"],[6511,"impl-Debug-for-Builder"],[6517,"impl-Display-for-PushBytesError"],[6518,"impl-Debug-for-PushBytesError"],[6519,"impl-Display-for-Error"],[6520,"impl-Debug-for-Error"],[6527,"impl-From%3C%26%5Bu8;+60%5D%3E-for-%26PushBytes"],[6528,"impl-From%3C%26%5Bu8;+12%5D%3E-for-%26PushBytes"],[6529,"impl-From%3C%26%5Bu8;+63%5D%3E-for-%26PushBytes"],[6530,"impl-From%3C%26mut+%5Bu8;+12%5D%3E-for-%26mut+PushBytes"],[6531,"impl-From%3C%26%5Bu8;+26%5D%3E-for-%26PushBytes"],[6532,"impl-From%3C%26%5Bu8;+55%5D%3E-for-%26PushBytes"],[6533,"impl-From%3C%26mut+%5Bu8;+63%5D%3E-for-%26mut+PushBytes"],[6534,"impl-From%3C%26mut+%5Bu8;+37%5D%3E-for-%26mut+PushBytes"],[6535,"impl-From%3C%26%5Bu8;+32%5D%3E-for-%26PushBytes"],[6536,"impl-From%3C%26%5Bu8;+64%5D%3E-for-%26PushBytes"],[6537,"impl-From%3C%26mut+%5Bu8;+45%5D%3E-for-%26mut+PushBytes"],[6538,"impl-From%3C%26mut+%5Bu8;+1%5D%3E-for-%26mut+PushBytes"],[6539,"impl-From%3C%26%5Bu8;+9%5D%3E-for-%26PushBytes"],[6540,"impl-From%3C%26mut+%5Bu8;+6%5D%3E-for-%26mut+PushBytes"],[6541,"impl-From%3C%26%5Bu8;+71%5D%3E-for-%26PushBytes"],[6542,"impl-From%3C%26mut+%5Bu8;+3%5D%3E-for-%26mut+PushBytes"],[6543,"impl-From%3C%26mut+%5Bu8;+70%5D%3E-for-%26mut+PushBytes"],[6544,"impl-From%3C%26%5Bu8;+47%5D%3E-for-%26PushBytes"],[6545,"impl-From%3C%26%5Bu8;+65%5D%3E-for-%26PushBytes"],[6546,"impl-From%3C%26%5Bu8;+45%5D%3E-for-%26PushBytes"],[6547,"impl-From%3C%26%5Bu8;+68%5D%3E-for-%26PushBytes"],[6548,"impl-From%3C%26%5Bu8;+11%5D%3E-for-%26PushBytes"],[6549,"impl-From%3C%26%5Bu8;+38%5D%3E-for-%26PushBytes"],[6550,"impl-From%3C%26mut+%5Bu8;+46%5D%3E-for-%26mut+PushBytes"],[6551,"impl-From%3C%26%5Bu8;+59%5D%3E-for-%26PushBytes"],[6552,"impl-From%3C%26%5Bu8;+6%5D%3E-for-%26PushBytes"],[6553,"impl-From%3C%26mut+%5Bu8;+60%5D%3E-for-%26mut+PushBytes"],[6554,"impl-From%3C%26%5Bu8;+13%5D%3E-for-%26PushBytes"],[6555,"impl-From%3C%26mut+%5Bu8;+24%5D%3E-for-%26mut+PushBytes"],[6556,"impl-From%3C%26mut+%5Bu8;+13%5D%3E-for-%26mut+PushBytes"],[6557,"impl-From%3C%26%5Bu8;+53%5D%3E-for-%26PushBytes"],[6558,"impl-From%3C%26mut+%5Bu8;+54%5D%3E-for-%26mut+PushBytes"],[6559,"impl-From%3C%26%5Bu8;+21%5D%3E-for-%26PushBytes"],[6560,"impl-From%3C%26%5Bu8;+56%5D%3E-for-%26PushBytes"],[6561,"impl-From%3C%26%5Bu8;+2%5D%3E-for-%26PushBytes"],[6562,"impl-From%3C%26mut+%5Bu8;+59%5D%3E-for-%26mut+PushBytes"],[6563,"impl-From%3C%26mut+%5Bu8;+5%5D%3E-for-%26mut+PushBytes"],[6564,"impl-From%3C%26mut+%5Bu8;+64%5D%3E-for-%26mut+PushBytes"],[6565,"impl-From%3C%26%5Bu8;+10%5D%3E-for-%26PushBytes"],[6566,"impl-From%3C%26mut+%5Bu8;+22%5D%3E-for-%26mut+PushBytes"],[6567,"impl-From%3C%26%5Bu8;+70%5D%3E-for-%26PushBytes"],[6568,"impl-From%3C%26%5Bu8;+39%5D%3E-for-%26PushBytes"],[6569,"impl-From%3C%26mut+%5Bu8;+48%5D%3E-for-%26mut+PushBytes"],[6570,"impl-From%3C%26%5Bu8;+35%5D%3E-for-%26PushBytes"],[6571,"impl-From%3C%26mut+%5Bu8;+18%5D%3E-for-%26mut+PushBytes"],[6572,"impl-From%3C%26%5Bu8;+7%5D%3E-for-%26PushBytes"],[6573,"impl-From%3C%26mut+%5Bu8;+35%5D%3E-for-%26mut+PushBytes"],[6574,"impl-From%3C%26mut+%5Bu8;+29%5D%3E-for-%26mut+PushBytes"],[6575,"impl-From%3C%26mut+%5Bu8;+57%5D%3E-for-%26mut+PushBytes"],[6576,"impl-From%3C%26%5Bu8;+1%5D%3E-for-%26PushBytes"],[6577,"impl-From%3C%26%5Bu8;+3%5D%3E-for-%26PushBytes"],[6578,"impl-From%3C%26%5Bu8;+49%5D%3E-for-%26PushBytes"],[6579,"impl-From%3C%26mut+%5Bu8;+76%5D%3E-for-%26mut+PushBytes"],[6580,"impl-From%3C%26mut+%5Bu8;+67%5D%3E-for-%26mut+PushBytes"],[6581,"impl-From%3C%26mut+%5Bu8;+10%5D%3E-for-%26mut+PushBytes"],[6582,"impl-From%3C%26%5Bu8;+34%5D%3E-for-%26PushBytes"],[6583,"impl-From%3C%26mut+%5Bu8;+40%5D%3E-for-%26mut+PushBytes"],[6584,"impl-From%3C%26%5Bu8;+17%5D%3E-for-%26PushBytes"],[6585,"impl-From%3C%26mut+%5Bu8;+72%5D%3E-for-%26mut+PushBytes"],[6586,"impl-From%3C%26%5Bu8;+44%5D%3E-for-%26PushBytes"],[6587,"impl-From%3C%26%5Bu8;+46%5D%3E-for-%26PushBytes"],[6588,"impl-From%3C%26mut+%5Bu8;+31%5D%3E-for-%26mut+PushBytes"],[6589,"impl-From%3C%26mut+%5Bu8;+65%5D%3E-for-%26mut+PushBytes"],[6590,"impl-From%3C%26%5Bu8;+36%5D%3E-for-%26PushBytes"],[6591,"impl-From%3C%26%5Bu8;+15%5D%3E-for-%26PushBytes"],[6592,"impl-From%3C%26mut+%5Bu8;+50%5D%3E-for-%26mut+PushBytes"],[6593,"impl-From%3C%26%5Bu8;+5%5D%3E-for-%26PushBytes"],[6594,"impl-From%3C%26%5Bu8;+19%5D%3E-for-%26PushBytes"],[6595,"impl-From%3C%26%5Bu8;+4%5D%3E-for-%26PushBytes"],[6596,"impl-From%3C%26mut+%5Bu8;+32%5D%3E-for-%26mut+PushBytes"],[6597,"impl-From%3C%26mut+%5Bu8;+41%5D%3E-for-%26mut+PushBytes"],[6598,"impl-From%3C%26mut+%5Bu8;+0%5D%3E-for-%26mut+PushBytes"],[6599,"impl-From%3C%26mut+%5Bu8;+52%5D%3E-for-%26mut+PushBytes"],[6600,"impl-From%3C%26mut+%5Bu8;+42%5D%3E-for-%26mut+PushBytes"],[6601,"impl-From%3C%26%5Bu8;+54%5D%3E-for-%26PushBytes"],[6602,"impl-From%3C%26mut+%5Bu8;+75%5D%3E-for-%26mut+PushBytes"],[6603,"impl-From%3C%26mut+%5Bu8;+53%5D%3E-for-%26mut+PushBytes"],[6604,"impl-From%3C%26mut+%5Bu8;+51%5D%3E-for-%26mut+PushBytes"],[6605,"impl-From%3C%26%5Bu8;+69%5D%3E-for-%26PushBytes"],[6606,"impl-From%3C%26%5Bu8;+50%5D%3E-for-%26PushBytes"],[6607,"impl-From%3C%26%5Bu8;+29%5D%3E-for-%26PushBytes"],[6608,"impl-From%3C%26%5Bu8;+67%5D%3E-for-%26PushBytes"],[6609,"impl-From%3C%26mut+%5Bu8;+23%5D%3E-for-%26mut+PushBytes"],[6610,"impl-From%3C%26mut+%5Bu8;+2%5D%3E-for-%26mut+PushBytes"],[6611,"impl-From%3C%26mut+%5Bu8;+39%5D%3E-for-%26mut+PushBytes"],[6612,"impl-From%3C%26%5Bu8;+40%5D%3E-for-%26PushBytes"],[6613,"impl-From%3C%26%5Bu8;+28%5D%3E-for-%26PushBytes"],[6614,"impl-From%3C%26mut+%5Bu8;+33%5D%3E-for-%26mut+PushBytes"],[6615,"impl-From%3C%26mut+%5Bu8;+15%5D%3E-for-%26mut+PushBytes"],[6616,"impl-From%3C%26mut+%5Bu8;+20%5D%3E-for-%26mut+PushBytes"],[6617,"impl-From%3C%26%5Bu8;+20%5D%3E-for-%26PushBytes"],[6618,"impl-From%3C%26%5Bu8;+48%5D%3E-for-%26PushBytes"],[6619,"impl-From%3C%26%5Bu8;+72%5D%3E-for-%26PushBytes"],[6620,"impl-From%3C%26mut+%5Bu8;+61%5D%3E-for-%26mut+PushBytes"],[6621,"impl-From%3C%26mut+%5Bu8;+21%5D%3E-for-%26mut+PushBytes"],[6622,"impl-From%3C%26mut+%5Bu8;+30%5D%3E-for-%26mut+PushBytes"],[6623,"impl-From%3C%26%5Bu8;+18%5D%3E-for-%26PushBytes"],[6624,"impl-From%3C%26%5Bu8;+31%5D%3E-for-%26PushBytes"],[6625,"impl-From%3C%26%5Bu8;+0%5D%3E-for-%26PushBytes"],[6626,"impl-From%3C%26mut+%5Bu8;+28%5D%3E-for-%26mut+PushBytes"],[6627,"impl-From%3C%26mut+%5Bu8;+69%5D%3E-for-%26mut+PushBytes"],[6628,"impl-From%3C%26mut+%5Bu8;+44%5D%3E-for-%26mut+PushBytes"],[6629,"impl-From%3C%26%5Bu8;+23%5D%3E-for-%26PushBytes"],[6630,"impl-From%3C%26mut+%5Bu8;+49%5D%3E-for-%26mut+PushBytes"],[6631,"impl-From%3C%26mut+%5Bu8;+56%5D%3E-for-%26mut+PushBytes"],[6632,"impl-From%3C%26mut+%5Bu8;+14%5D%3E-for-%26mut+PushBytes"],[6633,"impl-From%3C%26%5Bu8;+41%5D%3E-for-%26PushBytes"],[6634,"impl-From%3C%26%5Bu8;+42%5D%3E-for-%26PushBytes"],[6635,"impl-From%3C%26mut+%5Bu8;+73%5D%3E-for-%26mut+PushBytes"],[6636,"impl-From%3C%26%5Bu8;+14%5D%3E-for-%26PushBytes"],[6637,"impl-From%3C%26mut+%5Bu8;+16%5D%3E-for-%26mut+PushBytes"],[6638,"impl-From%3C%26mut+%5Bu8;+25%5D%3E-for-%26mut+PushBytes"],[6639,"impl-From%3C%26mut+%5Bu8;+4%5D%3E-for-%26mut+PushBytes"],[6640,"impl-From%3C%26%5Bu8;+52%5D%3E-for-%26PushBytes"],[6641,"impl-From%3C%26mut+%5Bu8;+26%5D%3E-for-%26mut+PushBytes"],[6642,"impl-From%3C%26%5Bu8;+66%5D%3E-for-%26PushBytes"],[6643,"impl-From%3C%26mut+%5Bu8;+9%5D%3E-for-%26mut+PushBytes"],[6644,"impl-From%3C%26%5Bu8;+43%5D%3E-for-%26PushBytes"],[6645,"impl-From%3C%26mut+%5Bu8;+68%5D%3E-for-%26mut+PushBytes"],[6646,"impl-From%3C%26%5Bu8;+24%5D%3E-for-%26PushBytes"],[6647,"impl-From%3C%26%5Bu8;+76%5D%3E-for-%26PushBytes"],[6648,"impl-From%3C%26mut+%5Bu8;+38%5D%3E-for-%26mut+PushBytes"],[6649,"impl-From%3C%26%5Bu8;+37%5D%3E-for-%26PushBytes"],[6650,"impl-From%3C%26mut+%5Bu8;+71%5D%3E-for-%26mut+PushBytes"],[6651,"impl-From%3C%26%5Bu8;+51%5D%3E-for-%26PushBytes"],[6652,"impl-From%3C%26%5Bu8;+27%5D%3E-for-%26PushBytes"],[6653,"impl-From%3C%26mut+%5Bu8;+66%5D%3E-for-%26mut+PushBytes"],[6654,"impl-From%3C%26%5Bu8;+62%5D%3E-for-%26PushBytes"],[6655,"impl-From%3C%26%5Bu8;+57%5D%3E-for-%26PushBytes"],[6656,"impl-From%3C%26mut+%5Bu8;+74%5D%3E-for-%26mut+PushBytes"],[6657,"impl-From%3C%26mut+%5Bu8;+47%5D%3E-for-%26mut+PushBytes"],[6658,"impl-From%3C%26mut+%5Bu8;+43%5D%3E-for-%26mut+PushBytes"],[6659,"impl-From%3C%26%5Bu8;+16%5D%3E-for-%26PushBytes"],[6660,"impl-From%3C%26%5Bu8;+61%5D%3E-for-%26PushBytes"],[6661,"impl-From%3C%26mut+%5Bu8;+17%5D%3E-for-%26mut+PushBytes"],[6662,"impl-From%3C%26%5Bu8;+33%5D%3E-for-%26PushBytes"],[6663,"impl-From%3C%26mut+%5Bu8;+36%5D%3E-for-%26mut+PushBytes"],[6664,"impl-From%3C%26mut+%5Bu8;+11%5D%3E-for-%26mut+PushBytes"],[6665,"impl-From%3C%26%5Bu8;+73%5D%3E-for-%26PushBytes"],[6666,"impl-From%3C%26%5Bu8;+74%5D%3E-for-%26PushBytes"],[6667,"impl-From%3C%26mut+%5Bu8;+19%5D%3E-for-%26mut+PushBytes"],[6668,"impl-From%3C%26mut+%5Bu8;+8%5D%3E-for-%26mut+PushBytes"],[6669,"impl-From%3C%26%5Bu8;+58%5D%3E-for-%26PushBytes"],[6670,"impl-From%3C%26mut+%5Bu8;+27%5D%3E-for-%26mut+PushBytes"],[6671,"impl-From%3C%26mut+%5Bu8;+7%5D%3E-for-%26mut+PushBytes"],[6672,"impl-From%3C%26%5Bu8;+25%5D%3E-for-%26PushBytes"],[6673,"impl-From%3C%26%5Bu8;+22%5D%3E-for-%26PushBytes"],[6674,"impl-From%3C%26mut+%5Bu8;+58%5D%3E-for-%26mut+PushBytes"],[6675,"impl-From%3C%26mut+%5Bu8;+55%5D%3E-for-%26mut+PushBytes"],[6676,"impl-From%3C%26%5Bu8;+30%5D%3E-for-%26PushBytes"],[6677,"impl-From%3C%26mut+%5Bu8;+62%5D%3E-for-%26mut+PushBytes"],[6678,"impl-From%3C%26%5Bu8;+8%5D%3E-for-%26PushBytes"],[6679,"impl-From%3C%26mut+%5Bu8;+34%5D%3E-for-%26mut+PushBytes"],[6680,"impl-From%3C%26%5Bu8;+75%5D%3E-for-%26PushBytes"],[6681,"impl-From%3C%26%5Bu8;+35%5D%3E-for-PushBytesBuf"],[6682,"impl-From%3C%5Bu8;+12%5D%3E-for-PushBytesBuf"],[6683,"impl-From%3C%5Bu8;+42%5D%3E-for-PushBytesBuf"],[6684,"impl-From%3C%26%5Bu8;+30%5D%3E-for-PushBytesBuf"],[6685,"impl-From%3C%26%5Bu8;+4%5D%3E-for-PushBytesBuf"],[6686,"impl-From%3C%26%5Bu8;+29%5D%3E-for-PushBytesBuf"],[6687,"impl-From%3C%26%5Bu8;+70%5D%3E-for-PushBytesBuf"],[6688,"impl-From%3C%5Bu8;+40%5D%3E-for-PushBytesBuf"],[6689,"impl-From%3C%26%5Bu8;+13%5D%3E-for-PushBytesBuf"],[6690,"impl-From%3C%5Bu8;+50%5D%3E-for-PushBytesBuf"],[6691,"impl-From%3C%26%5Bu8;+73%5D%3E-for-PushBytesBuf"],[6692,"impl-From%3C%26%5Bu8;+22%5D%3E-for-PushBytesBuf"],[6693,"impl-From%3C%26%5Bu8;+34%5D%3E-for-PushBytesBuf"],[6694,"impl-From%3C%5Bu8;+59%5D%3E-for-PushBytesBuf"],[6695,"impl-From%3C%5Bu8;+76%5D%3E-for-PushBytesBuf"],[6696,"impl-From%3C%5Bu8;+63%5D%3E-for-PushBytesBuf"],[6697,"impl-From%3C%26%5Bu8;+32%5D%3E-for-PushBytesBuf"],[6698,"impl-From%3C%26%5Bu8;+55%5D%3E-for-PushBytesBuf"],[6699,"impl-From%3C%5Bu8;+2%5D%3E-for-PushBytesBuf"],[6700,"impl-From%3CScriptHash%3E-for-PushBytesBuf"],[6701,"impl-From%3C%26%5Bu8;+59%5D%3E-for-PushBytesBuf"],[6702,"impl-From%3C%26%5Bu8;+56%5D%3E-for-PushBytesBuf"],[6703,"impl-From%3C%26%5Bu8;+19%5D%3E-for-PushBytesBuf"],[6704,"impl-From%3C%26%5Bu8;+67%5D%3E-for-PushBytesBuf"],[6705,"impl-From%3C%26%5Bu8;+52%5D%3E-for-PushBytesBuf"],[6706,"impl-From%3C%26%5Bu8;+53%5D%3E-for-PushBytesBuf"],[6707,"impl-From%3C%5Bu8;+54%5D%3E-for-PushBytesBuf"],[6708,"impl-From%3C%5Bu8;+33%5D%3E-for-PushBytesBuf"],[6709,"impl-From%3C%5Bu8;+60%5D%3E-for-PushBytesBuf"],[6710,"impl-From%3C%26%5Bu8;+45%5D%3E-for-PushBytesBuf"],[6711,"impl-From%3C%5Bu8;+41%5D%3E-for-PushBytesBuf"],[6712,"impl-From%3C%5Bu8;+21%5D%3E-for-PushBytesBuf"],[6713,"impl-From%3C%26%5Bu8;+6%5D%3E-for-PushBytesBuf"],[6714,"impl-From%3C%5Bu8;+74%5D%3E-for-PushBytesBuf"],[6715,"impl-From%3C%5Bu8;+39%5D%3E-for-PushBytesBuf"],[6716,"impl-From%3C%26%5Bu8;+3%5D%3E-for-PushBytesBuf"],[6717,"impl-From%3C%26%5Bu8;+43%5D%3E-for-PushBytesBuf"],[6718,"impl-From%3C%5Bu8;+34%5D%3E-for-PushBytesBuf"],[6719,"impl-From%3C%26%5Bu8;+27%5D%3E-for-PushBytesBuf"],[6720,"impl-From%3C%26%5Bu8;+54%5D%3E-for-PushBytesBuf"],[6721,"impl-From%3CWScriptHash%3E-for-PushBytesBuf"],[6722,"impl-From%3C%5Bu8;+53%5D%3E-for-PushBytesBuf"],[6723,"impl-From%3C%5Bu8;+65%5D%3E-for-PushBytesBuf"],[6724,"impl-From%3C%5Bu8;+29%5D%3E-for-PushBytesBuf"],[6725,"impl-From%3C%5Bu8;+49%5D%3E-for-PushBytesBuf"],[6726,"impl-From%3C%5Bu8;+66%5D%3E-for-PushBytesBuf"],[6727,"impl-From%3C%5Bu8;+37%5D%3E-for-PushBytesBuf"],[6728,"impl-From%3C%26%5Bu8;+41%5D%3E-for-PushBytesBuf"],[6729,"impl-From%3C%26%5Bu8;+1%5D%3E-for-PushBytesBuf"],[6730,"impl-From%3C%5Bu8;+71%5D%3E-for-PushBytesBuf"],[6731,"impl-From%3C%26%5Bu8;+36%5D%3E-for-PushBytesBuf"],[6732,"impl-From%3C%5Bu8;+24%5D%3E-for-PushBytesBuf"],[6733,"impl-From%3C%5Bu8;+56%5D%3E-for-PushBytesBuf"],[6734,"impl-From%3C%5Bu8;+72%5D%3E-for-PushBytesBuf"],[6735,"impl-From%3C%26%5Bu8;+18%5D%3E-for-PushBytesBuf"],[6736,"impl-From%3C%5Bu8;+22%5D%3E-for-PushBytesBuf"],[6737,"impl-From%3C%5Bu8;+19%5D%3E-for-PushBytesBuf"],[6738,"impl-From%3C%5Bu8;+20%5D%3E-for-PushBytesBuf"],[6739,"impl-From%3CPubkeyHash%3E-for-PushBytesBuf"],[6740,"impl-From%3C%26%5Bu8;+40%5D%3E-for-PushBytesBuf"],[6741,"impl-From%3C%26%5Bu8;+58%5D%3E-for-PushBytesBuf"],[6742,"impl-From%3C%5Bu8;+58%5D%3E-for-PushBytesBuf"],[6743,"impl-From%3C%5Bu8;+44%5D%3E-for-PushBytesBuf"],[6744,"impl-From%3C%5Bu8;+1%5D%3E-for-PushBytesBuf"],[6745,"impl-From%3C%5Bu8;+32%5D%3E-for-PushBytesBuf"],[6746,"impl-From%3C%5Bu8;+10%5D%3E-for-PushBytesBuf"],[6747,"impl-From%3C%26%5Bu8;+26%5D%3E-for-PushBytesBuf"],[6748,"impl-From%3C%5Bu8;+17%5D%3E-for-PushBytesBuf"],[6749,"impl-From%3C%5Bu8;+18%5D%3E-for-PushBytesBuf"],[6750,"impl-From%3C%26%5Bu8;+11%5D%3E-for-PushBytesBuf"],[6751,"impl-From%3C%26%5Bu8;+5%5D%3E-for-PushBytesBuf"],[6752,"impl-From%3C%5Bu8;+26%5D%3E-for-PushBytesBuf"],[6753,"impl-From%3C%5Bu8;+16%5D%3E-for-PushBytesBuf"],[6754,"impl-From%3C%5Bu8;+3%5D%3E-for-PushBytesBuf"],[6755,"impl-From%3C%5Bu8;+5%5D%3E-for-PushBytesBuf"],[6756,"impl-From%3C%5Bu8;+55%5D%3E-for-PushBytesBuf"],[6757,"impl-From%3C%5Bu8;+0%5D%3E-for-PushBytesBuf"],[6758,"impl-From%3C%26%5Bu8;+20%5D%3E-for-PushBytesBuf"],[6759,"impl-From%3C%5Bu8;+8%5D%3E-for-PushBytesBuf"],[6760,"impl-From%3C%5Bu8;+13%5D%3E-for-PushBytesBuf"],[6761,"impl-From%3C%5Bu8;+61%5D%3E-for-PushBytesBuf"],[6762,"impl-From%3C%5Bu8;+9%5D%3E-for-PushBytesBuf"],[6763,"impl-From%3C%26%5Bu8;+17%5D%3E-for-PushBytesBuf"],[6764,"impl-From%3C%5Bu8;+69%5D%3E-for-PushBytesBuf"],[6765,"impl-From%3C%5Bu8;+47%5D%3E-for-PushBytesBuf"],[6766,"impl-From%3C%26%5Bu8;+44%5D%3E-for-PushBytesBuf"],[6767,"impl-From%3C%26%5Bu8;+75%5D%3E-for-PushBytesBuf"],[6768,"impl-From%3C%26%5Bu8;+37%5D%3E-for-PushBytesBuf"],[6769,"impl-From%3C%26%5Bu8;+47%5D%3E-for-PushBytesBuf"],[6770,"impl-From%3C%5Bu8;+23%5D%3E-for-PushBytesBuf"],[6771,"impl-From%3C%26%5Bu8;+12%5D%3E-for-PushBytesBuf"],[6772,"impl-From%3C%26%5Bu8;+71%5D%3E-for-PushBytesBuf"],[6773,"impl-From%3C%26%5Bu8;+62%5D%3E-for-PushBytesBuf"],[6774,"impl-From%3C%26%5Bu8;+23%5D%3E-for-PushBytesBuf"],[6775,"impl-From%3C%26%5Bu8;+57%5D%3E-for-PushBytesBuf"],[6776,"impl-From%3C%26%5Bu8;+46%5D%3E-for-PushBytesBuf"],[6777,"impl-From%3C%26%5Bu8;+28%5D%3E-for-PushBytesBuf"],[6778,"impl-From%3C%26%5Bu8;+72%5D%3E-for-PushBytesBuf"],[6779,"impl-From%3C%26%5Bu8;+61%5D%3E-for-PushBytesBuf"],[6780,"impl-From%3C%5Bu8;+15%5D%3E-for-PushBytesBuf"],[6781,"impl-From%3C%26%5Bu8;+31%5D%3E-for-PushBytesBuf"],[6782,"impl-From%3C%26%5Bu8;+7%5D%3E-for-PushBytesBuf"],[6783,"impl-From%3CWPubkeyHash%3E-for-PushBytesBuf"],[6784,"impl-From%3C%26%5Bu8;+60%5D%3E-for-PushBytesBuf"],[6785,"impl-From%3C%5Bu8;+31%5D%3E-for-PushBytesBuf"],[6786,"impl-From%3C%26%5Bu8;+16%5D%3E-for-PushBytesBuf"],[6787,"impl-From%3C%26%5Bu8;+66%5D%3E-for-PushBytesBuf"],[6788,"impl-From%3C%26%5Bu8;+10%5D%3E-for-PushBytesBuf"],[6789,"impl-From%3C%26%5Bu8;+65%5D%3E-for-PushBytesBuf"],[6790,"impl-From%3C%26%5Bu8;+69%5D%3E-for-PushBytesBuf"],[6791,"impl-From%3C%5Bu8;+36%5D%3E-for-PushBytesBuf"],[6792,"impl-From%3C%26%5Bu8;+8%5D%3E-for-PushBytesBuf"],[6793,"impl-From%3C%5Bu8;+35%5D%3E-for-PushBytesBuf"],[6794,"impl-From%3C%5Bu8;+46%5D%3E-for-PushBytesBuf"],[6795,"impl-From%3C%26%5Bu8;+38%5D%3E-for-PushBytesBuf"],[6796,"impl-From%3C%5Bu8;+73%5D%3E-for-PushBytesBuf"],[6797,"impl-From%3C%5Bu8;+75%5D%3E-for-PushBytesBuf"],[6798,"impl-From%3C%5Bu8;+67%5D%3E-for-PushBytesBuf"],[6799,"impl-From%3C%26%5Bu8;+0%5D%3E-for-PushBytesBuf"],[6801,"impl-From%3C%5Bu8;+11%5D%3E-for-PushBytesBuf"],[6802,"impl-From%3C%26%5Bu8;+14%5D%3E-for-PushBytesBuf"],[6803,"impl-From%3C%26%5Bu8;+9%5D%3E-for-PushBytesBuf"],[6804,"impl-From%3C%5Bu8;+52%5D%3E-for-PushBytesBuf"],[6805,"impl-From%3C%26%5Bu8;+33%5D%3E-for-PushBytesBuf"],[6806,"impl-From%3C%5Bu8;+48%5D%3E-for-PushBytesBuf"],[6807,"impl-From%3C%26%5Bu8;+2%5D%3E-for-PushBytesBuf"],[6808,"impl-From%3C%5Bu8;+68%5D%3E-for-PushBytesBuf"],[6809,"impl-From%3C%26%5Bu8;+76%5D%3E-for-PushBytesBuf"],[6810,"impl-From%3C%5Bu8;+7%5D%3E-for-PushBytesBuf"],[6811,"impl-From%3C%26%5Bu8;+51%5D%3E-for-PushBytesBuf"],[6812,"impl-From%3C%26%5Bu8;+25%5D%3E-for-PushBytesBuf"],[6813,"impl-From%3C%26%5Bu8;+74%5D%3E-for-PushBytesBuf"],[6814,"impl-From%3C%26%5Bu8;+68%5D%3E-for-PushBytesBuf"],[6815,"impl-From%3C%5Bu8;+43%5D%3E-for-PushBytesBuf"],[6816,"impl-From%3C%5Bu8;+45%5D%3E-for-PushBytesBuf"],[6817,"impl-From%3C%26%5Bu8;+39%5D%3E-for-PushBytesBuf"],[6818,"impl-From%3C%26%5Bu8;+24%5D%3E-for-PushBytesBuf"],[6819,"impl-From%3C%5Bu8;+70%5D%3E-for-PushBytesBuf"],[6820,"impl-From%3C%5Bu8;+6%5D%3E-for-PushBytesBuf"],[6821,"impl-From%3C%5Bu8;+4%5D%3E-for-PushBytesBuf"],[6822,"impl-From%3C%26%5Bu8;+50%5D%3E-for-PushBytesBuf"],[6823,"impl-From%3C%26%5Bu8;+42%5D%3E-for-PushBytesBuf"],[6824,"impl-From%3C%26%5Bu8;+21%5D%3E-for-PushBytesBuf"],[6825,"impl-From%3C%26%5Bu8;+63%5D%3E-for-PushBytesBuf"],[6826,"impl-From%3C%5Bu8;+51%5D%3E-for-PushBytesBuf"],[6827,"impl-From%3C%5Bu8;+25%5D%3E-for-PushBytesBuf"],[6828,"impl-From%3C%5Bu8;+28%5D%3E-for-PushBytesBuf"],[6829,"impl-From%3C%26%5Bu8;+48%5D%3E-for-PushBytesBuf"],[6830,"impl-From%3C%5Bu8;+27%5D%3E-for-PushBytesBuf"],[6831,"impl-From%3C%26%5Bu8;+15%5D%3E-for-PushBytesBuf"],[6832,"impl-From%3C%5Bu8;+14%5D%3E-for-PushBytesBuf"],[6833,"impl-From%3C%26%5Bu8;+49%5D%3E-for-PushBytesBuf"],[6834,"impl-From%3C%5Bu8;+64%5D%3E-for-PushBytesBuf"],[6835,"impl-From%3C%5Bu8;+57%5D%3E-for-PushBytesBuf"],[6836,"impl-From%3C%26%5Bu8;+64%5D%3E-for-PushBytesBuf"],[6837,"impl-From%3C%5Bu8;+30%5D%3E-for-PushBytesBuf"],[6838,"impl-From%3C%5Bu8;+62%5D%3E-for-PushBytesBuf"],[6839,"impl-From%3C%5Bu8;+38%5D%3E-for-PushBytesBuf"],[6842,"impl-From%3CUintError%3E-for-Error"],[6843,"impl-From%3CInfallible%3E-for-Error"],[6846,"impl-Index%3CRangeFull%3E-for-PushBytes"],[6847,"impl-Index%3CRangeInclusive%3Cusize%3E%3E-for-PushBytes"],[6848,"impl-Index%3CRangeTo%3Cusize%3E%3E-for-PushBytes"],[6849,"impl-Index%3C(Bound%3Cusize%3E,+Bound%3Cusize%3E)%3E-for-PushBytes"],[6850,"impl-Index%3CRange%3Cusize%3E%3E-for-PushBytes"],[6851,"impl-Index%3CRangeToInclusive%3Cusize%3E%3E-for-PushBytes"],[6852,"impl-Index%3CRangeFrom%3Cusize%3E%3E-for-PushBytes"],[6853,"impl-Index%3Cusize%3E-for-PushBytes"],[6932,"impl-TryFrom%3C%26mut+%5Bu8%5D%3E-for-%26mut+PushBytes"],[6933,"impl-TryFrom%3C%26%5Bu8%5D%3E-for-%26PushBytes"],[6980,"impl-Display-for-Error"],[6981,"impl-Debug-for-Error"],[7038,"impl-Display-for-FromStrError"],[7039,"impl-Debug-for-FromStrError"],[7040,"impl-Display-for-TryFromInstructionError"],[7041,"impl-Debug-for-TryFromInstructionError"],[7042,"impl-Display-for-TryFromError"],[7043,"impl-Debug-for-TryFromError"],[7044,"impl-From%3CParseIntError%3E-for-FromStrError"],[7045,"impl-From%3CInfallible%3E-for-FromStrError"],[7046,"impl-From%3CTryFromError%3E-for-FromStrError"],[7048,"impl-From%3CInfallible%3E-for-TryFromInstructionError"],[7049,"impl-From%3CTryFromError%3E-for-TryFromInstructionError"],[7145,"impl-Display-for-ParseOutPointError"],[7146,"impl-Debug-for-ParseOutPointError"],[7147,"impl-Debug-for-InputsIndexError"],[7148,"impl-Display-for-InputsIndexError"],[7149,"impl-Display-for-OutputsIndexError"],[7150,"impl-Debug-for-OutputsIndexError"],[7151,"impl-Debug-for-IndexOutOfBoundsError"],[7152,"impl-Display-for-IndexOutOfBoundsError"],[7153,"impl-Display-for-Version"],[7154,"impl-Debug-for-Version"],[7299,"impl-Display-for-DecodeError%3CE%3E"],[7300,"impl-Debug-for-DecodeError%3CE%3E"],[7301,"impl-From%3C%26Network%3E-for-%26Params"],[7302,"impl-From%3CNetwork%3E-for-%26Params"],[7304,"impl-From%3C%26Network%3E-for-Params"],[7305,"impl-From%3CNetwork%3E-for-Params"],[7392,"impl-Debug-for-Error"],[7393,"impl-Display-for-Error"],[7394,"impl-Display-for-FromHexError"],[7395,"impl-Debug-for-FromHexError"],[7397,"impl-From%3CError%3E-for-Error"],[7399,"impl-From%3CInfallible%3E-for-Error"],[7582,"impl-AsRef%3C%5Bu8%5D%3E-for-SerializedSignature"],[7583,"impl-AsRef%3CPushBytes%3E-for-SerializedSignature"],[7610,"impl-Debug-for-Signature"],[7611,"impl-Display-for-Signature"],[7612,"impl-LowerHex-for-SerializedSignature"],[7613,"impl-UpperHex-for-SerializedSignature"],[7614,"impl-Debug-for-SerializedSignature"],[7615,"impl-Display-for-SerializedSignature"],[7616,"impl-Display-for-Error"],[7617,"impl-Debug-for-Error"],[7620,"impl-From%3CHexToBytesError%3E-for-Error"],[7622,"impl-From%3CError%3E-for-Error"],[7623,"impl-From%3CNonStandardSighashTypeError%3E-for-Error"],[7624,"impl-From%3CInfallible%3E-for-Error"],[7634,"impl-Serialize-for-Signature"],[7635,"impl-Signature"],[7698,"impl-Debug-for-PrefixedHexError"],[7699,"impl-Display-for-PrefixedHexError"],[7700,"impl-Display-for-UnprefixedHexError"],[7701,"impl-Debug-for-UnprefixedHexError"],[7702,"impl-Display-for-MissingPrefixError"],[7703,"impl-Debug-for-MissingPrefixError"],[7704,"impl-Debug-for-ContainsPrefixError"],[7705,"impl-Display-for-ContainsPrefixError"],[7707,"impl-From%3CMissingPrefixError%3E-for-PrefixedHexError"],[7708,"impl-From%3CParseIntError%3E-for-PrefixedHexError"],[7710,"impl-From%3CContainsPrefixError%3E-for-UnprefixedHexError"],[7711,"impl-From%3CParseIntError%3E-for-UnprefixedHexError"],[7797,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[7798,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::hash160::%7Bimpl%2311%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[7810,"impl-Debug-for-Hash"],[7811,"impl-LowerHex-for-Hash"],[7812,"impl-UpperHex-for-Hash"],[7813,"impl-Display-for-Hash"],[7814,"impl-From%3CWPubkeyHash%3E-for-Hash"],[7815,"impl-From%3CPubkeyHash%3E-for-Hash"],[7816,"impl-From%3CScriptHash%3E-for-Hash"],[7818,"impl-From%3CXKeyIdentifier%3E-for-Hash"],[7902,"impl-Debug-for-HexToBytesError"],[7903,"impl-Display-for-HexToBytesError"],[7904,"impl-Display-for-InvalidCharError"],[7905,"impl-Debug-for-InvalidCharError"],[7906,"impl-Debug-for-OddLengthStringError"],[7907,"impl-Display-for-OddLengthStringError"],[7908,"impl-Debug-for-HexToArrayError"],[7909,"impl-Display-for-HexToArrayError"],[7914,"impl-From%3COddLengthStringError%3E-for-HexToBytesError"],[7915,"impl-From%3CInvalidCharError%3E-for-HexToBytesError"],[7919,"impl-From%3CInvalidLengthError%3E-for-HexToArrayError"],[7920,"impl-From%3CInvalidCharError%3E-for-HexToArrayError"],[8031,"impl-Debug-for-DisplayByteSlice%3C\'a%3E"],[8032,"impl-LowerHex-for-DisplayByteSlice%3C\'a%3E"],[8033,"impl-UpperHex-for-DisplayByteSlice%3C\'a%3E"],[8034,"impl-Display-for-DisplayByteSlice%3C\'a%3E"],[8035,"impl-LowerHex-for-DisplayArray%3C\'a,+LEN%3E"],[8036,"impl-UpperHex-for-DisplayArray%3C\'a,+LEN%3E"],[8037,"impl-Debug-for-DisplayArray%3C\'a,+LEN%3E"],[8038,"impl-Display-for-DisplayArray%3C\'a,+LEN%3E"],[8076,"impl-Debug-for-InvalidLengthError"],[8077,"impl-Display-for-InvalidLengthError"],[8125,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::ripemd160::%7Bimpl%2314%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[8126,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[8153,"impl-Write-for-HashEngine"],[8154,"impl-Write-for-HashEngine"],[8155,"impl-UpperHex-for-Hash"],[8156,"impl-Display-for-Hash"],[8157,"impl-LowerHex-for-Hash"],[8158,"impl-Debug-for-Hash"],[8190,"impl-Write-for-HashEngine"],[8191,"impl-Write-for-HashEngine"],[8376,"impl-Display-for-Unexpected%3C\'a%3E"],[8377,"impl-Debug-for-Unexpected%3C\'a%3E"],[8608,"impl-Error-for-Error"],[8609,"impl-Error-for-Error"],[9491,"impl-Debug-for-Error"],[9492,"impl-Display-for-Error"],[9631,"impl-SeqAccess%3C\'de%3E-for-MapDeserializer%3C\'de,+I,+E%3E"],[9632,"impl-MapAccess%3C\'de%3E-for-MapDeserializer%3C\'de,+I,+E%3E"],[9829,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9830,"impl-dyn+Error+%2B+Send"],[9831,"impl-dyn+Error"],[9832,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9833,"impl-dyn+Error"],[9834,"impl-dyn+Error+%2B+Send"],[9835,"impl-dyn+Error"],[9836,"impl-dyn+Error+%2B+Send"],[9837,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9845,"impl-SerializeMap-for-Impossible%3COk,+Error%3E"],[9846,"impl-SerializeSeq-for-Impossible%3COk,+Error%3E"],[9847,"impl-SerializeTupleVariant-for-Impossible%3COk,+Error%3E"],[9848,"impl-SerializeStructVariant-for-Impossible%3COk,+Error%3E"],[9849,"impl-SerializeStruct-for-Impossible%3COk,+Error%3E"],[9850,"impl-SerializeTupleStruct-for-Impossible%3COk,+Error%3E"],[9851,"impl-SerializeTuple-for-Impossible%3COk,+Error%3E"],[9854,"impl-dyn+Error+%2B+Send+%2B+Sync"],[9855,"impl-dyn+Error+%2B+Send"],[9856,"impl-dyn+Error"],[9865,"impl-SerializeTuple-for-Impossible%3COk,+Error%3E"],[9866,"impl-SerializeSeq-for-Impossible%3COk,+Error%3E"],[9874,"impl-SerializeTupleVariant-for-Impossible%3COk,+Error%3E"],[9875,"impl-SerializeTupleStruct-for-Impossible%3COk,+Error%3E"],[9876,"impl-SerializeStructVariant-for-Impossible%3COk,+Error%3E"],[9877,"impl-SerializeStruct-for-Impossible%3COk,+Error%3E"],[9925,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha1::%7Bimpl%2314%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[9926,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[9953,"impl-Write-for-HashEngine"],[9954,"impl-Write-for-HashEngine"],[9955,"impl-Debug-for-Hash"],[9956,"impl-UpperHex-for-Hash"],[9957,"impl-Display-for-Hash"],[9958,"impl-LowerHex-for-Hash"],[9989,"impl-Write-for-HashEngine"],[9990,"impl-Write-for-HashEngine"],[9996,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha256::%7Bimpl%2320%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[9997,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10039,"impl-Write-for-HashEngine"],[10040,"impl-Write-for-HashEngine"],[10041,"impl-Debug-for-Hash"],[10042,"impl-UpperHex-for-Hash"],[10043,"impl-Display-for-Hash"],[10044,"impl-LowerHex-for-Hash"],[10045,"impl-Display-for-Midstate"],[10046,"impl-LowerHex-for-Midstate"],[10047,"impl-Debug-for-Midstate"],[10048,"impl-UpperHex-for-Midstate"],[10050,"impl-From%3CDescriptorId%3E-for-Hash"],[10051,"impl-From%3CWScriptHash%3E-for-Hash"],[10103,"impl-Write-for-HashEngine"],[10104,"impl-Write-for-HashEngine"],[10108,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10109,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha256d::%7Bimpl%2311%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10123,"impl-UpperHex-for-Hash"],[10124,"impl-LowerHex-for-Hash"],[10125,"impl-Display-for-Hash"],[10126,"impl-Debug-for-Hash"],[10127,"impl-From%3CFilterHash%3E-for-Hash"],[10128,"impl-From%3CFilterHeader%3E-for-Hash"],[10129,"impl-From%3CHash%3E-for-Hash"],[10130,"impl-From%3CBlockHash%3E-for-Hash"],[10131,"impl-From%3CTxMerkleNode%3E-for-Hash"],[10132,"impl-From%3CLegacySighash%3E-for-Hash"],[10133,"impl-From%3CWitnessCommitment%3E-for-Hash"],[10134,"impl-From%3CWitnessMerkleNode%3E-for-Hash"],[10135,"impl-From%3CTxid%3E-for-Hash"],[10136,"impl-From%3CWtxid%3E-for-Hash"],[10137,"impl-From%3CSegwitV0Sighash%3E-for-Hash"],[10162,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash%3CT%3E"],[10163,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha256t::%7Bimpl%2311%7D::%7Bconstant%230%7D%5D%3E-for-Hash%3CT%3E"],[10177,"impl-Debug-for-Hash%3CT%3E"],[10178,"impl-Display-for-Hash%3CT%3E"],[10179,"impl-UpperHex-for-Hash%3CT%3E"],[10180,"impl-LowerHex-for-Hash%3CT%3E"],[10181,"impl-From%3CTapLeafHash%3E-for-Hash%3CTapLeafTag%3E"],[10182,"impl-From%3CTapTweakHash%3E-for-Hash%3CTapTweakTag%3E"],[10184,"impl-From%3CTapSighash%3E-for-Hash%3CTapSighashTag%3E"],[10185,"impl-From%3CTapNodeHash%3E-for-Hash%3CTapBranchTag%3E"],[10209,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10210,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha384::%7Bimpl%2313%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10227,"impl-LowerHex-for-Hash"],[10228,"impl-UpperHex-for-Hash"],[10229,"impl-Debug-for-Hash"],[10230,"impl-Display-for-Hash"],[10265,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10266,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha512::%7Bimpl%2315%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10293,"impl-Write-for-HashEngine"],[10294,"impl-Write-for-HashEngine"],[10295,"impl-UpperHex-for-Hash"],[10296,"impl-LowerHex-for-Hash"],[10297,"impl-Display-for-Hash"],[10298,"impl-Debug-for-Hash"],[10329,"impl-Write-for-HashEngine"],[10330,"impl-Write-for-HashEngine"],[10335,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::sha512_256::%7Bimpl%2313%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10336,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10353,"impl-Display-for-Hash"],[10354,"impl-LowerHex-for-Hash"],[10355,"impl-Debug-for-Hash"],[10356,"impl-UpperHex-for-Hash"],[10392,"impl-AsRef%3C%5Bu8%5D%3E-for-Hash"],[10393,"impl-AsRef%3C%5Bu8;+bitcoin_hashes::::siphash24::%7Bimpl%2315%7D::%7Bconstant%230%7D%5D%3E-for-Hash"],[10425,"impl-Write-for-HashEngine"],[10426,"impl-Write-for-HashEngine"],[10427,"impl-LowerHex-for-Hash"],[10428,"impl-UpperHex-for-Hash"],[10429,"impl-Debug-for-Hash"],[10430,"impl-Display-for-Hash"],[10477,"impl-Write-for-HashEngine"],[10478,"impl-Write-for-HashEngine"],[10528,"impl-BufRead-for-FromStd%3CT%3E"],[10529,"impl-BufRead-for-FromStd%3CT%3E"],[10530,"impl-BufRead-for-ToStd%3CT%3E"],[10531,"impl-BufRead-for-ToStd%3CT%3E"],[10569,"impl-BufRead-for-FromStd%3CT%3E"],[10570,"impl-BufRead-for-FromStd%3CT%3E"],[10571,"impl-BufRead-for-ToStd%3CT%3E"],[10572,"impl-BufRead-for-ToStd%3CT%3E"],[10576,"impl-Write-for-FromStd%3CT%3E"],[10577,"impl-Write-for-FromStd%3CT%3E"],[10578,"impl-Write-for-ToStd%3CT%3E"],[10579,"impl-Write-for-ToStd%3CT%3E"],[10580,"impl-Write-for-Sink"],[10581,"impl-Write-for-Sink"],[10582,"impl-Debug-for-Error"],[10583,"impl-Display-for-Error"],[10591,"impl-From%3CErrorKind%3E-for-Error"],[10592,"impl-From%3CError%3E-for-Error"],[10626,"impl-Read-for-FromStd%3CT%3E"],[10627,"impl-Read-for-FromStd%3CT%3E"],[10628,"impl-Read-for-ToStd%3CT%3E"],[10629,"impl-Read-for-ToStd%3CT%3E"],[10636,"impl-Read-for-FromStd%3CT%3E"],[10637,"impl-Read-for-FromStd%3CT%3E"],[10638,"impl-Read-for-ToStd%3CT%3E"],[10639,"impl-Read-for-ToStd%3CT%3E"],[10714,"impl-Write-for-FromStd%3CT%3E"],[10715,"impl-Write-for-FromStd%3CT%3E"],[10716,"impl-Write-for-ToStd%3CT%3E"],[10717,"impl-Write-for-ToStd%3CT%3E"],[10718,"impl-Write-for-Sink"],[10719,"impl-Write-for-Sink"],[10720,"impl-Write-for-FromStd%3CT%3E"],[10721,"impl-Write-for-FromStd%3CT%3E"],[10722,"impl-Write-for-ToStd%3CT%3E"],[10723,"impl-Write-for-ToStd%3CT%3E"],[10725,"impl-Write-for-Sink"],[10726,"impl-Write-for-Sink"],[10888,"impl-Display-for-TweakedPublicKey"],[10889,"impl-Debug-for-TweakedPublicKey"],[10890,"impl-LowerHex-for-TweakedPublicKey"],[10892,"impl-Display-for-FromSliceError"],[10893,"impl-Debug-for-FromSliceError"],[10894,"impl-Debug-for-FromWifError"],[10895,"impl-Display-for-FromWifError"],[10896,"impl-Display-for-ParsePublicKeyError"],[10897,"impl-Debug-for-ParsePublicKeyError"],[10898,"impl-Debug-for-ParseCompressedPublicKeyError"],[10899,"impl-Display-for-ParseCompressedPublicKeyError"],[10900,"impl-Display-for-UncompressedPublicKeyError"],[10901,"impl-Debug-for-UncompressedPublicKeyError"],[10902,"impl-Debug-for-InvalidBase58PayloadLengthError"],[10903,"impl-Display-for-InvalidBase58PayloadLengthError"],[10904,"impl-Debug-for-InvalidAddressVersionError"],[10905,"impl-Display-for-InvalidAddressVersionError"],[10915,"impl-From%3CError%3E-for-FromSliceError"],[10916,"impl-From%3CInfallible%3E-for-FromSliceError"],[10917,"impl-From%3CInfallible%3E-for-FromWifError"],[10918,"impl-From%3CInvalidAddressVersionError%3E-for-FromWifError"],[10919,"impl-From%3CInvalidBase58PayloadLengthError%3E-for-FromWifError"],[10921,"impl-From%3CError%3E-for-FromWifError"],[10922,"impl-From%3CError%3E-for-FromWifError"],[10924,"impl-From%3CInfallible%3E-for-ParsePublicKeyError"],[10925,"impl-From%3CFromSliceError%3E-for-ParsePublicKeyError"],[10927,"impl-From%3CInfallible%3E-for-ParseCompressedPublicKeyError"],[10928,"impl-From%3CHexToArrayError%3E-for-ParseCompressedPublicKeyError"],[10929,"impl-From%3CError%3E-for-ParseCompressedPublicKeyError"],[10993,"impl-Serialize-for-TweakedPublicKey"],[10994,"impl-TweakedPublicKey"],[11041,"impl-TryFrom%3Ci32%3E-for-Parity"],[11043,"impl-TryFrom%3Cu8%3E-for-Parity"],[11131,"impl-Debug-for-MerkleBlockError"],[11132,"impl-Display-for-MerkleBlockError"],[11181,"impl-Debug-for-ParseNetworkError"],[11182,"impl-Display-for-ParseNetworkError"],[11183,"impl-Debug-for-UnknownChainHashError"],[11184,"impl-Display-for-UnknownChainHashError"],[11228,"impl-AsMut%3C%5Bu8%5D%3E-for-Magic"],[11229,"impl-AsMut%3C%5Bu8;+4%5D%3E-for-Magic"],[11230,"impl-AsRef%3C%5Bu8;+4%5D%3E-for-Magic"],[11231,"impl-AsRef%3C%5Bu8%5D%3E-for-Magic"],[11238,"impl-Borrow%3C%5Bu8;+4%5D%3E-for-Magic"],[11239,"impl-Borrow%3C%5Bu8%5D%3E-for-Magic"],[11245,"impl-BorrowMut%3C%5Bu8%5D%3E-for-Magic"],[11246,"impl-BorrowMut%3C%5Bu8;+4%5D%3E-for-Magic"],[11285,"impl-LowerHex-for-ServiceFlags"],[11286,"impl-Debug-for-ServiceFlags"],[11287,"impl-UpperHex-for-ServiceFlags"],[11288,"impl-Display-for-ServiceFlags"],[11289,"impl-Display-for-Magic"],[11290,"impl-LowerHex-for-Magic"],[11291,"impl-UpperHex-for-Magic"],[11292,"impl-Debug-for-Magic"],[11293,"impl-Display-for-ParseMagicError"],[11294,"impl-Debug-for-ParseMagicError"],[11295,"impl-Debug-for-UnknownMagicError"],[11296,"impl-Display-for-UnknownMagicError"],[11500,"impl-Display-for-CommandString"],[11501,"impl-Debug-for-CommandString"],[11502,"impl-Debug-for-CommandStringError"],[11503,"impl-Display-for-CommandStringError"],[11526,"impl-TryFrom%3CString%3E-for-CommandString"],[11527,"impl-TryFrom%3C%26str%3E-for-CommandString"],[11528,"impl-TryFrom%3CBox%3Cstr%3E%3E-for-CommandString"],[12002,"impl-Display-for-ParseIntError"],[12003,"impl-Debug-for-ParseIntError"],[12212,"impl-Debug-for-Error"],[12213,"impl-Display-for-Error"],[12217,"impl-Display-for-GetKeyError"],[12218,"impl-Debug-for-GetKeyError"],[12221,"impl-Debug-for-SignError"],[12222,"impl-Display-for-SignError"],[12223,"impl-Display-for-ExtractTxError"],[12224,"impl-Debug-for-ExtractTxError"],[12225,"impl-Debug-for-IndexOutOfBoundsError"],[12226,"impl-Display-for-IndexOutOfBoundsError"],[12227,"impl-Display-for-PsbtParseError"],[12228,"impl-Debug-for-PsbtParseError"],[12229,"impl-Debug-for-PsbtSighashType"],[12230,"impl-Display-for-PsbtSighashType"],[12233,"impl-From%3CError%3E-for-Error"],[12234,"impl-From%3CFromSliceError%3E-for-Error"],[12235,"impl-From%3CError%3E-for-Error"],[12236,"impl-From%3CInfallible%3E-for-Error"],[12241,"impl-From%3CError%3E-for-GetKeyError"],[12242,"impl-From%3CInfallible%3E-for-GetKeyError"],[12245,"impl-From%3CTaprootError%3E-for-SignError"],[12247,"impl-From%3CInfallible%3E-for-SignError"],[12248,"impl-From%3CIndexOutOfBoundsError%3E-for-SignError"],[12249,"impl-From%3CP2wpkhError%3E-for-SignError"],[12256,"impl-From%3CEcdsaSighashType%3E-for-PsbtSighashType"],[12258,"impl-From%3CTapSighashType%3E-for-PsbtSighashType"],[12449,"impl-Debug-for-Key"],[12450,"impl-Display-for-Key"],[12660,"impl-Display-for-PublicKey"],[12661,"impl-LowerHex-for-PublicKey"],[12662,"impl-Debug-for-PublicKey"],[12663,"impl-Debug-for-InvalidParityValue"],[12664,"impl-Display-for-InvalidParityValue"],[12666,"impl-Debug-for-Message"],[12667,"impl-LowerHex-for-Message"],[12668,"impl-Display-for-Message"],[12669,"impl-Debug-for-Error"],[12670,"impl-Display-for-Error"],[12677,"impl-From%3CT%3E-for-SecretKey"],[12678,"impl-From%3C%26Keypair%3E-for-SecretKey"],[12680,"impl-From%3CKeypair%3E-for-SecretKey"],[12682,"impl-From%3CPublicKey%3E-for-PublicKey"],[12683,"impl-From%3C%26Keypair%3E-for-PublicKey"],[12684,"impl-From%3CKeypair%3E-for-PublicKey"],[12688,"impl-From%3CSegwitV0Sighash%3E-for-Message"],[12690,"impl-From%3CT%3E-for-Message"],[12691,"impl-From%3CLegacySighash%3E-for-Message"],[12692,"impl-From%3CTapSighash%3E-for-Message"],[12764,"impl-PublicKey"],[12765,"impl-Serialize-for-PublicKey"],[12929,"impl-PartialEq%3C%5Bu8%5D%3E-for-SerializedSignature"],[12930,"impl-PartialEq-for-SerializedSignature"],[12943,"impl-Display-for-SerializedSignature"],[12944,"impl-Debug-for-SerializedSignature"],[12945,"impl-Debug-for-Signature"],[12946,"impl-Display-for-Signature"],[12950,"impl-From%3C%26Signature%3E-for-SerializedSignature"],[12952,"impl-From%3CSignature%3E-for-SerializedSignature"],[12969,"impl-IntoIterator-for-%26SerializedSignature"],[12970,"impl-IntoIterator-for-SerializedSignature"],[12976,"impl-PartialOrd%3C%5Bu8%5D%3E-for-SerializedSignature"],[12977,"impl-PartialOrd-for-SerializedSignature"],[12996,"impl-TryFrom%3C%26SerializedSignature%3E-for-Signature"],[12997,"impl-TryFrom%3CSerializedSignature%3E-for-Signature"],[13065,"impl-Display-for-ElligatorSwift"],[13066,"impl-Debug-for-ElligatorSwift"],[13067,"impl-LowerHex-for-ElligatorSwift"],[13466,"impl-Write-for-HmacEngine%3CT%3E"],[13467,"impl-Write-for-HmacEngine%3CT%3E"],[13468,"impl-Display-for-FromSliceError"],[13469,"impl-Debug-for-FromSliceError"],[13470,"impl-Display-for-Hmac%3CT%3E"],[13471,"impl-Debug-for-Hmac%3CT%3E"],[13472,"impl-LowerHex-for-Hmac%3CT%3E"],[13489,"impl-Index%3CRange%3Cusize%3E%3E-for-Hmac%3CT%3E"],[13490,"impl-Index%3CRangeFrom%3Cusize%3E%3E-for-Hmac%3CT%3E"],[13491,"impl-Index%3CRangeTo%3Cusize%3E%3E-for-Hmac%3CT%3E"],[13492,"impl-Index%3CRangeFull%3E-for-Hmac%3CT%3E"],[13493,"impl-Index%3Cusize%3E-for-Hmac%3CT%3E"],[13528,"impl-Write-for-HmacEngine%3CT%3E"],[13529,"impl-Write-for-HmacEngine%3CT%3E"],[13545,"impl-Display-for-Error"],[13546,"impl-Debug-for-Error"],[13547,"impl-From%3CError%3E-for-Error"],[13548,"impl-From%3CNonZero%3Cu32%3E%3E-for-Error"],[13660,"impl-Display-for-BernoulliError"],[13661,"impl-Debug-for-BernoulliError"],[13669,"impl-Display-for-WeightedError"],[13670,"impl-Debug-for-WeightedError"],[13683,"impl-From%3CRange%3CX%3E%3E-for-Uniform%3CX%3E"],[13684,"impl-From%3CRangeInclusive%3CX%3E%3E-for-Uniform%3CX%3E"],[13712,"impl-Distribution%3Cf64%3E-for-OpenClosed01"],[13713,"impl-Distribution%3Cf32%3E-for-OpenClosed01"],[13714,"impl-Distribution%3Cf32%3E-for-Open01"],[13715,"impl-Distribution%3Cf64%3E-for-Open01"],[13720,"impl-Distribution%3Cusize%3E-for-Standard"],[13721,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2340%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13722,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2347%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13723,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2344%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13724,"impl-Distribution%3CNonZero%3Cusize%3E%3E-for-Standard"],[13725,"impl-Distribution%3CNonZero%3Cu8%3E%3E-for-Standard"],[13726,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I)%3E-for-Standard"],[13727,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G)%3E-for-Standard"],[13728,"impl-Distribution%3C%5BT;+32%5D%3E-for-Standard"],[13729,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2339%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13730,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2351%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13731,"impl-Distribution%3Ci16%3E-for-Standard"],[13732,"impl-Distribution%3C(A,+B,+C,+D,+E)%3E-for-Standard"],[13733,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2343%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13734,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2354%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13735,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2334%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13736,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2335%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13737,"impl-Distribution%3Cchar%3E-for-Standard"],[13738,"impl-Distribution%3Ci128%3E-for-Standard"],[13739,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I,+J,+K,+L)%3E-for-Standard"],[13740,"impl-Distribution%3Cf32%3E-for-Standard"],[13741,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2333%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13742,"impl-Distribution%3CWrapping%3CT%3E%3E-for-Standard"],[13743,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2342%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13744,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2331%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13745,"impl-Distribution%3Cu64%3E-for-Standard"],[13746,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2338%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13747,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2328%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13748,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H)%3E-for-Standard"],[13749,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2329%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13750,"impl-Distribution%3CNonZero%3Cu32%3E%3E-for-Standard"],[13751,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2341%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13752,"impl-Distribution%3Cf64%3E-for-Standard"],[13753,"impl-Distribution%3C()%3E-for-Standard"],[13754,"impl-Distribution%3C(A,+B,+C)%3E-for-Standard"],[13755,"impl-Distribution%3C(A,+B,+C,+D)%3E-for-Standard"],[13756,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2349%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13757,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2350%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13758,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2332%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13759,"impl-Distribution%3CNonZero%3Cu128%3E%3E-for-Standard"],[13760,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2352%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13761,"impl-Distribution%3CNonZero%3Cu16%3E%3E-for-Standard"],[13762,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I,+J,+K)%3E-for-Standard"],[13763,"impl-Distribution%3Cbool%3E-for-Standard"],[13764,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2325%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13765,"impl-Distribution%3Ci32%3E-for-Standard"],[13766,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2355%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13767,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2327%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13768,"impl-Distribution%3Cisize%3E-for-Standard"],[13769,"impl-Distribution%3C(A,+B,+C,+D,+E,+F)%3E-for-Standard"],[13770,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2345%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13771,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2324%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13772,"impl-Distribution%3C(A,+B,+C,+D,+E,+F,+G,+H,+I,+J)%3E-for-Standard"],[13773,"impl-Distribution%3C(A,+B)%3E-for-Standard"],[13774,"impl-Distribution%3Cu128%3E-for-Standard"],[13775,"impl-Distribution%3Ci8%3E-for-Standard"],[13776,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2346%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13777,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2348%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13778,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2330%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13779,"impl-Distribution%3CNonZero%3Cu64%3E%3E-for-Standard"],[13780,"impl-Distribution%3COption%3CT%3E%3E-for-Standard"],[13781,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2337%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13782,"impl-Distribution%3Cu8%3E-for-Standard"],[13783,"impl-Distribution%3Cu16%3E-for-Standard"],[13784,"impl-Distribution%3Cu32%3E-for-Standard"],[13785,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2326%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13786,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2353%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13787,"impl-Distribution%3Ci64%3E-for-Standard"],[13788,"impl-Distribution%3C%5BT;+rand::::distributions::other::%7Bimpl%2336%7D::%7Bconstant%230%7D%5D%3E-for-Standard"],[13789,"impl-Distribution%3C(A,)%3E-for-Standard"],[13901,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13902,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13903,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13904,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13905,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13906,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13907,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13908,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13909,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13910,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13911,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13912,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13914,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13915,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13918,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13919,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13920,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13921,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13922,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13923,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13924,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13925,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13926,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13927,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13928,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13929,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13931,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13932,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13935,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13936,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13937,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13938,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13939,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13940,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13941,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13942,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13943,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13944,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13945,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13946,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13948,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13949,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13953,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13954,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13955,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13956,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13957,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13958,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[13959,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13960,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13961,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13962,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13963,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13964,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13965,"impl-UniformSampler-for-UniformFloat%3Cf32%3E"],[13966,"impl-UniformSampler-for-UniformFloat%3Cf64%3E"],[13968,"impl-UniformSampler-for-UniformInt%3Ci32%3E"],[13969,"impl-UniformSampler-for-UniformInt%3Cusize%3E"],[13970,"impl-UniformSampler-for-UniformInt%3Cu128%3E"],[13971,"impl-UniformSampler-for-UniformInt%3Ci128%3E"],[13972,"impl-UniformSampler-for-UniformInt%3Cisize%3E"],[13973,"impl-UniformSampler-for-UniformInt%3Ci64%3E"],[13974,"impl-UniformSampler-for-UniformInt%3Cu32%3E"],[13975,"impl-UniformSampler-for-UniformInt%3Ci8%3E"],[13976,"impl-UniformSampler-for-UniformInt%3Cu8%3E"],[13977,"impl-UniformSampler-for-UniformInt%3Cu64%3E"],[13978,"impl-UniformSampler-for-UniformInt%3Ci16%3E"],[13979,"impl-UniformSampler-for-UniformInt%3Cu16%3E"],[14141,"impl-Display-for-ReadError"],[14142,"impl-Debug-for-ReadError"],[14244,"impl-From%3CVec%3Cusize%3E%3E-for-IndexVec"],[14246,"impl-From%3CVec%3Cu32%3E%3E-for-IndexVec"],[14293,"impl-Display-for-OutOfRangeError"],[14294,"impl-Debug-for-OutOfRangeError"],[14317,"impl-Debug-for-Signature"],[14318,"impl-Display-for-Signature"],[14319,"impl-LowerHex-for-Signature"],[14327,"impl-Signature"],[14328,"impl-Serialize-for-Signature"],[14492,"impl-Debug-for-PrevoutsSizeError"],[14493,"impl-Display-for-PrevoutsSizeError"],[14494,"impl-Debug-for-PrevoutsKindError"],[14495,"impl-Display-for-PrevoutsKindError"],[14496,"impl-Display-for-PrevoutsIndexError"],[14497,"impl-Debug-for-PrevoutsIndexError"],[14498,"impl-Display-for-InvalidSighashTypeError"],[14499,"impl-Debug-for-InvalidSighashTypeError"],[14500,"impl-Debug-for-NonStandardSighashTypeError"],[14501,"impl-Display-for-NonStandardSighashTypeError"],[14502,"impl-Debug-for-SighashTypeParseError"],[14503,"impl-Display-for-SighashTypeParseError"],[14505,"impl-Display-for-TaprootError"],[14506,"impl-Debug-for-TaprootError"],[14507,"impl-Debug-for-P2wpkhError"],[14508,"impl-Display-for-P2wpkhError"],[14509,"impl-Debug-for-SingleMissingOutputError"],[14510,"impl-Display-for-SingleMissingOutputError"],[14511,"impl-Display-for-AnnexError"],[14512,"impl-Debug-for-AnnexError"],[14513,"impl-Display-for-SigningDataError%3CE%3E"],[14514,"impl-Debug-for-SigningDataError%3CE%3E"],[14527,"impl-From%3CPrevoutsSizeError%3E-for-TaprootError"],[14528,"impl-From%3CPrevoutsIndexError%3E-for-TaprootError"],[14529,"impl-From%3CInfallible%3E-for-TaprootError"],[14530,"impl-From%3CPrevoutsKindError%3E-for-TaprootError"],[14532,"impl-From%3CInputsIndexError%3E-for-TaprootError"],[14533,"impl-From%3CInputsIndexError%3E-for-P2wpkhError"],[14535,"impl-From%3CInfallible%3E-for-P2wpkhError"],[14539,"impl-From%3CInfallible%3E-for-SigningDataError%3CE%3E"],[14541,"impl-From%3CError%3E-for-SigningDataError%3CE%3E"],[14706,"impl-Debug-for-MessageSignatureError"],[14707,"impl-Display-for-MessageSignatureError"],[14708,"impl-Debug-for-MessageSignature"],[14709,"impl-Display-for-MessageSignature"],[14711,"impl-From%3CError%3E-for-MessageSignatureError"],[14712,"impl-From%3CInfallible%3E-for-MessageSignatureError"],[14957,"impl-Display-for-SigFromSliceError"],[14958,"impl-Debug-for-SigFromSliceError"],[14962,"impl-Display-for-IncompleteBuilderError"],[14963,"impl-Debug-for-IncompleteBuilderError"],[14964,"impl-Display-for-HiddenNodesError"],[14965,"impl-Debug-for-HiddenNodesError"],[14972,"impl-Display-for-FutureLeafVersion"],[14973,"impl-Debug-for-FutureLeafVersion"],[14974,"impl-LowerHex-for-FutureLeafVersion"],[14975,"impl-UpperHex-for-FutureLeafVersion"],[14976,"impl-Display-for-LeafVersion"],[14977,"impl-LowerHex-for-LeafVersion"],[14978,"impl-Debug-for-LeafVersion"],[14979,"impl-UpperHex-for-LeafVersion"],[14980,"impl-Display-for-TaprootBuilderError"],[14981,"impl-Debug-for-TaprootBuilderError"],[14982,"impl-Debug-for-TaprootError"],[14983,"impl-Display-for-TaprootError"],[14987,"impl-From%3CInvalidSighashTypeError%3E-for-SigFromSliceError"],[14988,"impl-From%3CInfallible%3E-for-SigFromSliceError"],[14990,"impl-From%3CError%3E-for-SigFromSliceError"],[14991,"impl-From%3C%5BTapNodeHash;+2%5D%3E-for-TaprootMerkleBranch"],[14992,"impl-From%3C%5BTapNodeHash;+98%5D%3E-for-TaprootMerkleBranch"],[14993,"impl-From%3C%5BTapNodeHash;+45%5D%3E-for-TaprootMerkleBranch"],[14994,"impl-From%3C%5BTapNodeHash;+38%5D%3E-for-TaprootMerkleBranch"],[14995,"impl-From%3C%5BTapNodeHash;+60%5D%3E-for-TaprootMerkleBranch"],[14996,"impl-From%3C%5BTapNodeHash;+121%5D%3E-for-TaprootMerkleBranch"],[14997,"impl-From%3C%5BTapNodeHash;+70%5D%3E-for-TaprootMerkleBranch"],[14998,"impl-From%3C%5BTapNodeHash;+69%5D%3E-for-TaprootMerkleBranch"],[14999,"impl-From%3C%5BTapNodeHash;+25%5D%3E-for-TaprootMerkleBranch"],[15000,"impl-From%3C%5BTapNodeHash;+84%5D%3E-for-TaprootMerkleBranch"],[15001,"impl-From%3C%5BTapNodeHash;+65%5D%3E-for-TaprootMerkleBranch"],[15002,"impl-From%3C%5BTapNodeHash;+85%5D%3E-for-TaprootMerkleBranch"],[15003,"impl-From%3C%5BTapNodeHash;+96%5D%3E-for-TaprootMerkleBranch"],[15004,"impl-From%3C%5BTapNodeHash;+46%5D%3E-for-TaprootMerkleBranch"],[15005,"impl-From%3C%5BTapNodeHash;+61%5D%3E-for-TaprootMerkleBranch"],[15006,"impl-From%3C%5BTapNodeHash;+119%5D%3E-for-TaprootMerkleBranch"],[15007,"impl-From%3C%5BTapNodeHash;+7%5D%3E-for-TaprootMerkleBranch"],[15008,"impl-From%3C%5BTapNodeHash;+27%5D%3E-for-TaprootMerkleBranch"],[15009,"impl-From%3C%5BTapNodeHash;+11%5D%3E-for-TaprootMerkleBranch"],[15010,"impl-From%3C%5BTapNodeHash;+112%5D%3E-for-TaprootMerkleBranch"],[15011,"impl-From%3C%5BTapNodeHash;+72%5D%3E-for-TaprootMerkleBranch"],[15012,"impl-From%3C%5BTapNodeHash;+56%5D%3E-for-TaprootMerkleBranch"],[15013,"impl-From%3C%5BTapNodeHash;+40%5D%3E-for-TaprootMerkleBranch"],[15014,"impl-From%3C%5BTapNodeHash;+35%5D%3E-for-TaprootMerkleBranch"],[15015,"impl-From%3C%5BTapNodeHash;+125%5D%3E-for-TaprootMerkleBranch"],[15016,"impl-From%3C%5BTapNodeHash;+50%5D%3E-for-TaprootMerkleBranch"],[15017,"impl-From%3C%5BTapNodeHash;+58%5D%3E-for-TaprootMerkleBranch"],[15018,"impl-From%3C%5BTapNodeHash;+77%5D%3E-for-TaprootMerkleBranch"],[15019,"impl-From%3C%5BTapNodeHash;+1%5D%3E-for-TaprootMerkleBranch"],[15020,"impl-From%3C%5BTapNodeHash;+42%5D%3E-for-TaprootMerkleBranch"],[15021,"impl-From%3C%5BTapNodeHash;+99%5D%3E-for-TaprootMerkleBranch"],[15022,"impl-From%3C%5BTapNodeHash;+115%5D%3E-for-TaprootMerkleBranch"],[15023,"impl-From%3C%5BTapNodeHash;+83%5D%3E-for-TaprootMerkleBranch"],[15024,"impl-From%3C%5BTapNodeHash;+15%5D%3E-for-TaprootMerkleBranch"],[15025,"impl-From%3C%5BTapNodeHash;+97%5D%3E-for-TaprootMerkleBranch"],[15026,"impl-From%3C%5BTapNodeHash;+43%5D%3E-for-TaprootMerkleBranch"],[15027,"impl-From%3C%5BTapNodeHash;+13%5D%3E-for-TaprootMerkleBranch"],[15028,"impl-From%3C%5BTapNodeHash;+36%5D%3E-for-TaprootMerkleBranch"],[15029,"impl-From%3C%5BTapNodeHash;+123%5D%3E-for-TaprootMerkleBranch"],[15030,"impl-From%3C%5BTapNodeHash;+81%5D%3E-for-TaprootMerkleBranch"],[15031,"impl-From%3C%5BTapNodeHash;+19%5D%3E-for-TaprootMerkleBranch"],[15032,"impl-From%3C%5BTapNodeHash;+91%5D%3E-for-TaprootMerkleBranch"],[15033,"impl-From%3C%5BTapNodeHash;+78%5D%3E-for-TaprootMerkleBranch"],[15034,"impl-From%3C%5BTapNodeHash;+122%5D%3E-for-TaprootMerkleBranch"],[15035,"impl-From%3C%5BTapNodeHash;+105%5D%3E-for-TaprootMerkleBranch"],[15036,"impl-From%3C%5BTapNodeHash;+12%5D%3E-for-TaprootMerkleBranch"],[15037,"impl-From%3C%5BTapNodeHash;+18%5D%3E-for-TaprootMerkleBranch"],[15038,"impl-From%3C%5BTapNodeHash;+90%5D%3E-for-TaprootMerkleBranch"],[15039,"impl-From%3C%5BTapNodeHash;+14%5D%3E-for-TaprootMerkleBranch"],[15040,"impl-From%3C%5BTapNodeHash;+48%5D%3E-for-TaprootMerkleBranch"],[15041,"impl-From%3C%5BTapNodeHash;+126%5D%3E-for-TaprootMerkleBranch"],[15042,"impl-From%3C%5BTapNodeHash;+117%5D%3E-for-TaprootMerkleBranch"],[15043,"impl-From%3C%5BTapNodeHash;+34%5D%3E-for-TaprootMerkleBranch"],[15044,"impl-From%3C%5BTapNodeHash;+109%5D%3E-for-TaprootMerkleBranch"],[15045,"impl-From%3C%5BTapNodeHash;+116%5D%3E-for-TaprootMerkleBranch"],[15046,"impl-From%3C%5BTapNodeHash;+67%5D%3E-for-TaprootMerkleBranch"],[15047,"impl-From%3C%5BTapNodeHash;+120%5D%3E-for-TaprootMerkleBranch"],[15048,"impl-From%3C%5BTapNodeHash;+80%5D%3E-for-TaprootMerkleBranch"],[15049,"impl-From%3C%5BTapNodeHash;+76%5D%3E-for-TaprootMerkleBranch"],[15050,"impl-From%3C%5BTapNodeHash;+6%5D%3E-for-TaprootMerkleBranch"],[15051,"impl-From%3C%5BTapNodeHash;+51%5D%3E-for-TaprootMerkleBranch"],[15052,"impl-From%3C%5BTapNodeHash;+16%5D%3E-for-TaprootMerkleBranch"],[15053,"impl-From%3C%5BTapNodeHash;+47%5D%3E-for-TaprootMerkleBranch"],[15054,"impl-From%3C%5BTapNodeHash;+66%5D%3E-for-TaprootMerkleBranch"],[15055,"impl-From%3C%5BTapNodeHash;+37%5D%3E-for-TaprootMerkleBranch"],[15056,"impl-From%3C%5BTapNodeHash;+28%5D%3E-for-TaprootMerkleBranch"],[15057,"impl-From%3C%5BTapNodeHash;+89%5D%3E-for-TaprootMerkleBranch"],[15058,"impl-From%3C%5BTapNodeHash;+8%5D%3E-for-TaprootMerkleBranch"],[15059,"impl-From%3C%5BTapNodeHash;+54%5D%3E-for-TaprootMerkleBranch"],[15060,"impl-From%3C%5BTapNodeHash;+108%5D%3E-for-TaprootMerkleBranch"],[15061,"impl-From%3C%5BTapNodeHash;+106%5D%3E-for-TaprootMerkleBranch"],[15062,"impl-From%3C%5BTapNodeHash;+29%5D%3E-for-TaprootMerkleBranch"],[15063,"impl-From%3C%5BTapNodeHash;+44%5D%3E-for-TaprootMerkleBranch"],[15064,"impl-From%3C%5BTapNodeHash;+0%5D%3E-for-TaprootMerkleBranch"],[15065,"impl-From%3C%5BTapNodeHash;+104%5D%3E-for-TaprootMerkleBranch"],[15066,"impl-From%3C%5BTapNodeHash;+94%5D%3E-for-TaprootMerkleBranch"],[15067,"impl-From%3C%5BTapNodeHash;+32%5D%3E-for-TaprootMerkleBranch"],[15068,"impl-From%3C%5BTapNodeHash;+5%5D%3E-for-TaprootMerkleBranch"],[15069,"impl-From%3C%5BTapNodeHash;+31%5D%3E-for-TaprootMerkleBranch"],[15070,"impl-From%3C%5BTapNodeHash;+21%5D%3E-for-TaprootMerkleBranch"],[15071,"impl-From%3C%5BTapNodeHash;+62%5D%3E-for-TaprootMerkleBranch"],[15072,"impl-From%3C%5BTapNodeHash;+75%5D%3E-for-TaprootMerkleBranch"],[15073,"impl-From%3C%5BTapNodeHash;+110%5D%3E-for-TaprootMerkleBranch"],[15074,"impl-From%3C%5BTapNodeHash;+124%5D%3E-for-TaprootMerkleBranch"],[15075,"impl-From%3C%5BTapNodeHash;+118%5D%3E-for-TaprootMerkleBranch"],[15076,"impl-From%3C%5BTapNodeHash;+100%5D%3E-for-TaprootMerkleBranch"],[15077,"impl-From%3C%5BTapNodeHash;+41%5D%3E-for-TaprootMerkleBranch"],[15078,"impl-From%3C%5BTapNodeHash;+92%5D%3E-for-TaprootMerkleBranch"],[15079,"impl-From%3C%5BTapNodeHash;+39%5D%3E-for-TaprootMerkleBranch"],[15080,"impl-From%3C%5BTapNodeHash;+30%5D%3E-for-TaprootMerkleBranch"],[15081,"impl-From%3C%5BTapNodeHash;+71%5D%3E-for-TaprootMerkleBranch"],[15082,"impl-From%3C%5BTapNodeHash;+10%5D%3E-for-TaprootMerkleBranch"],[15083,"impl-From%3C%5BTapNodeHash;+95%5D%3E-for-TaprootMerkleBranch"],[15084,"impl-From%3C%5BTapNodeHash;+102%5D%3E-for-TaprootMerkleBranch"],[15085,"impl-From%3C%5BTapNodeHash;+24%5D%3E-for-TaprootMerkleBranch"],[15086,"impl-From%3C%5BTapNodeHash;+26%5D%3E-for-TaprootMerkleBranch"],[15087,"impl-From%3C%5BTapNodeHash;+23%5D%3E-for-TaprootMerkleBranch"],[15088,"impl-From%3C%5BTapNodeHash;+68%5D%3E-for-TaprootMerkleBranch"],[15089,"impl-From%3C%5BTapNodeHash;+128%5D%3E-for-TaprootMerkleBranch"],[15090,"impl-From%3C%5BTapNodeHash;+57%5D%3E-for-TaprootMerkleBranch"],[15091,"impl-From%3C%5BTapNodeHash;+87%5D%3E-for-TaprootMerkleBranch"],[15092,"impl-From%3C%5BTapNodeHash;+9%5D%3E-for-TaprootMerkleBranch"],[15093,"impl-From%3C%5BTapNodeHash;+74%5D%3E-for-TaprootMerkleBranch"],[15094,"impl-From%3C%5BTapNodeHash;+3%5D%3E-for-TaprootMerkleBranch"],[15095,"impl-From%3C%5BTapNodeHash;+63%5D%3E-for-TaprootMerkleBranch"],[15096,"impl-From%3C%5BTapNodeHash;+127%5D%3E-for-TaprootMerkleBranch"],[15097,"impl-From%3C%5BTapNodeHash;+101%5D%3E-for-TaprootMerkleBranch"],[15098,"impl-From%3C%5BTapNodeHash;+86%5D%3E-for-TaprootMerkleBranch"],[15099,"impl-From%3C%5BTapNodeHash;+53%5D%3E-for-TaprootMerkleBranch"],[15100,"impl-From%3C%5BTapNodeHash;+82%5D%3E-for-TaprootMerkleBranch"],[15101,"impl-From%3C%5BTapNodeHash;+59%5D%3E-for-TaprootMerkleBranch"],[15102,"impl-From%3C%5BTapNodeHash;+111%5D%3E-for-TaprootMerkleBranch"],[15103,"impl-From%3C%5BTapNodeHash;+64%5D%3E-for-TaprootMerkleBranch"],[15104,"impl-From%3C%5BTapNodeHash;+4%5D%3E-for-TaprootMerkleBranch"],[15105,"impl-From%3C%5BTapNodeHash;+113%5D%3E-for-TaprootMerkleBranch"],[15106,"impl-From%3C%5BTapNodeHash;+49%5D%3E-for-TaprootMerkleBranch"],[15107,"impl-From%3C%5BTapNodeHash;+22%5D%3E-for-TaprootMerkleBranch"],[15108,"impl-From%3C%5BTapNodeHash;+52%5D%3E-for-TaprootMerkleBranch"],[15109,"impl-From%3C%5BTapNodeHash;+20%5D%3E-for-TaprootMerkleBranch"],[15110,"impl-From%3C%5BTapNodeHash;+114%5D%3E-for-TaprootMerkleBranch"],[15111,"impl-From%3C%5BTapNodeHash;+17%5D%3E-for-TaprootMerkleBranch"],[15112,"impl-From%3C%5BTapNodeHash;+73%5D%3E-for-TaprootMerkleBranch"],[15113,"impl-From%3C%5BTapNodeHash;+103%5D%3E-for-TaprootMerkleBranch"],[15114,"impl-From%3C%5BTapNodeHash;+55%5D%3E-for-TaprootMerkleBranch"],[15115,"impl-From%3C%5BTapNodeHash;+88%5D%3E-for-TaprootMerkleBranch"],[15117,"impl-From%3C%5BTapNodeHash;+93%5D%3E-for-TaprootMerkleBranch"],[15118,"impl-From%3C%5BTapNodeHash;+79%5D%3E-for-TaprootMerkleBranch"],[15119,"impl-From%3C%5BTapNodeHash;+33%5D%3E-for-TaprootMerkleBranch"],[15120,"impl-From%3C%5BTapNodeHash;+107%5D%3E-for-TaprootMerkleBranch"],[15184,"impl-IntoIterator-for-%26mut+TaprootMerkleBranch"],[15185,"impl-IntoIterator-for-TaprootMerkleBranch"],[15186,"impl-IntoIterator-for-%26TaprootMerkleBranch"],[15235,"impl-Signature"],[15236,"impl-Serialize-for-Signature"],[15237,"impl-Serialize-for-TaprootMerkleBranch"],[15238,"impl-TaprootMerkleBranch"],[15242,"impl-Serialize-for-ControlBlock"],[15243,"impl-ControlBlock"],[15289,"impl-TryFrom%3CSerializedSignature%3E-for-Signature"],[15290,"impl-TryFrom%3C%26SerializedSignature%3E-for-Signature"],[15294,"impl-TryFrom%3CVec%3CTapNodeHash%3E%3E-for-TaprootMerkleBranch"],[15295,"impl-TryFrom%3CBox%3C%5BTapNodeHash%5D%3E%3E-for-TaprootMerkleBranch"],[15296,"impl-TryFrom%3C%26%5BTapNodeHash%5D%3E-for-TaprootMerkleBranch"],[15302,"impl-TryFrom%3CTaprootBuilder%3E-for-TapTree"],[15303,"impl-TryFrom%3CNodeInfo%3E-for-TapTree"],[15419,"impl-PartialEq%3C%5Bu8%5D%3E-for-SerializedSignature"],[15420,"impl-PartialEq-for-SerializedSignature"],[15423,"impl-Display-for-SerializedSignature"],[15424,"impl-Debug-for-SerializedSignature"],[15426,"impl-From%3CSignature%3E-for-SerializedSignature"],[15428,"impl-From%3C%26Signature%3E-for-SerializedSignature"],[15435,"impl-IntoIterator-for-%26SerializedSignature"],[15436,"impl-IntoIterator-for-SerializedSignature"],[15442,"impl-PartialOrd%3C%5Bu8%5D%3E-for-SerializedSignature"],[15443,"impl-PartialOrd-for-SerializedSignature"],[15483,"impl-From%3CChangeSet%3E-for-ChangeSet%3CA,+ChangeSet%3E"],[15485,"impl-From%3CChangeSet%3CA%3E%3E-for-ChangeSet%3CA,+IA%3E"],[15530,"impl-KeychainTxOutIndex%3CK%3E"],[15531,"impl-Indexer-for-KeychainTxOutIndex%3CK%3E"],[15550,"impl-Display-for-InsertDescriptorError%3CK%3E"],[15551,"impl-Debug-for-InsertDescriptorError%3CK%3E"],[15716,"impl-Display-for-MissingGenesisError"],[15717,"impl-Debug-for-MissingGenesisError"],[15718,"impl-Display-for-AlterCheckPointError"],[15719,"impl-Debug-for-AlterCheckPointError"],[15720,"impl-Display-for-CannotConnectError"],[15721,"impl-Debug-for-CannotConnectError"],[15722,"impl-Debug-for-ApplyHeaderError"],[15723,"impl-Display-for-ApplyHeaderError"],[15734,"impl-FromIterator%3C(u32,+Option%3CBlockHash%3E)%3E-for-ChangeSet"],[15735,"impl-FromIterator%3C(u32,+BlockHash)%3E-for-ChangeSet"],[15851,"impl-Debug-for-SyncItem%3C\'i,+I%3E"],[15852,"impl-Display-for-SyncItem%3C\'i,+I%3E"],[16023,"impl-Display-for-CalculateFeeError"],[16024,"impl-Debug-for-CalculateFeeError"]],"c":"OjAAAAEAAAAAADYAEAAAACkCKwJHBL8H1gfaB/4HIwq5CusN7Q3uDe8N9Q33DfgN+Q0wFDEUMhQzFBgWYRyWHBYdIh2GII0gYCZlJhIqEyrVK+sw+TD6MKIxsTHCMWIyYzJkMmUycDKsMiE2tza4Nrk2vDa/Ni83MDfNOU47","e":"OjAAAAEAAAAAAIIpEAAAAAAARmw9/P//9////n/w+f77//n/PA5kzoYAABwQcR/56f/+B////+D//T8AAAAAAAAAAAAAAAAAAAAAAAAAf/z/3///fQEAgP//////PwD4/////////////////////0MDAID//////////////////////////wHw/////39+////////94B/+P///////////9///////////////////wbw7///////////////////////f4Ce6N1b5vH3mrFf745JJJTnwP//Afj/PwACAAAAAPR/zv//f/7///8fAID////////H////AwAAAAAAAAAQAAAAAAQAAP8BAAAAAAD+//////8f+H8AwAMA//t//v//OwT8HwD8/x8AD/7///////9jAAAwMP//////AwDh////////////////////f8D/////////AQP4////////BwAAAAAAAPD/////////////9///N38HOADg////////////AwAAAACA9/87+P/w7x0wHvz8Pzz//////3/Az//x///+8X//HzQIgH8E8AfEG6rD/xgAAAbB/ucf8I8f8P8/8P8AwP8DAMD/H8H//wGA/z/4v+MDwP8vQP4HwP//AQAAcPB4GcC/AAAAAAAAwNf/P/7/9wH4///+D/T4AAB8Hv/8PwD+////AQAA8P//AJTcfw8AAADA////8/8P/v///f8f6C4EAAB8OP7//4///////8H/D/A/HwDw4D/8/z/A///M/w8A/P8HAP7///D//+D3/wfg8x//D+D/f+D/GeAfAP+7+f8BmPP/v////+//////ZcBPAHztf/9//z8AgP//HQ4YAADg/////wAAAAAP/////wMA/P9/Bvj5///H//9rcQ/y93EANAAAAR/4wz//+P////8HAAAA4P//f/7/Rw2wx//veQAAYP7/Pxr7CQCA/////////3/SAc4B8P//8f//////AQD8//////7///8fBwA+AAD//4O///////MHAOD/P/k/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOA4/v+f///3/7//E//////////////////////////////////////////////9//////l/AeAA/gYA8P8P/////w/A//wBAAD8////Bv7/HwAAwP////v//78EAgCB////9+MHxj0AgPADAPiOAADA/wEA/KYAwH8FAOD/PwAAAAAfCP4B////E4C9//9/wP////+nOwr+/h+A/////7eB////AQAAAAAA8P//m9//AADw//u//7//GEMALH7++I/////HAjzw/wD2D+Bv/AEAAMPz/////+TP//8FAQAAAAAAAAAAAAAAAAAA/DcBAAAA1gcAAPA3ICRFqkrkAAAA4P////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////z///8BAAAAAAAA+P///xv/f/j/////////////////////////BwAAAMAhAMAfAAx4IAAACA/w/////+TP///4///7////m1g/x7////v///+X33/+3//O7z/////kz/8//////0/+/P/P//8/+fP/j/f/////I12G/f/fAAAAgP///v/////9/gOLAAAA+P/9/z////T////73wAAAAAA8////////z/I9//7//////8X8m0HQHwAAPABABcAH/z/f///////8f8BAM//u4B/DwD//8P/PwAA4P//////////M+gAMOx///8PAP//zwD/BwAAAADA/3/4//+HAP+//wcA/////xEg/88B/v/ffw7474f///f////w8N6/94D/////////B/ADAMD///8PgN////8AAP6f+x9/AAAAAAAAAAAAAAAA4P////////n8////5///PUy3Kh8AgAdw/AD4/9//////H/b/AQDA////j4Gd988BAAAAAGjh/////////+Afft///////4A6swDY/zkAAPg/UO3////////v/wEA8O8x6sPD//7f3//PBjyMHzz//4+P34P9//9/wMNx/x8EAOD/B////3/wg/9/QPh+AOAT/v/f//3///////C3bzf/593D/wGgf///9/tDWXxBlf//BzA8AECQeAAA+P//////////AzAAQKD///////////9//r//////5/8BwP//D8D/v/9////8//7///+Bnw8AAAAAAPD//z+G//9//P8B3v9///EPAxBOj/+/AIZ5/p//+u3/uf4AAAAAAADA////////////////////DwRv2QMAAID9H/7///3///////v/B/DvfyNA/w8AAAAAAADA/P///////////3/Yf/7//////+////+x////////////////////32MCCvw/AACADwAAPPB/YC/44///H398/v//P///5///gB//nv7/L3H/+geI/1cA9nsAAPD//wMLAgAAIP/j4MCfI4AjAQD8///v/5+AIQAL/f/7fz8A+P8H4Pv/JQgAAEjk8P8P/v8DAADy//P/v//jJwAAABa04Qd//gDw/wMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA","a":{"is_coin_base":[1959],"ntxid":[966],"read_to_end":[10662],"txid":[967],"wtxid":[969]}}],\ +["bdk_core",{"t":"FFFFIIKFOENONNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNMNNMNNNNNNNODNNCNNNNNNNNNNNNNNNNOONNNNNNNNNNFFFPPGFFFFPNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNOONNNNONONNNNNNNNNNNNNNNNNNNNNNNNOONOONNNNNNNNNNNNNNNN","n":["BlockId","CheckPoint","CheckPointIter","ConfirmationBlockTime","Indexed","KeychainIndexed","Merge","TxUpdate","anchors","bitcoin","block_id","block_id","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","confirmation_time","default","default","default","deserialize","deserialize","eq","eq","eq","eq_ptr","extend","extend","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_block_ids","from_header","get","hash","hash","hash","hash","height","height","insert","into","into","into","into","into","into_iter","into_iter","is_empty","iter","map_anchors","merge","new","next","partial_cmp","partial_cmp","prev","push","range","seen_ats","serde","serialize","serialize","spk_client","take","take","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","txouts","txs","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","FullScanRequest","FullScanRequestBuilder","FullScanResponse","OutPoint","Spk","SyncItem","SyncProgress","SyncRequest","SyncRequestBuilder","SyncResponse","Txid","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","builder","builder","chain_tip","chain_tip","chain_tip","chain_tip","chain_update","chain_update","clone","clone","clone_into","clone_into","cmp","consumed","default","default","default","default","default","default","eq","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","hash","inspect","inspect","into","into","into","into","into","into","into","into","iter_outpoints","iter_spks","iter_spks","iter_txids","keychains","last_active_indices","next_outpoint","next_spk","next_spk","next_txid","outpoints","outpoints_consumed","outpoints_remaining","partial_cmp","progress","remaining","spks","spks_consumed","spks_for_keychain","spks_remaining","spks_with_indexes","to_owned","to_owned","to_string","total","total_outpoints","total_spks","total_txids","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_update","tx_update","txids","txids_consumed","txids_remaining","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"bdk_core"],[116,"bdk_core::spk_client"],[257,"bdk_core::checkpoint"],[258,"bdk_core::block_id"],[259,"bdk_core::tx_update"],[260,"core::clone"],[261,"core::cmp"],[262,"core::result"],[263,"serde::de"],[264,"core::iter::traits::collect"],[265,"core::fmt"],[266,"bitcoin::blockdata::block"],[267,"core::option"],[268,"core::hash"],[269,"bdk_core::merge"],[270,"core::ops::function"],[271,"core::iter::traits::iterator"],[272,"core::ops::range"],[273,"serde::ser"],[274,"core::any"],[275,"core::marker"],[276,"bitcoin::blockdata::script::borrowed"],[277,"bitcoin::blockdata::transaction"],[278,"core::iter::traits::exact_size"],[279,"bitcoin::blockdata::script::owned"],[280,"alloc::vec"],[281,"alloc::string"]],"i":[0,0,0,0,0,0,0,0,6,0,1,5,26,3,5,1,6,26,3,5,1,6,3,5,1,6,3,5,1,6,3,5,5,3,5,6,3,5,3,5,1,1,1,6,3,5,1,6,26,3,3,3,5,1,6,1,1,1,3,5,1,3,1,3,1,26,3,5,1,6,26,1,25,1,6,25,1,26,3,5,1,1,1,6,0,3,5,0,25,25,3,5,1,6,26,3,5,1,6,26,3,5,1,6,6,6,26,3,5,1,6,26,3,5,1,6,0,0,0,37,37,0,0,0,0,0,37,33,34,35,36,37,38,40,41,33,34,35,36,37,38,40,41,33,35,34,36,33,34,35,36,40,41,37,38,37,38,37,38,33,34,35,36,40,41,37,37,37,38,40,41,33,34,34,35,36,36,37,38,40,41,37,33,35,33,34,35,36,37,38,40,41,34,34,36,34,36,41,34,34,36,34,33,38,38,37,34,38,33,38,35,38,33,37,38,37,38,38,38,38,33,34,35,36,37,38,40,41,33,34,35,36,37,38,40,41,40,41,33,38,38,33,34,35,36,37,38,40,41,33,34,35,36,37,38,40,41],"f":"``````````{{{d{b}}}f}`{{{d{c}}}{{d{e}}}{}{}}0000{{{d{hc}}}{{d{he}}}{}{}}0000{{{d{f}}}f}{{{d{j}}}j}{{{d{b}}}b}{{{d{{l{c}}}}}{{l{c}}}n}{{{d{c}}{d{he}}}A`{}{}}000{{{d{f}}{d{f}}}Ab}{{{d{j}}{d{j}}}Ab}`{{}f}{{}j}{{}{{l{c}}}{}}{c{{Ad{f}}}Af}{c{{Ad{j}}}Af}{{{d{f}}{d{f}}}Ah}{{{d{j}}{d{j}}}Ah}{{{d{b}}{d{b}}}Ah}0{{bc}{{Ad{bb}}}{{Al{}{{Aj{f}}}}}}{{{d{h{l{c}}}}{l{c}}}A`An}{{{d{f}}{d{hB`}}}Bb}{{{d{j}}{d{hB`}}}Bb}{{{d{b}}{d{hB`}}}Bb}{{{d{{l{c}}}}{d{hB`}}}BbBd}{cc{}}{{{Bj{BfBh}}}f}{{{Bj{{d{Bf}}{d{Bh}}}}}f}2222{c{{Ad{b{Bl{b}}}}}{{Al{}{{Aj{f}}}}}}{{{d{Bn}}Bf}b}{{{d{b}}Bf}{{Bl{b}}}}{{{d{f}}{d{hc}}}A`C`}{{{d{j}}{d{hc}}}A`C`}{{{d{b}}}Bh}`{{{d{b}}}Bf}`{{bf}b}{ce{}{}}00000{bc{}}{{{d{Cb}}}Ah}{{{d{b}}}Cd}{{{l{c}}g}{{l{e}}}AnAn{{Ch{c}{{Cf{e}}}}}}{{{d{hCb}}Cb}A`}{fb}{{{d{hCd}}}{{Bl{c}}}{}}{{{d{f}}{d{f}}}{{Bl{Ab}}}}{{{d{j}}{d{j}}}{{Bl{Ab}}}}{{{d{b}}}{{Bl{b}}}}{{bf}{{Ad{bb}}}}{{{d{b}}c}{{`{{Cj{}{{Aj{b}}}}}}}{{Cl{Bf}}}}``{{{d{f}}c}AdCn}{{{d{j}}c}AdCn}`{{{d{hCb}}}{{Bl{Cb}}}}0{{{d{c}}}e{}{}}000{c{{Ad{e}}}{}{}}000000000``{{{d{c}}}D`{}}0000{ce{}{}}0000```````````{{{d{c}}}{{d{e}}}{}{}}0000000{{{d{hc}}}{{d{he}}}{}{}}0000000{{{Db{c}}}{{Dd{c}}}{}}{{{Df{c}}}{{Dh{c}}}An}{{}{{Db{c}}}{}}{{}{{Df{c}}}{Ann}}{{{Db{c}}b}{{Db{c}}}{}}{{{d{{Dd{c}}}}}{{Bl{b}}}{}}{{{Df{c}}b}{{Df{c}}}An}{{{d{{Dh{c}}}}}{{Bl{b}}}{Ann}}``{{{d{{Dj{c}}}}}{{Dj{c}}}n}{{{d{Dl}}}Dl}{{{d{c}}{d{he}}}A`{}{}}0{{{d{{Dj{c}}}}{d{{Dj{c}}}}}AbAn}{{{d{Dl}}}Dn}:{{}{{Dd{c}}}{}}{{}{{Df{c}}}{}}{{}{{Dh{c}}}{}}{{}{{E`{c}}}{}}{{}{{Eb{ce}}}{}{}}{{{d{{Dj{c}}}}{d{{Dj{c}}}}}AhEd}{{{d{{Dj{c}}}}{d{hB`}}}Bb{BdEf}}{{{d{{Dj{c}}}}{d{hB`}}}BbBd}{{{d{Dl}}{d{hB`}}}Bb}{{{d{{E`{c}}}}{d{hB`}}}BbBd}{{{d{{Eb{ce}}}}{d{hB`}}}BbBdBd}{cc{}}{{{Db{c}}}{{Dd{c}}}{}}11{{{Df{c}}}{{Dh{c}}}{}}22222{{{d{{Dj{c}}}}{d{he}}}A`EhC`}{{{Db{c}}e}{{Db{c}}}{}{{Ch{{Dj{c}}Dl}}Ej}}{{{Df{c}}e}{{Df{c}}}An{{Ch{cBf{d{El}}}}Ej}}{ce{}{}}0000000{{{d{h{Dd{c}}}}}{{`{{F`{}{{Aj{En}}}}}}}{}}{{{d{h{Dd{c}}}}}{{`{{F`{}{{Aj{Fb}}}}}}}{}}{{{d{h{Dh{c}}}}c}{{`{{Cj{}{{Aj{{Fd{Fb}}}}}}}}}{Ann}}{{{d{h{Dd{c}}}}}{{`{{F`{}{{Aj{Ff}}}}}}}{}}{{{d{{Dh{c}}}}}{{Fh{c}}}{Ann}}`{{{d{h{Dd{c}}}}}{{Bl{En}}}{}}{{{d{h{Dd{c}}}}}{{Bl{Fb}}}{}}{{{d{h{Dh{c}}}}c}{{Bl{{Fd{Fb}}}}}{Ann}}{{{d{h{Dd{c}}}}}{{Bl{Ff}}}{}}{{{Db{c}}e}{{Db{c}}}{}{{Al{}{{Aj{En}}}}}}``{{{d{{Dj{c}}}}{d{{Dj{c}}}}}{{Bl{Ab}}}Fj}{{{d{{Dd{c}}}}}Dl{}}{{{d{Dl}}}Dn}{{{Db{A`}}c}{{Db{A`}}}{{Al{}{{Aj{Fb}}}}}}`{{{Df{c}}cg}{{Df{c}}}An{{Cj{}{{Aj{{Fd{Fb}}}}}}Ej}{{Al{}{{Fl{e}}}}}}`{{{Db{c}}e}{{Db{c}}}{}{{Al{}{{Aj{{Bj{cFb}}}}}}}}{{{d{c}}}e{}{}}0{{{d{c}}}Fn{}}5555{c{{Ad{e}}}{}{}}000000000000000``{{{Db{c}}e}{{Db{c}}}{}{{Al{}{{Aj{Ff}}}}}}``{{{d{c}}}D`{}}0000000{ce{}{}}0000000","D":"Nj","p":[[5,"CheckPoint",0,257],[1,"reference"],[5,"BlockId",0,258],[0,"mut"],[5,"ConfirmationBlockTime",0,258],[5,"TxUpdate",0,259],[10,"Clone",260],[1,"unit"],[6,"Ordering",261],[6,"Result",262],[10,"Deserializer",263],[1,"bool"],[17,"Item"],[10,"IntoIterator",264],[10,"Ord",261],[5,"Formatter",265],[8,"Result",265],[10,"Debug",265],[1,"u32"],[5,"BlockHash",266],[1,"tuple"],[6,"Option",267],[5,"Header",266],[10,"Hasher",268],[10,"Merge",0,269],[5,"CheckPointIter",0,257],[17,"Output"],[10,"FnMut",270],[10,"Iterator",271],[10,"RangeBounds",272],[10,"Serializer",273],[5,"TypeId",274],[5,"SyncRequestBuilder",116],[5,"SyncRequest",116],[5,"FullScanRequestBuilder",116],[5,"FullScanRequest",116],[6,"SyncItem",116],[5,"SyncProgress",116],[1,"usize"],[5,"SyncResponse",116],[5,"FullScanResponse",116],[10,"PartialEq",261],[10,"Any",274],[10,"Hash",268],[10,"Send",275],[5,"Script",276],[5,"OutPoint",277],[10,"ExactSizeIterator",278],[5,"ScriptBuf",279],[8,"Indexed",0],[5,"Txid",277],[5,"Vec",280],[10,"PartialOrd",261],[17,"IntoIter"],[5,"String",281]],"r":[[0,258],[1,257],[2,257],[3,258],[6,269],[7,259]],"b":[[49,"impl-From%3C(u32,+BlockHash)%3E-for-BlockId"],[50,"impl-From%3C(%26u32,+%26BlockHash)%3E-for-BlockId"],[166,"impl-Display-for-SyncItem%3C\'i,+I%3E"],[167,"impl-Debug-for-SyncItem%3C\'i,+I%3E"]],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAIwAFQAKAAAADQATACIABwAtAAMAMgABADsAAQBHAAEATgACAFUAAgBbAA0AawAJAIAADwCaAAQAoAALAK0AAACwAAAAtgAAAM4AAADWAAIA3QAPAPIADwA="}],\ ["bdk_electrum",{"t":"FENNENNNNONNNNNNNNN","n":["BdkElectrumClient","bdk_core","borrow","borrow_mut","electrum_client","fetch_tx","fmt","from","full_scan","inner","into","new","populate_tx_cache","sync","transaction_broadcast","try_from","try_into","type_id","vzip"],"q":[[0,"bdk_electrum"],[19,"bdk_electrum::bdk_electrum_client"],[20,"bitcoin::blockdata::transaction"],[21,"alloc::sync"],[22,"electrum_client::types"],[23,"core::result"],[24,"electrum_client::api"],[25,"core::fmt"],[26,"bdk_core::spk_client"],[27,"core::cmp"],[28,"core::clone"],[29,"core::convert"],[30,"core::iter::traits::collect"],[31,"core::any"]],"i":[0,0,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"f":"``{{{b{c}}}{{b{e}}}{}{}}{{{b{dc}}}{{b{de}}}{}{}}`{{{b{{f{c}}}}h}{{A`{{l{j}}n}}}Ab}{{{b{{f{c}}}}{b{dAd}}}AfAh}{cc{}}{{{b{{f{c}}}}gAjAjAl}{{A`{{An{e}}n}}}Ab{B`Bb}{{Bf{{Bd{e}}}}}}`{ce{}{}}{c{{f{c}}}Ab}{{{b{{f{c}}}}g}BhAb{{Bf{{l{j}}}}}{{Bl{}{{Bj{e}}}}}}{{{b{{f{c}}}}gAjAl}{{A`{Bnn}}}Ab{}{{Bf{{C`{e}}}}}}{{{b{{f{c}}}}{b{j}}}{{A`{hn}}}Ab}{c{{A`{e}}}{}{}}0{{{b{c}}}Cb{}}6","D":"Af","p":[[1,"reference"],[0,"mut"],[5,"BdkElectrumClient",0,19],[5,"Txid",20],[5,"Transaction",20],[5,"Arc",21],[6,"Error",22],[6,"Result",23],[10,"ElectrumApi",24],[5,"Formatter",25],[8,"Result",25],[10,"Debug",25],[1,"usize"],[1,"bool"],[5,"FullScanResponse",26],[10,"Ord",27],[10,"Clone",28],[5,"FullScanRequest",26],[10,"Into",29],[1,"unit"],[17,"Item"],[10,"IntoIterator",30],[5,"SyncResponse",26],[5,"SyncRequest",26],[5,"TypeId",31]],"r":[[0,19]],"b":[],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAAgAAwACAAMABwAAABAAAwA="}],\ ["bdk_esplora",{"t":"IKKEMMMM","n":["Error","EsploraAsyncExt","EsploraExt","esplora_client","full_scan","full_scan","sync","sync"],"q":[[0,"bdk_esplora"],[8,"bdk_esplora::blocking_ext"],[9,"bdk_core::spk_client"],[10,"core::result"],[11,"core::cmp"],[12,"core::clone"],[13,"core::convert"],[14,"bdk_esplora::async_ext"],[15,"core::future::future"],[16,"alloc::boxed"],[17,"core::pin"],[18,"core::marker"]],"i":[0,0,0,0,1,11,1,11],"f":"````{{{d{b}}eff}{{l{{h{c}}j}}}{nA`}{{Ad{{Ab{c}}}}}}{{{d{Af}}eff}{{Al{{Aj{Ah}}}}}{nA`An}{{Ad{{Ab{c}}}}An}}{{{d{b}}ef}{{l{B`j}}}{}{{Ad{{Bb{c}}}}}}{{{d{Af}}ef}{{Al{{Aj{Ah}}}}}An{{Ad{{Bb{c}}}}An}}","D":"A`","p":[[10,"EsploraExt",0,8],[1,"reference"],[1,"usize"],[5,"FullScanResponse",9],[8,"Error",0,8],[6,"Result",10],[10,"Ord",11],[10,"Clone",12],[5,"FullScanRequest",9],[10,"Into",13],[10,"EsploraAsyncExt",0,14],[10,"Future",15],[5,"Box",16],[5,"Pin",17],[10,"Send",18],[5,"SyncResponse",9],[5,"SyncRequest",9]],"r":[[0,8],[1,14],[2,8]],"b":[],"c":"OjAAAAAAAAA=","e":"OjAAAAEAAAAAAAAAEAAAAAQA"}],\ -["bdk_file_store",{"t":"FPFGPPPGFNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNOO","n":["AggregateChangesetsError","Bincode","EntryIter","FileError","InvalidMagicBytes","Io","Io","IterError","Store","aggregate_changesets","append_changeset","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","changeset","create_new","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into_iter","iter_changesets","iter_error","new","next","open","open_or_create_new","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","expected","got"],"q":[[0,"bdk_file_store"],[73,"bdk_file_store::FileError"],[75,"bdk_file_store::store"],[76,"core::option"],[77,"core::result"],[78,"bdk_core::merge"],[79,"serde::ser"],[80,"serde::de"],[81,"core::marker"],[82,"std::io::error"],[83,"std::path"],[84,"core::convert"],[85,"bdk_file_store::entry_iter"],[86,"core::fmt"],[87,"std::fs"],[88,"alloc::string"],[89,"core::any"]],"i":[0,20,0,0,16,20,16,0,0,2,2,19,20,2,5,16,19,20,2,5,16,5,2,19,20,20,2,5,5,16,16,19,20,20,2,5,16,16,19,20,2,5,16,19,2,5,19,19,2,2,20,5,16,19,20,2,5,16,19,20,2,5,16,19,20,2,5,16,19,20,2,5,16,28,28],"f":"`````````{{{f{b{d{c}}}}}{{l{{h{c}}{j{c}}}}}{nA`AbAdAf}}{{{f{b{d{c}}}}{f{c}}}{{l{AhAj}}}{nA`AbAdAf}}{{{f{c}}}{{f{e}}}{}{}}0000{{{f{bc}}}{{f{be}}}{}{}}0000`{{{f{{An{Al}}}}c}{{l{{d{e}}B`}}}{{Bd{Bb}}}{nA`AbAdAf}}{{{f{b{Bf{c}}}}}Ah{}}{{{f{Bh}}{f{bBj}}}Bl}0{{{f{{d{c}}}}{f{bBj}}}Bl{AfAdBn}}{{{f{{j{c}}}}{f{bBj}}}BlBn}{{{f{{j{c}}}}{f{bBj}}}Bl{}}{{{f{B`}}{f{bBj}}}Bl}0{cc{}}0{AjBh}111{AjB`}{ce{}{}}00000{{{f{b{d{c}}}}}{{Bf{c}}}{nA`AbAdAf}}`{{C`{f{bCb}}}{{Bf{c}}}{}}{{{f{b{Bf{c}}}}}{{h{e}}}Ab{}}=={{{f{c}}}Cd{}}00{c{{l{e}}}{}{}}000000000{{{f{c}}}Cf{}}000066666``","D":"Ch","p":[[0,"mut"],[5,"Store",0,75],[1,"reference"],[6,"Option",76],[5,"AggregateChangesetsError",0,75],[6,"Result",77],[10,"Merge",78],[10,"Serialize",79],[10,"DeserializeOwned",80],[10,"Send",81],[10,"Sync",81],[1,"unit"],[5,"Error",82],[1,"u8"],[1,"slice"],[6,"FileError",0],[5,"Path",83],[10,"AsRef",84],[5,"EntryIter",0,85],[6,"IterError",0,85],[5,"Formatter",86],[8,"Result",86],[10,"Debug",86],[1,"u64"],[5,"File",87],[5,"String",88],[5,"TypeId",89],[15,"InvalidMagicBytes",73]],"r":[[0,75],[2,85],[7,85],[8,75]],"b":[[24,"impl-Display-for-IterError"],[25,"impl-Debug-for-IterError"],[27,"impl-Debug-for-AggregateChangesetsError%3CC%3E"],[28,"impl-Display-for-AggregateChangesetsError%3CC%3E"],[29,"impl-Display-for-FileError"],[30,"impl-Debug-for-FileError"]],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAC8ABwAMAAkAGAAHACIAAAAmAAAALAAAAC8AAQAzABgA"}],\ +["bdk_file_store",{"t":"FPFGPPPGFNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNOO","n":["AggregateChangesetsError","Bincode","EntryIter","FileError","InvalidMagicBytes","Io","Io","IterError","Store","aggregate_changesets","append_changeset","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","changeset","create_new","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into_iter","iter_changesets","iter_error","new","next","open","open_or_create_new","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","expected","got"],"q":[[0,"bdk_file_store"],[73,"bdk_file_store::FileError"],[75,"bdk_file_store::store"],[76,"core::option"],[77,"core::result"],[78,"bdk_core::merge"],[79,"serde::ser"],[80,"serde::de"],[81,"core::marker"],[82,"std::io::error"],[83,"std::path"],[84,"core::convert"],[85,"bdk_file_store::entry_iter"],[86,"core::fmt"],[87,"std::fs"],[88,"alloc::string"],[89,"core::any"]],"i":[0,20,0,0,16,20,16,0,0,2,2,19,20,2,5,16,19,20,2,5,16,5,2,19,20,20,2,5,5,16,16,19,20,20,2,5,16,16,19,20,2,5,16,19,2,5,19,19,2,2,20,5,16,19,20,2,5,16,19,20,2,5,16,19,20,2,5,16,19,20,2,5,16,28,28],"f":"`````````{{{f{b{d{c}}}}}{{l{{h{c}}{j{c}}}}}{nA`AbAdAf}}{{{f{b{d{c}}}}{f{c}}}{{l{AhAj}}}{nA`AbAdAf}}{{{f{c}}}{{f{e}}}{}{}}0000{{{f{bc}}}{{f{be}}}{}{}}0000`{{{f{{An{Al}}}}c}{{l{{d{e}}B`}}}{{Bd{Bb}}}{nA`AbAdAf}}{{{f{b{Bf{c}}}}}Ah{}}{{{f{Bh}}{f{bBj}}}Bl}0{{{f{{d{c}}}}{f{bBj}}}Bl{AfAdBn}}{{{f{{j{c}}}}{f{bBj}}}Bl{}}{{{f{{j{c}}}}{f{bBj}}}BlBn}{{{f{B`}}{f{bBj}}}Bl}0{cc{}}0{AjBh}111{AjB`}{ce{}{}}00000{{{f{b{d{c}}}}}{{Bf{c}}}{nA`AbAdAf}}`{{C`{f{bCb}}}{{Bf{c}}}{}}{{{f{b{Bf{c}}}}}{{h{e}}}Ab{}}=={{{f{c}}}Cd{}}00{c{{l{e}}}{}{}}000000000{{{f{c}}}Cf{}}000066666``","D":"Ch","p":[[0,"mut"],[5,"Store",0,75],[1,"reference"],[6,"Option",76],[5,"AggregateChangesetsError",0,75],[6,"Result",77],[10,"Merge",78],[10,"Serialize",79],[10,"DeserializeOwned",80],[10,"Send",81],[10,"Sync",81],[1,"unit"],[5,"Error",82],[1,"u8"],[1,"slice"],[6,"FileError",0],[5,"Path",83],[10,"AsRef",84],[5,"EntryIter",0,85],[6,"IterError",0,85],[5,"Formatter",86],[8,"Result",86],[10,"Debug",86],[1,"u64"],[5,"File",87],[5,"String",88],[5,"TypeId",89],[15,"InvalidMagicBytes",73]],"r":[[0,75],[2,85],[7,85],[8,75]],"b":[[24,"impl-Debug-for-IterError"],[25,"impl-Display-for-IterError"],[27,"impl-Display-for-AggregateChangesetsError%3CC%3E"],[28,"impl-Debug-for-AggregateChangesetsError%3CC%3E"],[29,"impl-Debug-for-FileError"],[30,"impl-Display-for-FileError"]],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAC8ABwAMAAkAGAAHACIAAAAmAAAALAAAAC8AAQAzABgA"}],\ ["bdk_testenv",{"t":"FFEEEOOQNNNNQQNEOOENNNNNQNNNQNNNNNNNNNNNNNNNNCNNNNSH","n":["Config","TestEnv","anyhow","bitcoincore_rpc","bitcoind","bitcoind","bitcoind","block_id","borrow","borrow","borrow_mut","borrow_mut","chain_update","changeset","default","electrsd","electrsd","electrsd","electrum_client","electrum_client","fmt","from","from","genesis_hash","hash","into","into","invalidate_blocks","local_chain","make_checkpoint_tip","mine_blocks","mine_empty_block","new","new_with_config","reorg","reorg_empty_blocks","reset_electrsd","rpc_client","send","try_from","try_from","try_into","try_into","type_id","type_id","utils","vzip","vzip","wait_until_electrum_sees_block","wait_until_electrum_sees_txid","DESCRIPTORS","new_tx"],"q":[[0,"bdk_testenv"],[50,"bdk_testenv::utils"],[52,"electrum_client::api"],[53,"core::fmt"],[54,"bitcoin::blockdata::block"],[55,"anyhow"],[56,"bdk_core::checkpoint"],[57,"bitcoin::address"],[58,"core::option"],[59,"alloc::vec"],[60,"bitcoincore_rpc::client"],[61,"bitcoin_units::amount"],[62,"bitcoin::blockdata::transaction"],[63,"core::result"],[64,"core::any"],[65,"core::time"]],"i":[0,0,0,0,0,4,3,0,4,3,4,3,0,0,3,0,4,3,0,4,3,4,3,4,0,4,3,4,0,4,4,4,4,4,4,4,4,4,4,4,3,4,3,4,3,0,4,3,4,4,0,0],"f":"````````{{{b{c}}}{{b{e}}}{}{}}0{{{b{dc}}}{{b{de}}}{}{}}0``{{}f}````{{{b{h}}}{{b{{`{j}}}}}}{{{b{f}}{b{dl}}}n}{cc{}}0{{{b{h}}}{{Ab{A`}}}}`{ce{}{}}0{{{b{h}}Ad}{{Ab{Af}}}}`{{{b{h}}}Ah}{{{b{h}}Ad{Al{Aj}}}{{Ab{{An{A`}}}}}}{{{b{h}}}{{Ab{{B`{AdA`}}}}}}{{}{{Ab{h}}}}{f{{Ab{h}}}}{{{b{h}}Ad}{{Ab{{An{A`}}}}}}{{{b{h}}Ad}{{Ab{{An{{B`{AdA`}}}}}}}}{h{{Ab{h}}}}{{{b{h}}}{{b{{`{Bb}}}}}}{{{b{h}}{b{{Aj{Bd}}}}Bf}{{Ab{Bh}}}}{c{{Bj{e}}}{}{}}000{{{b{c}}}Bl{}}0`=={{{b{h}}Bn}{{Ab{Af}}}}{{{b{h}}BhBn}{{Ab{Af}}}}`{C`Cb}","D":"Bn","p":[[1,"reference"],[0,"mut"],[5,"Config",0],[5,"TestEnv",0],[10,"ElectrumApi",52],[5,"Formatter",53],[8,"Result",53],[5,"BlockHash",54],[8,"Result",55],[1,"usize"],[1,"unit"],[5,"CheckPoint",56],[5,"Address",57],[6,"Option",58],[5,"Vec",59],[1,"tuple"],[10,"RpcApi",60],[6,"NetworkChecked",57],[5,"Amount",61],[5,"Txid",62],[6,"Result",63],[5,"TypeId",64],[5,"Duration",65],[1,"u32"],[5,"Transaction",62]],"r":[],"b":[],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAB0ACwAAAAAAAwADAAgABgAQAAEAEwAAABUAAAAZAAAAHQAAACUAAAAoAAgAMwABAA=="}],\ -["bdk_wallet",{"t":"GGFGKFPPPFGFGPPPPPRRPGPPEPPPPKGPGGFGPFPPPPPPPPPFPFFGPPPFGTTFKIFPNNONOONNNNNNNNONDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDOOOONNNNNNNNNNNNNNNNNNNNCONNNNNNNNNNNNNNNNONCNOQNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNDNNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONMMNNNNNNNNNNNNNNNNNNNMNNOOONNNCONNNNNNNNNNNNONNNNDNNONNNNNNONNMMNNNNCNNNECONNNDDNNNNNNNOCENNNNNNOENNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNOOONONNNNNNNNNNNNNNNNNNNNOOHNNNNNNNNNNNNNNNNNNHOOOOOOOOOOOOOOOOFPKFIGFFPFFONNNNNNNNNNNNNNNNNNNNNNNNMNNNNHNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOPPPIGEGIKTIKRGFPPPPEKGPPPPTIPPPPPPPPPPNNNNNNNNNNNNNNNNNENNNNNNNNNNNNNMNNMNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNONMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNMNNNNNNMNNNNNNNNNNNNNNNNONNNNNNNNNMNNNNCNNNNNNNNNNNMNNNCNNNNNNNNNNNNNNNNNNNONNNNNNNNNNHPPGPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNPPPGPFIPPIPPPPPPPPPPPGFGPPPPPGGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNONNONNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOFFFFFFFFKIFFFFNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGPPGPPPPPPPGPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFIOONNNNNNNNNNNOONNNNNNPKGGGRRKGPKKFKPPPRGIPPPPPRPFPKGPPPFFGFPIPPPHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNMNNNNNNMNNNNNNNNNNNNNNNNNNNOONHNMNNHNMNNOONNNNNNMNNNNNMNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKMMMSHPPPPPPPKPPPPPPPPPPPPPPPPFKGGGFFFPGKPNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNMNNNMNONONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOGGPPGPPPPPPFGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOO","n":["AddForeignUtxoError","AddUtxoError","AddressInfo","ApplyBlockError","AsyncWalletPersister","Balance","CannotConnect","ChangeAllowed","ChangeForbidden","ChangeSet","ChangeSpendPolicy","CreateParams","CreateWithPersistError","Custom","DataAlreadyExists","Descriptor","Descriptor","Descriptor","Error","Error","External","FileStoreError","Foreign","Genesis","HdKeyPaths","Internal","InvalidChangeSet","InvalidOutpoint","InvalidTxid","IsDust","KeychainKind","Load","LoadError","LoadMismatch","LoadParams","LoadWithPersistError","Local","LocalOutput","Mismatch","MissingDescriptor","MissingGenesis","MissingNetwork","MissingUtxo","Network","OnlyChange","Persist","Persist","PersistedWallet","Shuffle","SignOptions","TxBuilder","TxOrdering","UnexpectedConnectedToHash","UnknownUtxo","Untouched","Update","Utxo","WALLET_SCHEMA_NAME","WALLET_TABLE_NAME","Wallet","WalletPersister","WalletTx","WeightedUtxo","Write","add","add_signer","address","all_unbounded_spk_iters","allow_all_sighashes","allow_grinding","apply_block","apply_block_connected_to","apply_unconfirmed_txs","apply_update","apply_update_at","as_byte","as_ref","as_ref","assume_height","balance","bitcoin","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_fee_bump","build_tx","calculate_fee","calculate_fee_rate","cancel_tx","chain","chain","chain_position","chain_position","change_descriptor","check_genesis_hash","check_network","checkpoints","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","coin_selection","confirmed","create","create","create_async","create_single","create_wallet","create_wallet_async","create_wallet_no_persist","create_with_params","default","default","default","default","deref","deref","deref_mut","derivation_index","derivation_index","derivation_of_spk","descriptor","descriptor","descriptor","descriptor","descriptor_checksum","deserialize","deserialize","deserialize","deserialize","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","export","extract_keys","file_store","finalize_psbt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_sqlite","genesis_hash","get_psbt_input","get_signers","get_tx","get_utxo","hash","hash","immature","index","indexer","init_sqlite_tables","initialize","initialize","insert_txout","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_dust","is_empty","is_mine","is_spent","keychain","keychain","keychains","keymap","keymap","keys","last_active_indices","latest_checkpoint","list_output","list_unspent","list_unused_addresses","load","load","load_async","load_wallet","load_wallet_async","load_wallet_no_persist","load_with_params","local_chain","local_chain","lookahead","lookahead","mark_used","merge","miniscript","network","network","network","new","new","new_single","next_derivation_index","next_unused_address","outpoint","outpoint","partial_cmp","peek_address","persist","persist","persist","persist_async","persist_to_sqlite","policies","psbt","public_descriptor","reveal_addresses_to","reveal_next_address","rusqlite","rusqlite_impl","satisfaction_weight","secp_ctx","sent_and_received","sequence","serde","serde_json","serialize","serialize","serialize","serialize","set_keymap","set_keymaps","sign","sign_with_tap_internal_key","signer","signer","spk_index","staged","staged_mut","start_full_scan","start_sync_with_revealed_spks","take_staged","tap_leaves_options","template","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","total","transactions","transactions_sort_by","trust_witness_utxo","trusted_pending","trusted_spendable","try_finalize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_builder","tx_graph","tx_graph","tx_node","tx_update","txout","txout","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unbounded_spk_iter","unmark_used","untrusted_pending","utxo","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","wallet_name_from_descriptor","foreign_utxo","input_txid","connected_to_hash","expected_hash","expected","expected","expected","keychain","loaded","loaded","loaded","input_sort","output_sort","outpoint","psbt_input","sequence","BranchAndBoundCoinSelection","Change","CoinSelectionAlgorithm","CoinSelectionResult","DefaultCoinSelectionAlgorithm","Excess","InsufficientFunds","LargestFirstCoinSelection","NoChange","OldestFirstCoinSelection","SingleRandomDraw","available","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","coin_select","coin_select","coin_select","coin_select","coin_select","decide_change","default","default","default","default","eq","equivalent","equivalent","excess","fee_amount","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into","into","local_selected_amount","needed","new","selected","selected_amount","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","amount","change_fee","dust_threshold","fee","remaining_amount","Bare","Bare","Bare","DerivedDescriptor","Descriptor","DescriptorError","DescriptorPublicKey","ExtendedDescriptor","ExtractPolicy","FALSE","HdKeyPaths","IntoWalletDescriptor","Key","Legacy","Miniscript","MultiXPub","Pkh","Pkh","Pkh","Policy","ScriptContext","Segwitv0","Sh","Sh","Sh","Single","TRUE","TapKeyOrigins","Tr","Tr","Tr","Wpkh","Wpkh","Wpkh","Wsh","Wsh","Wsh","XPub","address","as_enum","as_enum","as_inner","as_node","at_derivation_index","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","branches","build_template","build_template_mall","calc_checksum","check_global_consensus_validity","check_global_consensus_validity","check_global_consensus_validity","check_global_policy_validity","check_global_policy_validity","check_global_validity","check_local_consensus_validity","check_local_consensus_validity","check_local_consensus_validity","check_local_policy_validity","check_local_policy_validity","check_local_policy_validity","check_local_validity","check_pk","check_pk","check_pk","check_terminal_non_malleable","check_terminal_non_malleable","check_terminal_non_malleable","check_witness","check_witness","check_witness","checksum","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","contains_raw_pkh","derive","derived_descriptor","derived_descriptor","desc_type","descriptor_id","deserialize","deserialize","dust_value","encode","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","explicit_script","ext","ext_check","extract_policy","extract_policy","extract_policy","find_derivation_index_for_spk","fmt","fmt","fmt","fmt","fmt","fmt","for_each_key","for_each_key","from","from","from","from","from","from","from","from","from","from","from_ast","from_components_unchecked","from_str","from_str","from_str_ext","from_str_insane","from_tree","from_tree","get_nth_child","get_nth_pk","get_satisfaction","get_satisfaction_mall","has_mixed_timelocks","has_repeated_keys","has_wildcard","hash","hash","hash","hash","into","into","into","into","into_inner","into_single_descriptors","into_wallet_descriptor","into_wallet_descriptor","is_deriveable","is_multipath","is_non_malleable","iter","iter_pk","lift","lift","lift_check","max_satisfaction_size","max_satisfaction_size","max_satisfaction_size","max_satisfaction_size","max_satisfaction_weight","max_satisfaction_witness_elements","max_weight_to_satisfy","name_str","name_str","name_str","new_bare","new_pk","new_pkh","new_sh","new_sh_sortedmulti","new_sh_with_wpkh","new_sh_with_wsh","new_sh_wpkh","new_sh_wsh","new_sh_wsh_sortedmulti","new_tr","new_wpkh","new_wsh","new_wsh_sortedmulti","node","other_top_level_checks","parse","parse_descriptor","parse_insane","parse_with_ext","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pk_len","pk_len","pk_len","plan","plan_mall","policy","requires_sig","sanity_check","sanity_check","satisfy","satisfy","satisfy_malleable","script_code","script_pubkey","script_size","serialize","serialize","sig_type","sig_type","sig_type","substitute_raw_pkh","template","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string_with_secret","top_level_checks","top_level_type_check","translate_pk","translate_pk","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","ty","type_id","type_id","type_id","type_id","unsigned_script_sig","vzip","vzip","vzip","vzip","within_resource_limits","calc_checksum","Base58","Bip32","Error","ExternalAndInternalAreTheSame","HardenedDerivationXpub","Hex","InvalidDescriptorCharacter","InvalidDescriptorChecksum","InvalidHdKeyPath","Key","Miniscript","MultiPath","Pk","Policy","borrow","borrow_mut","eq","fmt","fmt","from","from","from","from","from","from","from","from","into","to_string","try_from","try_into","type_id","vzip","AbsoluteTimelock","AddOnLeaf","AddOnPartialComplete","BuildSatisfaction","Complete","Condition","ConditionMap","EcdsaSignature","Fingerprint","FoldedConditionMap","Hash160Preimage","Hash256Preimage","IncompatibleConditions","IndexOutOfRange","MixedTimelockUnits","Multisig","None","None","NotEnoughItemsSelected","Partial","PartialComplete","PkOrF","Policy","PolicyError","Psbt","PsbtTimelocks","Pubkey","RelativeTimelock","Ripemd160Preimage","Satisfaction","SatisfiableItem","SchnorrSignature","Sha256Preimage","Thresh","XOnlyPubkey","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","contribution","csv","default","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","get_condition","hash","hash","id","id","into","into","into","into","into","into","into","is_leaf","is_leaf","is_null","item","partial_cmp","requires_path","satisfaction","serialize","serialize","serialize","serialize","serialize","timelock","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","current_height","input_max_height","psbt","condition","conditions","conditions","items","items","m","m","n","n","sorted","sorted","hash","hash","hash","hash","items","keys","threshold","threshold","value","value","Bip44","Bip44Public","Bip49","Bip49Public","Bip84","Bip84Public","Bip86","Bip86Public","DescriptorTemplate","DescriptorTemplateOut","P2Pkh","P2TR","P2Wpkh","P2Wpkh_P2Sh","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build","build","build","build","build","build","build","build","build","build","build","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","BuildFeeBumpError","CoinSelection","Conversion","CreateTxError","Descriptor","FeeRateTooLow","FeeRateUnavailable","FeeTooLow","IrreplaceableTransaction","LockTime","MiniscriptPsbt","MiniscriptPsbtError","MissingKeyOrigin","MissingNonWitnessUtxo","NoRecipients","NoUtxosSelected","OutputBelowDustLimit","OutputUpdate","Policy","Psbt","RbfSequenceCsv","SpendingPolicyRequired","TransactionConfirmed","TransactionNotFound","UnknownUtxo","UnknownUtxo","UtxoUpdate","Version0","Version1Csv","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","csv","requested","required","required","required","sequence","FullyNodedExport","WalletExport","blockheight","blockheight","borrow","borrow_mut","change_descriptor","descriptor","deserialize","export_wallet","fmt","fmt","from","from_str","into","label","label","serialize","to_string","try_from","try_into","type_id","vzip","Bip32","DerivableKey","DescriptorKey","DescriptorPublicKey","DescriptorSecretKey","Entropy","Error","ExtScriptContext","ExtendedKey","FullKey","GeneratableDefaultOptions","GeneratableKey","GeneratedKey","IntoDescriptorKey","InvalidChecksum","InvalidNetwork","InvalidScriptContext","Key","KeyError","KeyMap","Legacy","Message","Miniscript","MultiXPrv","MultiXPub","Options","Private","PrivateKeyGenerateOptions","Public","ScriptContext","ScriptContextEnum","Segwitv0","Single","Single","SinglePriv","SinglePub","SinglePubKey","SortedMultiVec","Tap","ValidNetworks","XOnly","XPrv","XPub","any_network","as_enum","at_derivation_index","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_template","check_global_consensus_validity","check_global_policy_validity","check_global_validity","check_local_consensus_validity","check_local_policy_validity","check_local_validity","check_pk","check_terminal_non_malleable","check_witness","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","compressed","default","deref","derive","deserialize","encode","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each_key","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_public","from_secret","from_str","from_str","from_tree","full_derivation_path","full_derivation_paths","generate","generate_default","generate_default_with_aux_rand","generate_with_aux_rand","generate_with_entropy","generate_with_entropy_default","has_secret","has_wildcard","hash","hash","hash","hash","into","into","into","into","into","into","into","into","into","into","into","into","into_assets","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_extended_key","into_extended_key","into_extended_key","into_key","into_single_keys","into_single_keys","into_xprv","into_xpub","is_deriveable","is_legacy","is_legacy","is_multipath","is_multipath","is_segwit_v0","is_segwit_v0","is_taproot","is_taproot","is_uncompressed","is_x_only_key","k","key","key","lift","mainnet_network","master_fingerprint","max_satisfaction_size","max_satisfaction_size","max_satisfaction_witness_elements","merge_networks","n","name_str","new","num_der_paths","origin","origin","other_top_level_checks","override_valid_networks","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pk_len","pks","sanity_check","satisfy","script_size","serialize","sig_type","sorted_node","test_networks","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_public","to_string","to_string","to_string","to_string","top_level_checks","top_level_type_check","translate_pk","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","PsbtUtils","fee_amount","fee_rate","get_utxo_for","SCHEMAS_TABLE_NAME","migrate_schema","All","Dummy","Exclude","External","Fingerprint","Include","InputIndexOutOfRange","InputSigner","InvalidKey","InvalidNonWitnessUtxo","InvalidSighash","Legacy","MiniscriptPsbt","MissingHdKeypath","MissingKey","MissingNonWitnessUtxo","MissingWitnessScript","MissingWitnessUtxo","NonStandardSighash","None","PkHash","Psbt","Segwitv0","SighashTaproot","SignOptions","SignerCommon","SignerContext","SignerError","SignerId","SignerOrdering","SignerWrapper","SignersContainer","Tap","TapLeavesOptions","TransactionSigner","UserCanceled","add_external","allow_all_sighashes","allow_grinding","as_key_map","assume_height","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","default","default","deref","descriptor_secret_key","descriptor_secret_key","descriptor_secret_key","descriptor_secret_key","descriptor_secret_key","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","hash","id","id","id","id","ids","into","into","into","into","into","into","into","into","new","new","partial_cmp","partial_cmp","remove","sign_input","sign_input","sign_input","sign_input","sign_transaction","sign_transaction","sign_with_tap_internal_key","signers","tap_leaves_options","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","trust_witness_utxo","try_finalize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","is_internal_key","AddForeignUtxoError","AddUtxoError","ChangeAllowed","ChangeForbidden","ChangeSpendPolicy","Custom","InvalidOutpoint","InvalidTxid","MissingUtxo","OnlyChange","Shuffle","TxBuilder","TxOrdering","UnknownUtxo","Untouched","add_data","add_foreign_utxo","add_foreign_utxo_with_sequence","add_global_xpubs","add_recipient","add_unspendable","add_utxo","add_utxos","allow_dust","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","change_policy","clone","clone","clone_into","clone_into","cmp","coin_selection","current_height","default","default","do_not_spend_change","drain_to","drain_wallet","eq","equivalent","equivalent","fee_absolute","fee_rate","finish","finish_with_aux_rand","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","hash","include_output_redeem_witness_script","into","into","into","into","into","manually_selected_only","nlocktime","only_spend_change","only_witness_utxo","ordering","partial_cmp","policy_path","set_exact_sequence","set_recipients","sighash","sort_tx","sort_tx_with_aux_rand","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unspendable","version","vzip","vzip","vzip","vzip","vzip","foreign_utxo","input_txid","input_sort","output_sort"],"q":[[0,"bdk_wallet"],[470,"bdk_wallet::AddForeignUtxoError"],[472,"bdk_wallet::ApplyBlockError"],[474,"bdk_wallet::LoadMismatch"],[481,"bdk_wallet::TxOrdering"],[483,"bdk_wallet::Utxo"],[486,"bdk_wallet::coin_selection"],[598,"bdk_wallet::coin_selection::Excess"],[603,"bdk_wallet::descriptor"],[863,"bdk_wallet::descriptor::checksum"],[864,"bdk_wallet::descriptor::error"],[897,"bdk_wallet::descriptor::policy"],[1056,"bdk_wallet::descriptor::policy::BuildSatisfaction"],[1059,"bdk_wallet::descriptor::policy::Satisfaction"],[1070,"bdk_wallet::descriptor::policy::SatisfiableItem"],[1080,"bdk_wallet::descriptor::template"],[1264,"bdk_wallet::error"],[1334,"bdk_wallet::error::CreateTxError"],[1340,"bdk_wallet::export"],[1363,"bdk_wallet::keys"],[1679,"bdk_wallet::psbt"],[1683,"bdk_wallet::rusqlite_impl"],[1685,"bdk_wallet::signer"],[1871,"bdk_wallet::signer::SignerContext"],[1872,"bdk_wallet::tx_builder"],[1983,"bdk_wallet::tx_builder::AddForeignUtxoError"],[1985,"bdk_wallet::tx_builder::TxOrdering"],[1987,"bdk_chain::balance"],[1988,"bdk_wallet::wallet"],[1989,"bdk_wallet::types"],[1990,"bdk_wallet::wallet::signer"],[1991,"alloc::sync"],[1992,"bitcoin::blockdata::script::owned"],[1993,"bdk_core"],[1994,"core::iter::traits::iterator"],[1995,"core::clone"],[1996,"alloc::collections::btree::map"],[1997,"bitcoin::blockdata::block"],[1998,"bdk_chain::local_chain"],[1999,"core::result"],[2000,"bdk_core::block_id"],[2001,"bitcoin::blockdata::transaction"],[2002,"core::convert"],[2003,"core::iter::traits::collect"],[2004,"bdk_chain::tx_graph"],[2005,"bdk_wallet::wallet::coin_selection"],[2006,"bdk_wallet::wallet::tx_builder"],[2007,"bdk_wallet::wallet::error"],[2008,"bitcoin_units::amount"],[2009,"bitcoin_units::fee_rate"],[2010,"bdk_wallet::wallet::params"],[2011,"bitcoin::network"],[2012,"bdk_core::checkpoint"],[2013,"bdk_wallet::wallet::changeset"],[2014,"core::cmp"],[2015,"bdk_wallet::wallet::persisted"],[2016,"core::marker"],[2017,"core::option"],[2018,"alloc::string"],[2019,"serde::de"],[2020,"bitcoin::psbt"],[2021,"core::fmt"],[2022,"bdk_chain::indexer::keychain_txout"],[2023,"bdk_chain::indexed_tx_graph"],[2024,"bdk_core::spk_client"],[2025,"rusqlite::transaction"],[2026,"rusqlite"],[2027,"bitcoin::psbt::map::input"],[2028,"core::hash"],[2029,"core::future::future"],[2030,"alloc::boxed"],[2031,"core::pin"],[2032,"bdk_wallet::wallet::utils"],[2033,"bitcoin::blockdata::script::borrowed"],[2034,"miniscript::descriptor"],[2035,"core::iter::traits::double_ended"],[2036,"secp256k1::context::alloc_only"],[2037,"secp256k1"],[2038,"serde::ser"],[2039,"alloc::vec"],[2040,"core::ops::function"],[2041,"core::any"],[2042,"rand_core"],[2043,"core::default"],[2044,"bitcoin::address"],[2045,"miniscript"],[2046,"miniscript::miniscript::private"],[2047,"miniscript::miniscript::decode"],[2048,"miniscript::miniscript::context"],[2049,"miniscript::iter::tree"],[2050,"miniscript::descriptor::key"],[2051,"miniscript::miniscript::satisfy"],[2052,"miniscript::plan"],[2053,"bitcoin_hashes::sha256"],[2054,"miniscript::miniscript::hash256"],[2055,"bitcoin_hashes::ripemd160"],[2056,"bitcoin_hashes::hash160"],[2057,"bitcoin::crypto::key"],[2058,"secp256k1::context"],[2059,"bdk_chain::descriptor_ext"],[2060,"miniscript::blanket_traits"],[2061,"miniscript::miniscript::analyzable"],[2062,"core::ops::range"],[2063,"miniscript::descriptor::bare"],[2064,"miniscript::descriptor::tr"],[2065,"miniscript::descriptor::sh"],[2066,"miniscript::descriptor::segwitv0"],[2067,"miniscript::miniscript::types"],[2068,"miniscript::miniscript::types::extra_props"],[2069,"miniscript::expression"],[2070,"miniscript::miniscript::iter"],[2071,"miniscript::policy::semantic"],[2072,"miniscript::policy"],[2073,"bitcoin_units::weight"],[2074,"base58ck::error"],[2075,"bitcoin::bip32"],[2076,"hex_conservative::error"],[2077,"bitcoin::psbt::error"],[2078,"bdk_wallet::wallet::export"],[2079,"miniscript::descriptor::sortedmulti"],[2080,"core::str::traits"],[2081,"rusqlite::error"],[2082,"bitcoin::blockdata::script::push_bytes::primitive"],[2083,"bitcoin::blockdata::locktime::absolute"],[2084,"bdk_chain"],[2085,"bdk_chain::rusqlite_impl"]],"i":[0,0,0,0,0,0,74,261,261,0,0,0,0,262,51,51,63,64,52,55,5,0,45,64,0,5,61,259,259,0,0,72,0,0,0,0,45,0,63,63,63,63,259,64,261,61,51,0,262,0,0,0,74,260,262,0,0,46,46,0,0,0,0,72,1,3,47,3,66,66,3,3,3,3,3,5,5,3,66,3,0,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,3,3,3,3,3,0,27,87,43,46,39,39,3,1,5,43,44,45,46,27,47,1,5,43,44,45,46,27,47,5,0,1,50,3,50,3,49,49,49,3,1,39,46,27,50,47,50,3,43,3,0,39,46,0,3,1,5,43,46,1,5,43,44,45,46,61,47,63,64,1,1,5,5,43,43,44,44,45,45,47,47,0,0,39,0,3,1,1,5,43,44,45,46,50,72,72,61,61,51,51,3,27,47,47,63,63,64,74,74,0,1,49,39,5,43,44,45,46,46,46,46,46,50,72,61,61,51,3,27,27,27,47,63,63,64,74,46,49,3,3,3,3,5,43,1,47,46,46,52,55,3,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,95,46,3,43,43,47,3,49,39,0,27,3,3,3,3,50,3,50,39,39,39,3,3,46,49,39,3,46,0,49,3,46,49,39,49,3,3,45,43,5,3,52,55,50,50,46,3,0,3,3,3,0,0,44,3,3,45,0,0,1,5,43,46,3,3,3,66,0,0,3,3,3,3,3,3,66,0,1,5,43,44,45,46,27,47,1,72,61,51,47,63,74,1,3,3,66,1,1,66,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,0,3,46,87,27,45,43,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,3,3,1,44,0,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,0,265,265,266,266,267,268,269,269,267,268,269,270,270,271,271,271,0,123,0,0,0,0,0,0,123,0,0,115,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,116,117,118,119,115,116,117,118,119,120,116,117,118,119,0,116,117,118,119,115,115,115,121,121,115,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,123,121,116,117,118,119,121,115,118,121,121,115,116,117,118,119,115,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,123,121,116,117,118,119,272,273,273,272,273,97,274,125,0,0,0,0,0,0,131,0,0,133,0,0,135,97,274,125,0,0,0,97,274,125,135,131,0,97,274,125,97,274,125,97,274,125,135,125,152,153,131,131,125,125,152,153,131,125,152,153,131,131,131,131,0,133,152,153,133,153,133,133,152,153,133,152,153,133,133,152,153,133,152,153,133,152,153,0,125,152,153,131,125,152,153,131,125,152,153,131,131,125,125,125,125,125,125,131,125,131,125,152,153,131,125,125,152,152,153,153,131,131,0,125,131,131,162,125,131,125,125,125,152,153,131,131,125,131,125,125,125,125,125,125,125,152,153,131,131,131,125,131,131,131,125,131,131,131,125,125,131,131,125,125,152,153,131,125,152,153,131,131,125,53,97,125,125,131,131,131,125,131,131,133,152,153,131,125,131,125,133,152,153,125,125,125,125,125,125,125,125,125,125,125,125,125,125,131,133,131,125,131,131,125,152,153,131,133,152,153,125,125,0,131,125,131,125,131,131,125,125,131,125,131,133,152,153,131,0,125,152,153,131,125,131,125,133,133,125,131,125,152,153,131,125,152,153,131,131,125,152,153,131,125,125,152,153,131,131,0,56,56,0,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,199,197,197,0,200,0,0,199,198,0,199,199,197,197,197,199,200,163,197,200,200,0,0,0,163,163,198,199,199,0,0,199,199,199,198,198,199,200,102,201,197,163,198,199,200,102,201,197,163,198,199,200,102,201,163,198,199,200,102,201,163,102,201,201,198,199,200,102,201,197,198,198,199,199,200,200,102,102,201,201,197,197,198,199,200,102,201,197,197,163,198,199,200,200,102,102,201,197,163,102,198,201,199,102,198,199,200,102,201,197,163,199,200,201,102,201,102,102,198,199,200,102,201,201,198,199,200,102,201,163,197,198,199,200,102,201,197,163,198,199,200,102,201,197,163,198,199,200,102,201,197,163,198,199,200,102,201,197,163,275,275,275,276,277,278,277,278,277,278,277,278,277,278,279,280,281,282,283,284,284,283,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,202,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,203,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,0,85,219,0,85,85,35,85,35,85,85,0,85,85,85,85,85,219,85,85,85,85,35,35,85,35,219,85,85,219,85,35,219,85,35,219,219,219,219,85,85,35,35,219,85,85,85,85,85,85,35,219,85,35,219,219,85,35,219,85,35,219,85,35,219,85,35,219,85,35,287,288,288,289,290,287,0,0,291,221,221,221,221,221,221,221,221,221,221,221,221,291,221,221,221,221,221,221,221,196,0,0,0,0,237,237,0,0,228,0,0,0,0,196,196,196,133,0,0,130,196,196,184,135,237,231,0,231,0,0,130,135,184,0,0,0,0,130,0,228,184,135,0,292,135,231,224,229,130,225,196,223,135,184,226,227,228,231,224,229,130,225,196,223,135,184,226,227,228,223,133,133,133,133,133,133,133,133,133,224,130,225,223,135,184,226,227,228,224,130,225,223,135,184,226,227,228,223,135,226,228,225,225,224,135,135,223,130,196,223,135,184,226,227,228,130,130,223,223,135,135,184,184,226,226,227,227,228,228,229,130,225,196,196,223,223,135,135,184,184,226,227,228,223,231,231,231,224,229,130,225,196,196,196,223,135,135,184,226,227,228,229,229,135,184,223,135,135,237,239,239,237,237,239,231,135,223,135,226,228,231,224,229,130,225,196,223,135,184,226,227,228,135,205,211,224,224,229,135,184,211,231,224,224,135,184,231,231,135,292,130,135,184,292,130,292,130,135,135,223,226,227,223,0,135,133,223,223,0,223,133,223,135,226,227,133,229,223,135,226,228,133,223,223,223,223,135,133,223,0,224,130,225,223,135,184,226,227,228,184,196,223,135,184,133,133,223,231,224,229,130,225,196,223,135,184,226,227,228,231,224,229,130,225,196,223,135,184,226,227,228,231,224,229,130,225,196,223,135,184,226,227,228,231,224,229,130,225,196,223,135,184,226,227,228,0,245,245,245,0,0,251,247,251,67,247,251,67,0,67,67,67,248,67,67,67,67,67,67,67,251,247,67,248,67,0,0,0,0,0,0,0,0,248,0,0,67,86,66,66,86,66,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,86,247,248,249,6,86,66,251,247,248,249,6,86,66,251,247,6,6,86,66,251,249,252,252,249,249,249,247,248,6,251,247,247,248,248,6,6,251,251,86,247,67,67,248,249,6,86,66,251,247,247,247,67,248,249,6,86,66,251,247,252,249,249,249,86,247,67,248,249,6,86,66,251,249,86,247,6,86,256,249,249,249,7,249,66,86,66,247,248,249,6,86,66,251,67,66,66,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,293,0,0,261,261,0,262,259,259,259,261,262,0,0,260,262,34,34,34,34,34,34,34,34,34,34,260,259,262,261,34,260,259,262,261,34,262,261,262,261,261,34,34,262,261,34,34,34,261,261,261,34,34,34,34,34,260,260,259,259,262,261,34,260,259,262,261,261,34,34,260,259,262,261,34,34,34,34,34,261,34,34,34,34,262,262,262,261,260,259,34,260,259,262,261,34,260,259,262,261,34,260,259,262,261,34,34,34,260,259,262,261,265,265,270,270],"f":"````````````````````````````````````````````````````````````````{{bb}b}{{{h{df}}jl{A`{n}}}Ab}`{{{h{f}}}{{An{j{`{{Aj{}{{Ad{{Ah{Af}}}}}}Al}}}}}}``{{{h{df}}{h{B`}}Bb}{{Bf{AbBd}}}}{{{h{df}}{h{B`}}BbBh}{{Bf{AbBj}}}}{{{h{df}}e}Ab{{Bn{{A`{Bl}}}}}{{Cd{}{{Ad{{Cb{cC`}}}}}}}}{{{h{df}}c}{{Bf{AbBd}}}{{Bn{Cf}}}}{{{h{df}}cC`}{{Bf{AbBd}}}{{Bn{Cf}}}}{{{h{j}}}Ch}{{{h{j}}}{{h{{Cj{Ch}}}}}}{{{h{f}}}{{h{{Cn{Cl}}}}}}`{{{h{f}}}b}`{{{h{c}}}{{h{e}}}{}{}}00000000000000000{{{h{dc}}}{{h{de}}}{}{}}00000000000000000{{{h{df}}D`}{{Bf{{Dd{Db}}Df}}}}{{{h{df}}}{{Dd{Db}}}}{{{h{f}}{h{Bl}}}{{Bf{DhDj}}}}{{{h{f}}{h{Bl}}}{{Bf{DlDj}}}}{{{h{df}}{h{Bl}}}Ab}`````{{DnE`}Dn}{{DnEb}Dn}{{{h{f}}}Ed}{{{h{b}}}b}{{{h{j}}}j}{{{h{Ef}}}Ef}{{{h{Eh}}}Eh}{{{h{Ej}}}Ej}{{{h{El}}}El}{{{h{Cf}}}Cf}{{{h{En}}}En}{{{h{c}}{h{de}}}Ab{}{}}0000000{{{h{j}}{h{j}}}F`}``{{{h{dc}}Fb}{{Bf{{Fd{c}}Ff}}}Fh}{{cc}Fb{FjFlAl}}{{{h{dc}}Fb}{{Bf{{Fd{c}}Ff}}}Fn}{cFb{FjFlAl}}{{Fb{h{dc}}}{{Bf{{Fd{c}}Ff}}}Fh}{{Fb{h{dc}}}{{Bf{{Fd{c}}Ff}}}Fn}{Fb{{Bf{fG`}}}}0{{}b}{{}Dn}{{}El}{{}Cf}{{{h{{Fd{c}}}}}{{h{e}}}{}{}}{{{h{En}}}{{h{c}}}{}}{{{h{d{Fd{c}}}}}{{h{de}}}{}{}}{{{h{f}}j}{{Gb{Bb}}}}`{{{h{f}}Af}{{Gb{{Cb{jBb}}}}}}`{{Dnj{Gb{c}}}Dn{FjFl}}``{{{h{f}}j}Gd}{c{{Bf{b}}}Gf}{c{{Bf{j}}}Gf}{c{{Bf{Ef}}}Gf}{c{{Bf{El}}}Gf}{{{h{b}}{h{b}}}Gh}{{{h{j}}{h{j}}}Gh}{{{h{Ef}}{h{Ef}}}Gh}{{{h{Eh}}{h{Eh}}}Gh}{{{h{Ej}}{h{Ej}}}Gh}{{{h{El}}{h{El}}}Gh}{{{h{{Gj{c}}}}{h{{Gj{c}}}}}GhGl}{{{h{En}}{h{En}}}Gh}{{{h{Gn}}{h{Gn}}}Gh}{{{h{H`}}{h{H`}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}00000000000``{DnDn}`{{{h{f}}{h{dHb}}Hd}{{Bf{GhHf}}}}{{{h{b}}{h{dHh}}}{{Bf{AbHj}}}}0{{{h{j}}{h{dHh}}}Hl}{{{h{Ef}}{h{dHh}}}Hl}{{{h{Eh}}{h{dHh}}}Hl}{{{h{Ej}}{h{dHh}}}Hl}{{{h{El}}{h{dHh}}}Hl}{{{h{{Fd{c}}}}{h{dHh}}}HlHn}{{{h{I`}}{h{dHh}}}Hl}0{{{h{{Gj{c}}}}{h{dHh}}}HlIb}{{{h{{Gj{c}}}}{h{dHh}}}HlHn}{{{h{{Ff{c}}}}{h{dHh}}}HlHn}{{{h{{Ff{c}}}}{h{dHh}}}HlIb}{{{h{f}}{h{dHh}}}Hl}{{{h{Cf}}{h{dHh}}}Hl}{{{h{En}}{h{dHh}}}Hl}0{{{h{Gn}}{h{dHh}}}Hl}0{{{h{H`}}{h{dHh}}}Hl}{{{h{Id}}{h{dHh}}}Hl}0`{cc{}}0000000{IfEl}{{{Ih{Cl}}}El}{IjEl}{{{Il{ClIf}}}El}444{H`{{Gj{c}}}{}}55{InCf}{{{J`{j}}}Cf}77{H`Gn}888{{{h{Jb}}}{{Jd{El}}}}{{FbE`}Fb}{{{h{f}}Ef{Gb{Jf}}Gh}{{Bf{JhJj}}}}{{{h{f}}j}{{A`{Jl}}}}{{{h{f}}D`}{{Gb{Jn}}}}{{{h{f}}K`}{{Gb{Ef}}}}{{{h{j}}{h{dc}}}AbKb}{{{h{Ef}}{h{dc}}}AbKb}```{{{h{Jb}}}{{Jd{Ab}}}}{{{h{d{Fh{}{{Kd{c}}}}}}}{{Bf{Elc}}}{}}{{{h{d{Fn{}{{Kd{c}}}}}}}{{Kj{{Kh{Kf}}}}}{}}{{{h{df}}K`Kl}Ab}{ce{}{}}00000000000000000{{{h{Kn}}{h{L`}}}Gh}{{{h{El}}}Gh}{{{h{f}}Af}Gh}```{{{h{f}}}{{`{{Aj{}{{Ad{{Cb{j{h{Lb}}}}}}}}}}}}{{FbjLd}Fb}{{DnjLd}Dn}``{{{h{f}}}Lf}{{{h{f}}}{{`{{Aj{}{{Ad{Ef}}}}}}}}0{{{h{f}}j}{{`{{Lh{}{{Ad{En}}}}}}}}{{{h{dc}}Dn}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fh}{{}Dn}{{{h{dc}}Dn}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fn}{{Dn{h{dc}}}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fh}{{Dn{h{dc}}}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fn}{{DnEl}{{Bf{{Gb{f}}Gn}}}}{{ElDn}{{Bf{{Gb{f}}Gn}}}}{{{h{f}}}{{h{Lj}}}}`{{FbBb}Fb}{{DnBb}Dn}{{{h{df}}jBb}Gh}{{{h{dEl}}El}Ab}`{{FbEb}Fb}{{{h{f}}}Eb}`{{cc}Fb{FjFl}}={cFb{FjFl}}{{{h{f}}j}Bb}{{{h{df}}j}En}{{{h{Ej}}}K`}`{{{h{j}}{h{j}}}{{Gb{F`}}}}{{{h{f}}jBb}En}{{{h{d{Fh{}{{Kd{c}}}}}}{h{El}}}{{Bf{Abc}}}{}}{{{h{d{Fn{}{{Kd{c}}}}}}{h{El}}}{{Kj{{Kh{Kf}}}}}{}}{{{h{d{Fd{c}}}}{h{dc}}}{{Bf{Gh}}}Fh}{{{h{d{Fd{c}}}}{h{dc}}}{{Bf{Gh}}}Fn}{{{h{El}}{h{Jb}}}{{Jd{Ab}}}}{{{h{f}}j}{{Bf{{Gb{Ll}}G`}}}}`{{{h{f}}j}{{h{Lb}}}}{{{h{df}}jBb}{{`{{Aj{}{{Ad{En}}}}}}}};```{{{h{f}}}{{h{{M`{Ln}}}}}}{{{h{f}}{h{Bl}}}{{Cb{DhDh}}}}{{{h{Ej}}}{{Gb{Mb}}}}``{{{h{b}}c}BfMd}{{{h{j}}c}BfMd}{{{h{Ef}}c}BfMd}{{{h{El}}c}BfMd}{{{h{df}}jLd}Ab}{{{h{df}}c}Ab{{Cd{}{{Ad{{Cb{jLd}}}}}}}}{{{h{f}}{h{dHb}}Hd}{{Bf{GhHf}}}}```{{{h{f}}}{{h{{Mf{j}}}}}}{{{h{f}}}{{Gb{{h{El}}}}}}{{{h{df}}}{{Gb{{h{dEl}}}}}}{{{h{f}}}{{Mh{j}}}}{{{h{f}}}{{Mj{{Cb{jBb}}}}}}{{{h{df}}}{{Gb{El}}}}``{{{h{c}}}e{}{}}0000000{{{h{c}}}Gd{}}000000{{{h{b}}}Dh}{{{h{f}}}{{`{{Aj{}{{Ad{Jn}}}}}}}}{{{h{f}}c}{{Ml{Jn}}}{{N`{{h{Jn}}{h{Jn}}}{{Mn{F`}}}}}}``2`{c{{Bf{e}}}{}{}}00000000000000000000000000000000000`{{{h{f}}}{{h{{Cn{Cl}}}}}}```{{{h{Ej}}}{{h{Kl}}}}`{{{h{c}}}Nb{}}00000000000000000{{{h{f}}j}{{`{{Aj{}{{Ad{{Ah{Af}}}}}}Al}}}}{{{h{df}}jBb}Gh}``{{}{{h{Nd}}}}{ce{}{}}00000000000000000{{c{Gb{c}}Eb{h{{M`{Ln}}}}}{{Bf{GdG`}}}Fj}````````````````````````````{{{h{c}}}{{h{e}}}{}{}}000000{{{h{dc}}}{{h{de}}}{}{}}000000{{{h{Nf}}}Nf}{{{h{Nh}}}Nh}{{{h{Nj}}}Nj}{{{h{{Nl{c}}}}}{{Nl{c}}}Al}{{{h{Nn}}}Nn}{{{h{c}}{h{de}}}Ab{}{}}0000{{{h{O`}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{{h{Nh}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{{h{Nj}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{{h{{Nl{c}}}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{de}}}{{Bf{ObNf}}}O`Od}{{{h{Nn}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{C`Dl{h{L`}}}Of}{{}Nh}{{}Nj}{{}{{Nl{c}}}Oh}{{}Nn}{{{h{Nf}}{h{Nf}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0``{{{h{Nf}}{h{dHh}}}Hl}0{{{h{Of}}{h{dHh}}}Hl}{{{h{Ob}}{h{dHh}}}Hl}{{{h{Nh}}{h{dHh}}}Hl}{{{h{Nj}}{h{dHh}}}Hl}{{{h{{Nl{c}}}}{h{dHh}}}HlHn}{{{h{Nn}}{h{dHh}}}Hl}{cc{}}000000{ce{}{}}000000{{{h{Ob}}}C`}`{{C`c}{{Nl{c}}}{}}`1{{{h{c}}}e{}{}}0000{{{h{c}}}Gd{}}{c{{Bf{e}}}{}{}}0000000000000{{{h{c}}}Nb{}}0000006666666```````````````````````````````````````````{{{h{{Oj{c}}}}Eb}{{Bf{OlOn}}}{A@`A@b}}{{}A@d}0{{{h{{A@f{ce}}}}}{{h{{A@h{ce}}}}}A@`A@j}{{{h{{h{{A@f{ce}}}}}}}{{A@l{{h{{A@f{ce}}}}}}}A@`A@j}{{{h{{Oj{A@n}}}}Bb}{{Bf{{Oj{AA`}}AAb}}}}{{{h{c}}}{{h{e}}}{}{}}000{{{h{dc}}}{{h{de}}}{}{}}000{{{h{{A@f{ce}}}}}{{Ml{{h{{A@f{ce}}}}}}}A@`A@j}{{{h{{A@f{ce}}}}{h{g}}}{{AAf{{AAd{c}}}}}{A@bA@`}A@j{{AAh{c}}}}0`{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{A@f{cAC`}}}}}{{Bf{AbAAl}}}A@`}{{{h{{A@f{cACb}}}}}{{Bf{AbAAl}}}A@`}2022102102{{{h{c}}}{{Bf{AbAAl}}}A@`}00{{{h{{A@h{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{A@h{cAC`}}}}}{{Bf{AbAAl}}}A@`}{{{h{{A@h{cACb}}}}}{{Bf{AbAAl}}}A@`}{{{h{{Cj{{Ml{Ch}}}}}}}{{Bf{AbAAl}}}}00`{{{h{{Oj{c}}}}}{{Oj{c}}}{AlA@`}}{{{h{AC`}}}AC`}{{{h{ACb}}}ACb}{{{h{{A@f{ce}}}}}{{A@f{ce}}}{AlA@`}{AlA@j}}{{{h{c}}{h{de}}}Ab{}{}}000{{{h{{Oj{c}}}}{h{{Oj{c}}}}}F`{ACdA@`}}{{{h{AC`}}{h{AC`}}}F`}{{{h{ACb}}{h{ACb}}}F`}{{{h{{A@f{ce}}}}{h{{A@f{ce}}}}}F`A@`A@j}{{{h{{A@f{ce}}}}}GhA@`A@j}{{{h{{Oj{A@n}}}}Bb}{{Bf{{Oj{AA`}}AAb}}}}{{{h{{Oj{A@n}}}}{h{{M`{c}}}}Bb}{{Bf{{Oj{ACf}}AAb}}}ACh}{{{h{{Oj{AA`}}}}{h{{M`{c}}}}}{{Bf{{Oj{ACf}}AAb}}}ACh}{{{h{{Oj{c}}}}}ACjA@`}{{{h{{Oj{A@n}}}}}ACl}{c{{Bf{{Oj{e}}}}}GfACn}{c{{Bf{{A@f{eg}}}}}GfACnA@j}{{{h{{Oj{A@n}}}}}C`}{{{h{{A@f{ce}}}}}Af{A@bA@`}A@j}{{{h{{Oj{c}}}}{h{{Oj{c}}}}}Gh{GlA@`}}{{{h{AC`}}{h{AC`}}}Gh}{{{h{ACb}}{h{ACb}}}Gh}{{{h{{A@f{ce}}}}{h{{A@f{ce}}}}}GhA@`A@j}{{{h{c}}{h{e}}}Gh{}{}}0000000`{{{h{{Oj{c}}}}}{{Bf{AfOn}}}{A@`A@b}}`{{{h{{A@f{ce}}}}{h{AD`}}}{{Bf{AbADb}}}A@`A@j}{{{h{ADd}}{h{Jl}}ADf{h{{M`{Ln}}}}}{{Bf{{Gb{Ll}}G`}}}}{{{h{{Oj{A@n}}}}{h{Jl}}ADf{h{{M`{Ln}}}}}{{Bf{{Gb{Ll}}G`}}}}{{{h{{A@f{A@nc}}}}{h{Jl}}ADf{h{{M`{Ln}}}}}{{Bf{{Gb{Ll}}G`}}}A@j}{{{h{{Oj{A@n}}}}{h{{M`{c}}}}{h{L`}}{ADh{Bb}}}{{Bf{{Gb{{Cb{Bb{Oj{ACf}}}}}}AAb}}}ACh}{{{h{{Oj{c}}}}{h{dHh}}}{{Bf{AbHj}}}A@`}0{{{h{AC`}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{ACb}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{{A@f{ce}}}}{h{dHh}}}{{Bf{AbHj}}}A@`A@j}0{{{h{{Oj{c}}}}e}GhA@`{{N`{{h{c}}}{{Mn{Gh}}}}}}{{{h{{A@f{ce}}}}g}GhA@`A@j{{N`{{h{c}}}{{Mn{Gh}}}}}}{cc{}}{{{ADj{c}}}{{Oj{c}}}A@`}{{{ADl{c}}}{{Oj{c}}}A@`}{{{ADn{c}}}{{Oj{c}}}A@`}{{{AE`{c}}}{{Oj{c}}}A@`}{{{AEb{c}}}{{Oj{c}}}A@`}{{{AEd{c}}}{{Oj{c}}}A@`}666{{{A@h{ce}}}{{Bf{{A@f{ce}}On}}}A@`A@j}{{{A@h{ce}}AEfAEh}{{A@f{ce}}}A@`A@j}{{{h{Nd}}}{{Bf{{Oj{c}}On}}}ACn}{{{h{Nd}}}{{Bf{{A@f{ce}}On}}}ACnA@j}{{{h{Nd}}{h{AD`}}}{{Bf{{A@f{ce}}On}}}ACnA@j}1{{{h{AEj}}}{{Bf{{Oj{c}}On}}}ACn}{{{h{AEj}}}{{Bf{{A@f{ce}}On}}}ACnA@j}{{{h{{A@f{ce}}}}AEl}{{Gb{{h{{A@f{ce}}}}}}}A@`A@j}{{{h{{A@f{ce}}}}AEl}{{Gb{c}}}A@`A@j}{{{h{{Oj{c}}}}e}{{Bf{{Cb{{Ml{{Ml{Ch}}}}Af}}On}}}{A@`A@b}{{AEn{c}}}}0{{{h{{A@f{ce}}}}}GhA@`A@j}0{{{h{{Oj{A@n}}}}}Gh}{{{h{{Oj{c}}}}{h{de}}}Ab{AF`A@`}Kb}{{{h{AC`}}{h{dc}}}AbKb}{{{h{ACb}}{h{dc}}}AbKb}{{{h{{A@f{ce}}}}{h{dg}}}AbA@`A@jKb}{ce{}{}}000{{{A@f{ce}}}{{A@h{ce}}}A@`A@j}{{{Oj{A@n}}}{{Bf{{Ml{{Oj{A@n}}}}On}}}}{{Fj{h{{M`{Ln}}}}Eb}{{Bf{{Cb{LbLd}}G`}}}}{{Lb{h{{M`{Ln}}}}Eb}{{Bf{{Cb{LbLd}}G`}}}}99:{{{h{{A@f{ce}}}}}{{AFb{ce}}}A@`A@j}{{{h{{A@f{ce}}}}}{{AFd{ce}}}A@`A@j}{{{h{{Oj{c}}}}}{{Bf{{AFf{c}}On}}}A@`}{{{h{{A@f{ce}}}}}{{Bf{{AFf{c}}On}}}A@`A@j}{{{h{{A@f{ce}}}}}{{Bf{AbAFh}}}A@`A@j}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Gb{AEl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{A@f{cAC`}}}}}{{Gb{AEl}}}A@`}{{{h{{A@f{cACb}}}}}{{Gb{AEl}}}A@`}{{{h{{A@f{ce}}}}}{{Bf{AElOn}}}A@`A@j}{{{h{{Oj{c}}}}}{{Bf{AElOn}}}A@`}1{{{h{{Oj{c}}}}}{{Bf{AFjOn}}}A@`}{{}{{h{Nd}}}}00{{{A@f{cAFl}}}{{Bf{{Oj{c}}On}}}A@`}{c{{Oj{c}}}A@`}{c{{Bf{{Oj{c}}On}}}A@`}{{{A@f{cAC`}}}{{Bf{{Oj{c}}On}}}A@`}{{AEl{Ml{c}}}{{Bf{{Oj{c}}On}}}A@`}{{{AEb{c}}}{{Oj{c}}}A@`}{{{AE`{c}}}{{Oj{c}}}A@`}4{{{A@f{cACb}}}{{Bf{{Oj{c}}On}}}A@`}3{{c{Gb{{AFn{c}}}}}{{Bf{{Oj{c}}On}}}A@`}614`{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{L`}}}{{Bf{{A@f{c}}On}}}A@j}{{{h{{M`{c}}}}{h{Nd}}}{{Bf{{Cb{{Oj{A@n}}{An{A@nAG`}}}}On}}}AGb}1{{{h{L`}}{h{AD`}}}{{Bf{{A@f{c}}On}}}A@j}{{{h{{Oj{c}}}}{h{{Oj{c}}}}}{{Gb{F`}}}{AGdA@`}}{{{h{AC`}}{h{AC`}}}{{Gb{F`}}}}{{{h{ACb}}{h{ACb}}}{{Gb{F`}}}}{{{h{{A@f{ce}}}}{h{{A@f{ce}}}}}{{Gb{F`}}}A@`A@j}{{{h{c}}}AElA@`}00{{{Oj{AA`}}{h{c}}}{{Bf{AGf{Oj{AA`}}}}}{{AAh{AA`}}}}0`{{{h{{A@f{ce}}}}}GhA@`A@j}{{{h{{Oj{c}}}}}{{Bf{AbOn}}}A@`}{{{h{{A@f{ce}}}}}{{Bf{AbADb}}}A@`A@j}{{{h{{Oj{c}}}}{h{dAGh}}e}{{Bf{AbOn}}}{A@`A@b}{{AEn{c}}}}{{{h{{A@f{ce}}}}g}{{Bf{{Ml{{Ml{Ch}}}}On}}}{A@bA@`}A@j{{AEn{c}}}}0{{{h{{Oj{c}}}}}{{Bf{AfOn}}}{A@`A@b}}{{{h{{Oj{c}}}}}Af{A@`A@b}}{{{h{{A@f{ce}}}}}AElA@`A@j}{{{h{{Oj{c}}}}e}BfA@`Md}{{{h{{A@f{ce}}}}g}BfA@`A@jMd}{{}AGj}00{{{h{{A@f{ce}}}}{h{{An{ABlc}}}}}{{A@f{ce}}}A@`A@j}`{{{h{c}}}e{}{}}000{{{h{c}}}Gd{}}0{{{h{{Oj{A@n}}}}{h{{An{A@nAG`}}}}}Gd}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}0{{{h{{Oj{c}}}}{h{di}}}{{Bf{{AGl{g}}}}}A@`A@`{}{{AGn{ceg}}}}{{{h{{A@f{ce}}}}{h{dk}}}{{Bf{{AGl{i}}}}}A@`A@jA@`{}{{AGn{cgi}}}}{c{{Bf{e}}}{}{}}0000000`{{{h{c}}}Nb{}}000={ce{}{}}000{{{h{{A@f{ce}}}}}GhA@`A@j}{{{h{Nd}}}{{Bf{GdG`}}}}``````````````{{{h{c}}}{{h{e}}}{}{}}{{{h{dc}}}{{h{de}}}{}{}}{{{h{G`}}{h{G`}}}Gh}{{{h{G`}}{h{dHh}}}Hl}0{cc{}}{AH`G`}{AHbG`}{AHdG`}{AHfG`}{OnG`}{AHhG`}{AHjG`}>{{{h{c}}}Gd{}}{c{{Bf{e}}}{}{}}0{{{h{c}}}Nb{}}{ce{}{}}```````````````````````````````````???????>>>>>>>{{{h{AHl}}}AHl}{{{h{AHn}}}AHn}{{{h{AI`}}}AI`}{{{h{Ll}}}Ll}{{{h{AIb}}}AIb}{{{h{ADf}}}ADf}{{{h{c}}{h{de}}}Ab{}{}}00000``{{}AIb}{{{h{AHl}}{h{AHl}}}Gh}{{{h{AHn}}{h{AHn}}}Gh}{{{h{AI`}}{h{AI`}}}Gh}{{{h{Ll}}{h{Ll}}}Gh}{{{h{AIb}}{h{AIb}}}Gh}{{{h{AHj}}{h{AHj}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}00000000000{{{h{AHl}}{h{dHh}}}Hl}{{{h{AHn}}{h{dHh}}}Hl}{{{h{AI`}}{h{dHh}}}Hl}{{{h{Ll}}{h{dHh}}}Hl}{{{h{AIb}}{h{dHh}}}Hl}{{{h{AHj}}{h{dHh}}}Hl}0{{{h{ADf}}{h{dHh}}}Hl}{cc{}}00{GhAI`}1{AHnLl}222{{{h{Ll}}{h{{An{Gd{Ml{AEl}}}}}}}{{Bf{AIbAHj}}}}{{{h{AHl}}{h{dc}}}AbKb}{{{h{AIb}}{h{dc}}}AbKb}{{{h{AHn}}}Gd}`{ce{}{}}000000{{{h{AHn}}}Gh}{{{h{AI`}}}Gh}{{{h{AIb}}}Gh}`{{{h{AIb}}{h{AIb}}}{{Gb{F`}}}}{{{h{Ll}}}Gh}`{{{h{AHl}}c}BfMd}{{{h{AHn}}c}BfMd}{{{h{AI`}}c}BfMd}{{{h{Ll}}c}BfMd}{{{h{AIb}}c}BfMd}`{{{h{c}}}e{}{}}00000{{{h{c}}}Gd{}}{c{{Bf{e}}}{}{}}0000000000000{{{h{c}}}Nb{}}000000>>>>>>>``````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{dc}}}{{h{de}}}{}{}}00000000000{{AIdEb}{{Bf{AIfG`}}}}{{{AIh{c}}Eb}{{Bf{AIfG`}}}{{AIj{AC`}}}}{{{AIl{c}}Eb}{{Bf{AIfG`}}}{{AIj{ACb}}}}{{{AIn{c}}Eb}{{Bf{AIfG`}}}{{AIj{ACb}}}}{{{AJ`{c}}Eb}{{Bf{AIfG`}}}{{AIj{AJb}}}}{{{AJd{c}}Eb}{{Bf{AIfG`}}}{{AJf{AC`}}}}{{{AJh{c}}Eb}{{Bf{AIfG`}}}{{AJf{AC`}}}}{{{AJj{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AJl{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AJn{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AK`{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AKb{c}}Eb}{{Bf{AIfG`}}}{{AJf{AJb}}}}{{{AKd{c}}Eb}{{Bf{AIfG`}}}{{AJf{AJb}}}}{{{h{{AIh{c}}}}}{{AIh{c}}}{Al{AIj{AC`}}}}{{{h{{AIl{c}}}}}{{AIl{c}}}{Al{AIj{ACb}}}}{{{h{{AIn{c}}}}}{{AIn{c}}}{Al{AIj{ACb}}}}{{{h{{AJ`{c}}}}}{{AJ`{c}}}{Al{AIj{AJb}}}}{{{h{{AJd{c}}}}}{{AJd{c}}}{Al{AJf{AC`}}}}{{{h{{AJh{c}}}}}{{AJh{c}}}{Al{AJf{AC`}}}}{{{h{{AJj{c}}}}}{{AJj{c}}}{Al{AJf{ACb}}}}{{{h{{AJl{c}}}}}{{AJl{c}}}{Al{AJf{ACb}}}}{{{h{{AJn{c}}}}}{{AJn{c}}}{Al{AJf{ACb}}}}{{{h{{AK`{c}}}}}{{AK`{c}}}{Al{AJf{ACb}}}}{{{h{{AKb{c}}}}}{{AKb{c}}}{Al{AJf{AJb}}}}{{{h{{AKd{c}}}}}{{AKd{c}}}{Al{AJf{AJb}}}}{{{h{c}}{h{de}}}Ab{}{}}00000000000{{{h{{AIh{c}}}}{h{dHh}}}Hl{Hn{AIj{AC`}}}}{{{h{{AIl{c}}}}{h{dHh}}}Hl{Hn{AIj{ACb}}}}{{{h{{AIn{c}}}}{h{dHh}}}Hl{Hn{AIj{ACb}}}}{{{h{{AJ`{c}}}}{h{dHh}}}Hl{Hn{AIj{AJb}}}}{{{h{{AJd{c}}}}{h{dHh}}}Hl{Hn{AJf{AC`}}}}{{{h{{AJh{c}}}}{h{dHh}}}Hl{Hn{AJf{AC`}}}}{{{h{{AJj{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AJl{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AJn{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AK`{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AKb{c}}}}{h{dHh}}}Hl{Hn{AJf{AJb}}}}{{{h{{AKd{c}}}}{h{dHh}}}Hl{Hn{AJf{AJb}}}}{cc{}}00000000000{ce{}{}}00000000000{{AIf{h{{M`{Ln}}}}Eb}{{Bf{{Cb{LbLd}}G`}}}}{{c{h{{M`{Ln}}}}Eb}{{Bf{{Cb{{Oj{A@n}}{An{A@nAG`}}}}G`}}}{}}00000000000{{{h{c}}}e{}{}}00000000000{c{{Bf{e}}}{}{}}00000000000000000000000{{{h{c}}}Nb{}}00000000000555555555555`````````````````````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{dc}}}{{h{de}}}{}{}}00{{{h{AKf}}}AKf}{{{h{c}}{h{de}}}Ab{}{}}{{{h{AKf}}{h{dHh}}}Hl}0{{{h{Jj}}{h{dHh}}}Hl}0{{{h{Df}}{h{dHh}}}Hl}0=={G`Jj}{AKfJj}{AHjJj}{AKhJj}{NfJj}{cc{}}{ce{}{}}00{{{h{c}}}e{}{}}{{{h{c}}}Gd{}}00{c{{Bf{e}}}{}{}}00000{{{h{c}}}Nb{}}00444``````````{{{h{c}}}{{h{e}}}{}{}}{{{h{dc}}}{{h{de}}}{}{}}{{{h{AKj}}}{{Gb{Gd}}}}{{{h{AKj}}}Gd}{c{{Bf{AKj}}}Gf}{{{h{f}}{h{Nd}}Gh}{{Bf{AKj{h{Nd}}}}}}{{{h{AKj}}{h{dHh}}}Hl}0<{{{h{Nd}}}{{Bf{AKjc}}}{}}<``{{{h{AKj}}c}BfMd};::9=```````````````````````````````````````````{{}AKl}{{}A@d}{{A@nBb}{{Bf{AA`AAb}}}};;;;;;;;;;;;::::::::::::{{{h{{AKn{ce}}}}{h{g}}}{{AAf{{AAd{c}}}}}{A@bA@`}A@j{{AAh{c}}}}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}00000{{{h{c}}}{{Bf{AbAAl}}}A@`}{{{h{{A@h{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{Cj{{Ml{Ch}}}}}}}{{Bf{AbAAl}}}}{{{h{{AL`{ce}}}}}{{AL`{ce}}}AlA@j}{{{h{A@d}}}A@d}{{{h{ALb}}}ALb}{{{h{{AKn{ce}}}}}{{AKn{ce}}}{AlA@`}{AlA@j}}{{{h{A@n}}}A@n}{{{h{AG`}}}AG`}{{{h{ALd}}}ALd}{{{h{ALf}}}ALf}{{{h{ALh}}}ALh}{{{h{c}}{h{de}}}Ab{}{}}00000000{{{h{{AKn{ce}}}}{h{{AKn{ce}}}}}F`{ACdA@`}{ACdA@j}}{{{h{A@n}}{h{A@n}}}F`}{{{h{ALd}}{h{ALd}}}F`}{{{h{ALh}}{h{ALh}}}F`}`{{}ALb}{{{h{{AL`{ce}}}}}{{h{g}}}{}A@j{}}{{A@nBb}{{Bf{AA`AAb}}}}{c{{Bf{A@n}}}Gf}{{{h{{AKn{ce}}}}}Af{A@bA@`}A@j}{{{h{A@d}}{h{A@d}}}Gh}{{{h{AHh}}{h{AHh}}}Gh}{{{h{{AKn{ce}}}}{h{{AKn{ce}}}}}Gh{GlA@`}{GlA@j}}{{{h{A@n}}{h{A@n}}}Gh}{{{h{AG`}}{h{AG`}}}Gh}{{{h{ALd}}{h{ALd}}}Gh}{{{h{ALf}}{h{ALf}}}Gh}{{{h{ALh}}{h{ALh}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0000000000000{{{h{{ALj{c}}}}{h{dHh}}}Hl{HnA@j}}{{{h{A@d}}{h{dHh}}}Hl}{{{h{ALb}}{h{dHh}}}Hl}{{{h{AHh}}{h{dHh}}}Hl}0{{{h{{AKn{ce}}}}{h{dHh}}}{{Bf{AbHj}}}A@`A@j}0{{{h{A@n}}{h{dHh}}}{{Bf{AbHj}}}}0{{{h{AG`}}{h{dHh}}}{{Bf{AbHj}}}}0{{{h{ALd}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{ALf}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{ALh}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{{AKn{ce}}}}g}GhA@`A@j{{N`{{h{c}}}{{Mn{Gh}}}}}}{cc{}}{ALl{{ALn{c}}}A@j}{AM`{{ALn{c}}}A@j}2222{OnAHh}{AHdAHh}44{AA`A@n}55555{{A@nAKl}{{ALj{c}}}A@j}{{AG`AKl}{{ALj{c}}}A@j}{{{h{Nd}}}{{Bf{A@n}}}}{{{h{Nd}}}{{Bf{AG`}}}}{{{h{AEj}}}{{Bf{{AKn{ce}}On}}}{AMbA@`}A@j}{{{h{A@n}}}{{Gb{AMd}}}}{{{h{A@n}}}{{Ml{AMd}}}}{c{{Bf{{AL`{{AMj{}{{AMf{e}}{AMh{c}}{Kd{g}}}}i}}g}}}{}{{AMl{{Cj{Ch}}}}Oh}HnA@j}{{}{{Bf{{AL`{AMnc}}e}}}A@j{}}{{{h{dc}}}{{Bf{{AL`{AMne}}g}}}{AN`Od}A@j{}}{{c{h{de}}}{{Bf{{AL`{{AMj{}{{AMf{g}}{AMh{c}}{Kd{i}}}}k}}i}}}{}{AN`Od}{{AMl{{Cj{Ch}}}}Oh}HnA@j}{{ce}{{Bf{{AL`{{AMj{}{{AMf{e}}{AMh{c}}{Kd{g}}}}i}}g}}}{}{{AMl{{Cj{Ch}}}}Oh}HnA@j}{c{{Bf{{AL`{AMne}}g}}}{}A@j{}}{{{h{{ALn{c}}}}}GhA@j}{{{h{A@n}}}Gh}{{{h{{AKn{ce}}}}{h{dg}}}Ab{AF`A@`}{AF`A@j}Kb}{{{h{A@n}}{h{dc}}}AbKb}{{{h{ALd}}{h{dc}}}AbKb}{{{h{ALh}}{h{dc}}}AbKb}{ce{}{}}00000000000{A@nANb}{AIj{{Bf{{ALj{c}}AHh}}}A@j}{{AJf{Gb{ANd}}AMd}{{Bf{{ALj{c}}AHh}}}A@j}{{{AL`{ec}}{Gb{ANd}}AMd}{{Bf{{ALj{c}}AHh}}}A@j{{AJf{c}}}}{{{AL`{ec}}}{{Bf{{ALj{c}}AHh}}}A@j{{AIj{c}}}}{{{ALj{c}}}{{Bf{{ALj{c}}AHh}}}A@j}{A@n{{Bf{{ALj{c}}AHh}}}A@j}{AG`{{Bf{{ALj{c}}AHh}}}A@j}{AJf{{Bf{{ALn{c}}AHh}}}A@j}{{{ALn{c}}}{{Bf{{ALn{c}}AHh}}}A@j}{{{AL`{ec}}}{{Bf{{ALn{c}}AHh}}}A@j{{AJf{c}}}}{{{AL`{ce}}}c{}A@j}{A@n{{Ml{A@n}}}}{AG`{{Ml{AG`}}}}{{{ALn{c}}Eb}{{Gb{ALl}}}A@j}{{{ALn{c}}Eb{h{{M`{e}}}}}AM`A@jAGb}{{{h{A@n}}}Gh}{{}Gh}{{{h{A@d}}}Gh}2{{{h{AG`}}}Gh}212133{{{h{{AKn{ce}}}}}AElA@`A@j}``{{{h{{AKn{ce}}}}}{{Bf{{AFf{c}}On}}}A@`A@j}{{}AKl}{{{h{A@n}}}ANf}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Gb{AEl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}44{{{h{AKl}}{h{AKl}}}AKl}5{{}{{h{Nd}}}}{{AEl{Ml{c}}}{{Bf{{AKn{ce}}On}}}A@`A@j}{{{h{A@n}}}AEl}``{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{ALj{c}}AKl}{{ALj{c}}}A@j}{{{h{{AKn{ce}}}}{h{{AKn{ce}}}}}{{Gb{F`}}}{AGdA@`}{AGdA@j}}{{{h{A@n}}{h{A@n}}}{{Gb{F`}}}}{{{h{ALd}}{h{ALd}}}{{Gb{F`}}}}{{{h{ALh}}{h{ALh}}}{{Gb{F`}}}}{{{h{c}}}AElA@`}{{{h{{AKn{ce}}}}}{{h{{Cj{c}}}}}A@`A@j}{{{h{{AKn{ce}}}}}{{Bf{AbOn}}}A@`A@j}{{{h{{AKn{ce}}}}g}{{Bf{{Ml{{Ml{Ch}}}}On}}}{A@bA@`}A@j{{AEn{c}}}}{{{h{{AKn{ce}}}}}AElA@`A@j}{{{h{A@n}}c}BfMd}{{}AGj}{{{h{{AKn{ce}}}}}{{A@h{ce}}}{A@bA@`}A@j}{{}AKl}{{{h{c}}}e{}{}}00000000{{{h{AG`}}{h{{M`{c}}}}}{{Bf{A@nANh}}}AGb}{{{h{c}}}Gd{}}000{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}0{{{h{{AKn{ce}}}}{h{dk}}}{{Bf{{AKn{ge}}{AGl{i}}}}}A@`A@jA@`{}{{AGn{cgi}}}}{c{{Bf{e}}}{}{}}00000000000000000000000{{{h{c}}}Nb{}}00000000000{ce{}{}}00000000000`{{{h{ANj}}}{{Gb{Dh}}}}{{{h{ANj}}}{{Gb{Dl}}}}{{{h{ANj}}AEl}{{Gb{Kl}}}}`{{{h{Jb}}{h{Nd}}{h{{Cj{{h{{Cj{{h{Nd}}}}}}}}}}}{{Bf{AbANl}}}}````````````````````````````````````{{{h{dJl}}ANnl{A`{n}}}{{Gb{{A`{n}}}}}}``{{{h{Jl}}{h{{M`{Ln}}}}}Ld}`{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{dc}}}{{h{de}}}{}{}}0000000{{Ld{h{{Oj{A@n}}}}{h{{M`{Ln}}}}}Jl}{{{h{ANn}}}ANn}{{{h{AO`}}}AO`}{{{h{{AOb{c}}}}}{{AOb{c}}}{AlAOdHnAl}}{{{h{l}}}l}{{{h{Jl}}}Jl}{{{h{Hd}}}Hd}{{{h{AOf}}}AOf}{{{h{c}}{h{de}}}Ab{}{}}000000{{{h{ANn}}{h{ANn}}}F`}{{{h{l}}{h{l}}}F`}{{}l}{{}Jl}{{}Hd}{{}AOf}{{{h{{AOb{c}}}}}{{h{e}}}{AOdHnAl}{}}{{{h{AOh}}}{{Gb{AG`}}}}0{{{h{{AOb{AOj}}}}}{{Gb{AG`}}}}{{{h{{AOb{{AOl{ALl}}}}}}}{{Gb{AG`}}}}{{{h{{AOb{{AOn{ALl}}}}}}}{{Gb{AG`}}}}{{{h{ANn}}{h{ANn}}}Gh}{{{h{AO`}}{h{AO`}}}Gh}{{{h{l}}{h{l}}}Gh}{{{h{AOf}}{h{AOf}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0000000{{{h{Jl}}ANn}{{Gb{{h{{A`{n}}}}}}}}{{{h{ANn}}{h{dHh}}}Hl}{{{h{Hf}}{h{dHh}}}Hl}0{{{h{AO`}}{h{dHh}}}Hl}{{{h{{AOb{c}}}}{h{dHh}}}Hl{HnAOdHnAl}}{{{h{l}}{h{dHh}}}Hl}{{{h{Jl}}{h{dHh}}}Hl}{{{h{Hd}}{h{dHh}}}Hl}{{{h{AOf}}{h{dHh}}}Hl}{ANfANn}{ABlANn}{cc{}}0000000{{{h{ANn}}{h{dc}}}AbKb}{{{h{AOh}}{h{{M`{Ln}}}}}ANn}{{{h{{AOb{AOj}}}}{h{{M`{Ln}}}}}ANn}{{{h{{AOb{{AOl{ALl}}}}}}{h{{M`{Ln}}}}}ANn}{{{h{{AOb{{AOn{ALl}}}}}}{h{{M`{Ln}}}}}ANn}{{{h{Jl}}}{{Ml{{h{ANn}}}}}}{ce{}{}}0000000{{cAO`}{{AOb{c}}}{AOdHnAl}}{{}Jl}{{{h{ANn}}{h{ANn}}}{{Gb{F`}}}}{{{h{l}}{h{l}}}{{Gb{F`}}}}{{{h{dJl}}ANnl}{{Gb{{A`{n}}}}}}{{{h{B@`}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{{AOb{{AOl{ALl}}}}}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{{AOb{{AOn{ALl}}}}}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{{AOb{AOj}}}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{n}}{h{dHb}}{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{c}}{h{dHb}}{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}{}}`{{{h{Jl}}}{{Ml{{h{{A`{n}}}}}}}}`{{{h{c}}}e{}{}}000000{{{h{c}}}Gd{}}``{c{{Bf{e}}}{}{}}000000000000000{{{h{c}}}Nb{}}0000000{ce{}{}}0000000````````````````{{{h{d{Dd{c}}}}{h{e}}}{{h{d{Dd{c}}}}}{}{{B@d{B@b}}}}{{{h{d{Dd{c}}}}K`JhAFj}{{Bf{{h{d{Dd{c}}}}B@f}}}{}}{{{h{d{Dd{c}}}}K`JhAFjMb}{{Bf{{h{d{Dd{c}}}}B@f}}}{}}{{{h{d{Dd{c}}}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}AfDh}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}K`}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}K`}{{Bf{{h{d{Dd{c}}}}B@h}}}{}}{{{h{d{Dd{c}}}}{h{{Cj{K`}}}}}{{Bf{{h{d{Dd{c}}}}B@h}}}{}}{{{h{d{Dd{c}}}}Gh}{{h{d{Dd{c}}}}}{}}{{{h{c}}}{{h{e}}}{}{}}0000{{{h{dc}}}{{h{de}}}{}{}}0000{{{h{d{Dd{c}}}}B@j}{{h{d{Dd{c}}}}}{}}{{{h{B@l}}}B@l}{{{h{B@j}}}B@j}{{{h{c}}{h{de}}}Ab{}{}}0{{{h{B@j}}{h{B@j}}}F`}{{{Dd{c}}e}{{Dd{e}}}{}O`}{{{h{d{Dd{c}}}}Bb}{{h{d{Dd{c}}}}}{}}{{}B@l}{{}B@j}{{{h{d{Dd{c}}}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Af}{{h{d{Dd{c}}}}}{}}1{{{h{B@j}}{h{B@j}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0{{{h{d{Dd{c}}}}Dh}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Dl}{{h{d{Dd{c}}}}}{}}{{{Dd{c}}}{{Bf{HbJj}}}O`}{{{Dd{c}}{h{de}}}{{Bf{HbJj}}}O`Od}{{{h{{Dd{c}}}}{h{dHh}}}HlHn}{{{h{B@h}}{h{dHh}}}Hl}0{{{h{B@f}}{h{dHh}}}Hl}0{{{h{B@l}}{h{dHh}}}Hl}{{{h{B@j}}{h{dHh}}}Hl}{cc{}}0000{{{h{B@j}}{h{dc}}}AbKb}>{ce{}{}}0000?{{{h{d{Dd{c}}}}B@n}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}}{{h{d{Dd{c}}}}}{}}0{{{h{d{Dd{c}}}}B@l}{{h{d{Dd{c}}}}}{}}{{{h{B@j}}{h{B@j}}}{{Gb{F`}}}}{{{h{d{Dd{c}}}}{An{Gd{Ml{AEl}}}}j}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Mb}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}{Ml{{Cb{AfDh}}}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Jf}{{h{d{Dd{c}}}}}{}}{{{h{B@l}}{h{dBl}}}Ab}{{{h{B@l}}{h{dBl}}{h{dc}}}AbOd}{{{h{c}}}e{}{}}0{{{h{c}}}Gd{}}0{c{{Bf{e}}}{}{}}000000000{{{h{c}}}Nb{}}0000{{{h{d{Dd{c}}}}{Ml{K`}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}BA`}{{h{d{Dd{c}}}}}{}}{ce{}{}}0000````","D":"GCf","p":[[5,"Balance",0,1987],[0,"mut"],[5,"Wallet",0,1988],[1,"reference"],[6,"KeychainKind",0,1989],[5,"SignerOrdering",1685,1990],[10,"TransactionSigner",1685,1990],[5,"Arc",1991],[1,"unit"],[17,"Item"],[5,"ScriptBuf",1992],[8,"Indexed",1993],[10,"Iterator",1994],[10,"Clone",1995],[5,"BTreeMap",1996],[5,"Block",1997],[1,"u32"],[5,"CannotConnectError",1998],[6,"Result",1999],[5,"BlockId",2000],[6,"ApplyHeaderError",1998],[5,"Transaction",2001],[10,"Into",2002],[1,"u64"],[1,"tuple"],[10,"IntoIterator",2003],[5,"Update",0,1988],[1,"u8"],[1,"slice"],[5,"ConfirmationBlockTime",2000],[5,"TxGraph",2004],[5,"Txid",2001],[8,"DefaultCoinSelectionAlgorithm",486,2005],[5,"TxBuilder",1872,2006],[6,"BuildFeeBumpError",1264,2007],[5,"Amount",2008],[6,"CalculateFeeError",2004],[5,"FeeRate",2009],[5,"LoadParams",0,2010],[5,"BlockHash",1997],[6,"Network",2011],[5,"CheckPointIter",2012],[5,"LocalOutput",0,1989],[5,"WeightedUtxo",0,1989],[6,"Utxo",0,1989],[5,"ChangeSet",0,2013],[5,"AddressInfo",0,1988],[6,"Ordering",2014],[5,"CreateParams",0,2010],[5,"PersistedWallet",0,2015],[6,"CreateWithPersistError",0,2015],[10,"WalletPersister",0,2015],[10,"IntoWalletDescriptor",603],[10,"Send",2016],[10,"AsyncWalletPersister",0,2015],[6,"Error",864],[6,"Option",2017],[5,"String",2018],[10,"Deserializer",2019],[1,"bool"],[6,"LoadWithPersistError",0,2015],[10,"PartialEq",2014],[6,"LoadError",0,1988],[6,"LoadMismatch",0,1988],[5,"Psbt",2020],[5,"SignOptions",1685,1990],[6,"SignerError",1685,1990],[5,"Formatter",2021],[5,"Error",2021],[8,"Result",2021],[10,"Debug",2021],[6,"FileStoreError",0,2015],[10,"Display",2021],[6,"ApplyBlockError",0,1988],[5,"ChangeSet",2022],[5,"ChangeSet",2004],[5,"ChangeSet",1998],[5,"ChangeSet",2023],[5,"SyncResponse",2024],[5,"FullScanResponse",2024],[5,"Transaction",2025],[8,"Result",2026],[5,"PsbtSighashType",2027],[5,"Input",2027],[6,"CreateTxError",1264,2007],[5,"SignersContainer",1685,1990],[8,"WalletTx",0,1988],[5,"OutPoint",2001],[10,"Hasher",2028],[17,"Error"],[10,"Future",2029],[5,"Box",2030],[5,"Pin",2031],[5,"TxOut",2001],[10,"IsDust",0,2032],[5,"Script",2033],[8,"ExtendedDescriptor",603],[8,"KeyMap",1363,2034],[5,"CheckPoint",2012],[10,"DoubleEndedIterator",2035],[5,"LocalChain",1998],[5,"Policy",897],[6,"All",2036],[5,"Secp256k1",2037],[5,"Sequence",2001],[10,"Serializer",2038],[5,"KeychainTxOutIndex",2022],[5,"FullScanRequestBuilder",2024],[5,"SyncRequestBuilder",2024],[5,"Vec",2039],[17,"Output"],[10,"FnMut",2040],[5,"TypeId",2041],[1,"str"],[5,"InsufficientFunds",486,2005],[5,"LargestFirstCoinSelection",486,2005],[5,"OldestFirstCoinSelection",486,2005],[5,"BranchAndBoundCoinSelection",486,2005],[5,"SingleRandomDraw",486,2005],[10,"CoinSelectionAlgorithm",486,2005],[5,"CoinSelectionResult",486,2005],[10,"RngCore",2042],[6,"Excess",486,2005],[10,"Default",2043],[6,"Descriptor",603,2034],[5,"Address",2044],[6,"Error",2045],[10,"MiniscriptKey",2045],[10,"ToPublicKey",2045],[6,"ScriptContextEnum",1363],[5,"Miniscript",603,2046],[6,"Terminal",2047],[10,"ScriptContext",1363,2048],[6,"Tree",2049],[6,"DescriptorPublicKey",1363,2050],[5,"DefiniteDescriptorKey",2050],[6,"ConversionError",2050],[6,"Placeholder",2051],[5,"Satisfaction",2051],[10,"AssetProvider",2052],[17,"Key"],[6,"ScriptContextError",2048],[17,"Sha256"],[5,"Hash",2053],[17,"Hash256"],[5,"Hash",2054],[17,"Ripemd160"],[5,"Hash",2055],[17,"Hash160"],[5,"Hash",2056],[10,"ParseableKey",2047],[6,"Legacy",603,2048],[6,"Segwitv0",603,2048],[10,"Ord",2014],[5,"PublicKey",2057],[10,"Verification",2058],[6,"DescriptorType",2034],[5,"DescriptorId",2059],[10,"FromStrKey",2060],[5,"ExtParams",2061],[6,"AnalysisError",2061],[10,"ExtractPolicy",603],[6,"BuildSatisfaction",897],[5,"Range",2062],[5,"Pkh",2063],[5,"Tr",2064],[5,"Sh",2065],[5,"Wsh",2066],[5,"Wpkh",2066],[5,"Bare",2063],[5,"Type",2067],[5,"ExtData",2068],[5,"Tree",2069],[1,"usize"],[10,"Satisfier",2051],[10,"Hash",2028],[5,"Iter",2070],[5,"PkIter",2070],[6,"Policy",2071],[6,"LiftError",2072],[5,"Weight",2073],[6,"BareCtx",2048],[6,"TapTree",2064],[6,"DescriptorSecretKey",1363,2050],[10,"Signing",2058],[10,"PartialOrd",2014],[5,"Plan",2052],[5,"TxIn",2001],[6,"SigType",2048],[6,"TranslateErr",2045],[10,"Translator",2045],[6,"ParsePublicKeyError",2057],[6,"Error",2074],[6,"Error",2075],[6,"HexToBytesError",2076],[6,"KeyError",1363],[6,"PolicyError",897],[6,"PkOrF",897],[6,"SatisfiableItem",897],[6,"Satisfaction",897],[5,"Condition",897],[10,"DescriptorTemplate",1080],[8,"DescriptorTemplateOut",1080],[5,"P2Pkh",1080],[10,"IntoDescriptorKey",1363],[5,"P2Wpkh_P2Sh",1080],[5,"P2Wpkh",1080],[5,"P2TR",1080],[6,"Tap",2048],[5,"Bip44",1080],[10,"DerivableKey",1363],[5,"Bip44Public",1080],[5,"Bip49",1080],[5,"Bip49Public",1080],[5,"Bip84",1080],[5,"Bip84Public",1080],[5,"Bip86",1080],[5,"Bip86Public",1080],[6,"MiniscriptPsbtError",1264,2007],[6,"Error",2077],[5,"FullyNodedExport",1340,2078],[8,"ValidNetworks",1363],[5,"SortedMultiVec",1363,2079],[5,"GeneratedKey",1363],[5,"PrivateKeyGenerateOptions",1363],[5,"SinglePub",1363,2050],[5,"SinglePriv",1363,2050],[6,"SinglePubKey",1363,2050],[6,"DescriptorKey",1363],[5,"Xpriv",2075],[6,"ExtendedKey",1363],[5,"Xpub",2075],[10,"FromStr",2080],[5,"DerivationPath",2075],[17,"Entropy"],[17,"Options"],[10,"GeneratableKey",1363],[10,"AsMut",2002],[10,"GeneratableDefaultOptions",1363],[10,"CryptoRng",2042],[5,"Assets",2052],[8,"KeySource",2075],[5,"Fingerprint",2075],[5,"DescriptorKeyParseError",2050],[10,"PsbtUtils",1679],[6,"Error",2081],[6,"SignerId",1685,1990],[6,"SignerContext",1685,1990],[5,"SignerWrapper",1685,1990],[10,"Sized",2016],[6,"TapLeavesOptions",1685,1990],[10,"SignerCommon",1685,1990],[5,"PrivateKey",2057],[5,"DescriptorXKey",2050],[5,"DescriptorMultiXKey",2050],[10,"InputSigner",1685,1990],[5,"PushBytes",2082],[10,"AsRef",2002],[6,"AddForeignUtxoError",1872,2006],[6,"AddUtxoError",1872,2006],[6,"ChangeSpendPolicy",1872,2006],[6,"TxOrdering",1872,2006],[6,"LockTime",2083],[1,"i32"],[15,"InvalidTxid",1983],[15,"UnexpectedConnectedToHash",472],[15,"Network",474],[15,"Genesis",474],[15,"Descriptor",474],[15,"Custom",1985],[15,"Foreign",483],[15,"Change",598],[15,"NoChange",598],[8,"DerivedDescriptor",603],[15,"PsbtTimelocks",1056],[15,"Complete",1059],[15,"Partial",1059],[15,"PartialComplete",1059],[15,"Sha256Preimage",1070],[15,"Hash256Preimage",1070],[15,"Ripemd160Preimage",1070],[15,"Hash160Preimage",1070],[15,"Thresh",1070],[15,"Multisig",1070],[15,"AbsoluteTimelock",1070],[15,"RelativeTimelock",1070],[15,"RbfSequenceCsv",1334],[15,"LockTime",1334],[15,"FeeTooLow",1334],[15,"FeeRateTooLow",1334],[8,"WalletExport",1340],[10,"ExtScriptContext",1363],[15,"Tap",1871]],"r":[[0,2006],[1,2006],[2,1988],[3,1988],[4,2015],[5,1987],[9,2013],[10,2006],[11,2010],[12,2015],[21,2015],[24,603],[29,2032],[30,1989],[32,1988],[33,1988],[34,2010],[35,2015],[37,1989],[47,2015],[49,1990],[50,2006],[51,2006],[55,1988],[56,1989],[59,1988],[60,2015],[61,1988],[62,1989],[147,1988],[198,1988],[199,1988],[338,2084],[353,1988],[354,1988],[362,603],[421,1988],[469,1988],[486,2005],[488,2005],[489,2005],[490,2005],[491,2005],[492,2005],[493,2005],[495,2005],[496,2005],[527,2005],[607,2034],[609,2050],[616,2048],[617,2046],[622,897],[623,2048],[624,2048],[658,863],[1264,2007],[1267,2007],[1275,2007],[1340,2078],[1341,2078],[1366,2050],[1367,2050],[1382,2034],[1392,2048],[1397,2050],[1398,2050],[1399,2050],[1400,2079],[1683,2085],[1684,2085],[1692,1990],[1709,1990],[1710,1990],[1711,1990],[1712,1990],[1713,1990],[1714,1990],[1715,1990],[1716,1990],[1718,1990],[1719,1990],[1872,2006],[1873,2006],[1876,2006],[1883,2006],[1884,2006]],"b":[[203,"impl-Display-for-Balance"],[204,"impl-Debug-for-Balance"],[211,"impl-Display-for-FileStoreError"],[212,"impl-Debug-for-FileStoreError"],[213,"impl-Display-for-LoadWithPersistError%3CE%3E"],[214,"impl-Debug-for-LoadWithPersistError%3CE%3E"],[215,"impl-Debug-for-CreateWithPersistError%3CE%3E"],[216,"impl-Display-for-CreateWithPersistError%3CE%3E"],[219,"impl-Display-for-AddressInfo"],[220,"impl-Debug-for-AddressInfo"],[221,"impl-Display-for-LoadError"],[222,"impl-Debug-for-LoadError"],[224,"impl-Debug-for-ApplyBlockError"],[225,"impl-Display-for-ApplyBlockError"],[235,"impl-From%3CChangeSet%3E-for-ChangeSet"],[236,"impl-From%3CChangeSet%3CConfirmationBlockTime%3E%3E-for-ChangeSet"],[237,"impl-From%3CChangeSet%3E-for-ChangeSet"],[238,"impl-From%3CChangeSet%3CConfirmationBlockTime,+ChangeSet%3E%3E-for-ChangeSet"],[245,"impl-From%3CSyncResponse%3E-for-Update"],[246,"impl-From%3CFullScanResponse%3CKeychainKind%3E%3E-for-Update"],[537,"impl-Debug-for-InsufficientFunds"],[538,"impl-Display-for-InsufficientFunds"],[696,"impl-Descriptor%3CDescriptorPublicKey%3E"],[697,"impl-Descriptor%3CDefiniteDescriptorKey%3E"],[724,"impl-Display-for-Descriptor%3CPk%3E"],[725,"impl-Debug-for-Descriptor%3CPk%3E"],[728,"impl-Debug-for-Miniscript%3CPk,+Ctx%3E"],[729,"impl-Display-for-Miniscript%3CPk,+Ctx%3E"],[733,"impl-From%3CPkh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[734,"impl-From%3CTr%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[735,"impl-From%3CSh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[736,"impl-From%3CWsh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[737,"impl-From%3CWpkh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[738,"impl-From%3CBare%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[881,"impl-Display-for-Error"],[882,"impl-Debug-for-Error"],[884,"impl-From%3CParsePublicKeyError%3E-for-Error"],[885,"impl-From%3CError%3E-for-Error"],[886,"impl-From%3CError%3E-for-Error"],[887,"impl-From%3CHexToBytesError%3E-for-Error"],[888,"impl-From%3CError%3E-for-Error"],[889,"impl-From%3CKeyError%3E-for-Error"],[890,"impl-From%3CPolicyError%3E-for-Error"],[984,"impl-Debug-for-PolicyError"],[985,"impl-Display-for-PolicyError"],[1301,"impl-Debug-for-MiniscriptPsbtError"],[1302,"impl-Display-for-MiniscriptPsbtError"],[1303,"impl-Display-for-CreateTxError"],[1304,"impl-Debug-for-CreateTxError"],[1305,"impl-Debug-for-BuildFeeBumpError"],[1306,"impl-Display-for-BuildFeeBumpError"],[1309,"impl-From%3CError%3E-for-CreateTxError"],[1310,"impl-From%3CMiniscriptPsbtError%3E-for-CreateTxError"],[1311,"impl-From%3CPolicyError%3E-for-CreateTxError"],[1312,"impl-From%3CError%3E-for-CreateTxError"],[1313,"impl-From%3CInsufficientFunds%3E-for-CreateTxError"],[1350,"impl-Display-for-FullyNodedExport"],[1351,"impl-Debug-for-FullyNodedExport"],[1496,"impl-Debug-for-KeyError"],[1497,"impl-Display-for-KeyError"],[1498,"impl-Display-for-SortedMultiVec%3CPk,+Ctx%3E"],[1499,"impl-Debug-for-SortedMultiVec%3CPk,+Ctx%3E"],[1500,"impl-Debug-for-DescriptorPublicKey"],[1501,"impl-Display-for-DescriptorPublicKey"],[1502,"impl-Display-for-DescriptorSecretKey"],[1503,"impl-Debug-for-DescriptorSecretKey"],[1509,"impl-From%3CXpriv%3E-for-ExtendedKey%3CCtx%3E"],[1510,"impl-From%3CXpub%3E-for-ExtendedKey%3CCtx%3E"],[1515,"impl-From%3CError%3E-for-KeyError"],[1516,"impl-From%3CError%3E-for-KeyError"],[1559,"impl-DerivableKey%3CCtx%3E-for-GeneratedKey%3CK,+Ctx%3E"],[1560,"impl-IntoDescriptorKey%3CCtx%3E-for-GeneratedKey%3CK,+Ctx%3E"],[1766,"impl-SignerCommon-for-SignerWrapper%3CPrivateKey%3E"],[1767,"impl-SignerCommon-for-SignerWrapper%3CDescriptorXKey%3CXpriv%3E%3E"],[1768,"impl-SignerCommon-for-SignerWrapper%3CDescriptorMultiXKey%3CXpriv%3E%3E"],[1783,"impl-Display-for-SignerError"],[1784,"impl-Debug-for-SignerError"],[1791,"impl-From%3CFingerprint%3E-for-SignerId"],[1792,"impl-From%3CHash%3E-for-SignerId"],[1803,"impl-SignerCommon-for-SignerWrapper%3CPrivateKey%3E"],[1804,"impl-SignerCommon-for-SignerWrapper%3CDescriptorXKey%3CXpriv%3E%3E"],[1805,"impl-SignerCommon-for-SignerWrapper%3CDescriptorMultiXKey%3CXpriv%3E%3E"],[1821,"impl-InputSigner-for-SignerWrapper%3CDescriptorXKey%3CXpriv%3E%3E"],[1822,"impl-InputSigner-for-SignerWrapper%3CDescriptorMultiXKey%3CXpriv%3E%3E"],[1823,"impl-InputSigner-for-SignerWrapper%3CPrivateKey%3E"],[1927,"impl-Display-for-AddUtxoError"],[1928,"impl-Debug-for-AddUtxoError"],[1929,"impl-Display-for-AddForeignUtxoError"],[1930,"impl-Debug-for-AddForeignUtxoError"]],"c":"OjAAAAEAAAAAAAUAEAAAALgCAgMOAz4FvQUlBg==","e":"OzAAAAEAACgEfgAZAAAAQQAAAE0AAQBRACQAewAAAIMAEACeAAYArQAZAMoAAADMABYA7AADAPMAAAD2AAEA+gAAAAQBAQAgAQAAOwEAAEYBAABSAQAAWAEFAGMBAABrAQ8AggEjAK0BEQDEAREA8wEXAAwCAwARAgYAGgIHADUCIQBhAgAAbwIAAIMCAQCGAgAAiAIHAJMCAACVAgEAmAIAAJsCAQCeAgEAogIBAKUCAQCoAgEAqwILALwCAwDBAgsA0gIBANUCBwDeAgUA6QIAAPYCAwABAwAABwMBAAsDAQASAwEAKAMDAC0DAQA7AwEAPgMBAEIDBQBNAwcAVgMDAFsDAwBvAwQAdQMGAH0DBAClAxkAwQMaAN8DAADhAwAA5gMBAPUDAAD4AwQA/gMiAEcEFwBgBC8AqARIAA4FDQAeBQQAJwUPAEEFAQBFBQAARwUBAEoFAABOBQUAggUXAKQFFQC7BQEAvgUAAMAFJADmBQEA7AUBAPAFAAD4BQEABQYDABUGAAAYBgQAHgYBAC4GAQAzBgAAPQYAAEIGAwBLBgAATwYIAFkGAwBgBi8AvwYPANAGFADnBg4A9wYKAAoHAAAMBwIAGgcBAB4HAgAiBwAAJgcHADAHHwBpBwkAdAcEAHsHAQCABwIAhwcGAJMHAACfBwAApgcSALsHBAA="}],\ +["bdk_wallet",{"t":"GGFGKFPPPFGFGPPPPPRRPGPPEPPPPKGPGGFGPFPPPPPPPPPFPFFGPPPFGTTFKIFPNNONOONNNNNNNNONDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDOOOONNNNNNNNNNNNNNNNNNNNCONNNNNNNNNNNNNNNNONCNOQNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNDNNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONMMNNNNNNNNNNNNNNNNNNNMNNOOONNNCONNNNNNNNNNNNONNNNDNNONNNNNNONNMMNNNNCNNNECONNNNDDNNNNNNNOCENNNNNNOENNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNOOONONNNNNNNNNNNNNNNNNNNNOOHNNNNNNNNNNNNNNNNNNHOOOOOOOOOOOOOOOOFPKFIGFFPFFONNNNNNNNNNNNNNNNNNNNNNNNMNNNNHNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOPPPIGEGIKTIKRGFPPPPEKGPPPPTIPPPPPPPPPPNNNNNNNNNNNNNNNNNENNNNNNNNNNNNNMNNMNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNONMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNMNNNNNNMNNNNNNNNNNNNNNNNONNNNNNNNNMNNNNCNNNNNNNNNNNMNNNCNNNNNNNNNNNNNNNNNNNONNNNNNNNNNHPPGPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNPPPGPFIPPIPPPPPPPPPPPGFGPPPPPGGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNONNONNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOFFFFFFFFKIFFFFNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGPPGPPPPPPPGPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFIOONNNNNNNNNNNOONNNNNNPKGGGRRKGPKKFKPPPRGIPPPPPRPFPKGPPPFFGFPIPPPHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNMNNNNNNMNNNNNNNNNNNNNNNNNNNOONHNMNNHNMNNOONNNNNNMNNNNNMNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKMMMSHPPPPPPPKPPPPPPPPPPPPPPPPFKGGGFFFPGKPNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNMNNNMNONONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOGGPPGPPPPPPFGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOO","n":["AddForeignUtxoError","AddUtxoError","AddressInfo","ApplyBlockError","AsyncWalletPersister","Balance","CannotConnect","ChangeAllowed","ChangeForbidden","ChangeSet","ChangeSpendPolicy","CreateParams","CreateWithPersistError","Custom","DataAlreadyExists","Descriptor","Descriptor","Descriptor","Error","Error","External","FileStoreError","Foreign","Genesis","HdKeyPaths","Internal","InvalidChangeSet","InvalidOutpoint","InvalidTxid","IsDust","KeychainKind","Load","LoadError","LoadMismatch","LoadParams","LoadWithPersistError","Local","LocalOutput","Mismatch","MissingDescriptor","MissingGenesis","MissingNetwork","MissingUtxo","Network","OnlyChange","Persist","Persist","PersistedWallet","Shuffle","SignOptions","TxBuilder","TxOrdering","UnexpectedConnectedToHash","UnknownUtxo","Untouched","Update","Utxo","WALLET_SCHEMA_NAME","WALLET_TABLE_NAME","Wallet","WalletPersister","WalletTx","WeightedUtxo","Write","add","add_signer","address","all_unbounded_spk_iters","allow_all_sighashes","allow_grinding","apply_block","apply_block_connected_to","apply_unconfirmed_txs","apply_update","apply_update_at","as_byte","as_ref","as_ref","assume_height","balance","bitcoin","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_fee_bump","build_tx","calculate_fee","calculate_fee_rate","cancel_tx","chain","chain","chain_position","chain_position","change_descriptor","check_genesis_hash","check_network","checkpoints","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","coin_selection","confirmed","create","create","create_async","create_single","create_wallet","create_wallet_async","create_wallet_no_persist","create_with_params","default","default","default","default","deref","deref","deref_mut","derivation_index","derivation_index","derivation_of_spk","descriptor","descriptor","descriptor","descriptor","descriptor_checksum","deserialize","deserialize","deserialize","deserialize","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","export","extract_keys","file_store","finalize_psbt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_sqlite","genesis_hash","get_psbt_input","get_signers","get_tx","get_utxo","hash","hash","immature","index","indexer","init_sqlite_tables","initialize","initialize","insert_txout","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_dust","is_empty","is_mine","is_spent","keychain","keychain","keychains","keymap","keymap","keys","last_active_indices","latest_checkpoint","list_output","list_unspent","list_unused_addresses","load","load","load_async","load_wallet","load_wallet_async","load_wallet_no_persist","load_with_params","local_chain","local_chain","lookahead","lookahead","mark_used","merge","miniscript","network","network","network","new","new","new_single","next_derivation_index","next_unused_address","outpoint","outpoint","partial_cmp","peek_address","persist","persist","persist","persist_async","persist_to_sqlite","policies","psbt","public_descriptor","reveal_addresses_to","reveal_next_address","rusqlite","rusqlite_impl","satisfaction_weight","schema_v0","secp_ctx","sent_and_received","sequence","serde","serde_json","serialize","serialize","serialize","serialize","set_keymap","set_keymaps","sign","sign_with_tap_internal_key","signer","signer","spk_index","staged","staged_mut","start_full_scan","start_sync_with_revealed_spks","take_staged","tap_leaves_options","template","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","total","transactions","transactions_sort_by","trust_witness_utxo","trusted_pending","trusted_spendable","try_finalize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_builder","tx_graph","tx_graph","tx_node","tx_update","txout","txout","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unbounded_spk_iter","unmark_used","untrusted_pending","utxo","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","wallet_name_from_descriptor","foreign_utxo","input_txid","connected_to_hash","expected_hash","expected","expected","expected","keychain","loaded","loaded","loaded","input_sort","output_sort","outpoint","psbt_input","sequence","BranchAndBoundCoinSelection","Change","CoinSelectionAlgorithm","CoinSelectionResult","DefaultCoinSelectionAlgorithm","Excess","InsufficientFunds","LargestFirstCoinSelection","NoChange","OldestFirstCoinSelection","SingleRandomDraw","available","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","coin_select","coin_select","coin_select","coin_select","coin_select","decide_change","default","default","default","default","eq","equivalent","equivalent","excess","fee_amount","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into","into","local_selected_amount","needed","new","selected","selected_amount","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","amount","change_fee","dust_threshold","fee","remaining_amount","Bare","Bare","Bare","DerivedDescriptor","Descriptor","DescriptorError","DescriptorPublicKey","ExtendedDescriptor","ExtractPolicy","FALSE","HdKeyPaths","IntoWalletDescriptor","Key","Legacy","Miniscript","MultiXPub","Pkh","Pkh","Pkh","Policy","ScriptContext","Segwitv0","Sh","Sh","Sh","Single","TRUE","TapKeyOrigins","Tr","Tr","Tr","Wpkh","Wpkh","Wpkh","Wsh","Wsh","Wsh","XPub","address","as_enum","as_enum","as_inner","as_node","at_derivation_index","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","branches","build_template","build_template_mall","calc_checksum","check_global_consensus_validity","check_global_consensus_validity","check_global_consensus_validity","check_global_policy_validity","check_global_policy_validity","check_global_validity","check_local_consensus_validity","check_local_consensus_validity","check_local_consensus_validity","check_local_policy_validity","check_local_policy_validity","check_local_policy_validity","check_local_validity","check_pk","check_pk","check_pk","check_terminal_non_malleable","check_terminal_non_malleable","check_terminal_non_malleable","check_witness","check_witness","check_witness","checksum","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","contains_raw_pkh","derive","derived_descriptor","derived_descriptor","desc_type","descriptor_id","deserialize","deserialize","dust_value","encode","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error","explicit_script","ext","ext_check","extract_policy","extract_policy","extract_policy","find_derivation_index_for_spk","fmt","fmt","fmt","fmt","fmt","fmt","for_each_key","for_each_key","from","from","from","from","from","from","from","from","from","from","from_ast","from_components_unchecked","from_str","from_str","from_str_ext","from_str_insane","from_tree","from_tree","get_nth_child","get_nth_pk","get_satisfaction","get_satisfaction_mall","has_mixed_timelocks","has_repeated_keys","has_wildcard","hash","hash","hash","hash","into","into","into","into","into_inner","into_single_descriptors","into_wallet_descriptor","into_wallet_descriptor","is_deriveable","is_multipath","is_non_malleable","iter","iter_pk","lift","lift","lift_check","max_satisfaction_size","max_satisfaction_size","max_satisfaction_size","max_satisfaction_size","max_satisfaction_weight","max_satisfaction_witness_elements","max_weight_to_satisfy","name_str","name_str","name_str","new_bare","new_pk","new_pkh","new_sh","new_sh_sortedmulti","new_sh_with_wpkh","new_sh_with_wsh","new_sh_wpkh","new_sh_wsh","new_sh_wsh_sortedmulti","new_tr","new_wpkh","new_wsh","new_wsh_sortedmulti","node","other_top_level_checks","parse","parse_descriptor","parse_insane","parse_with_ext","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pk_len","pk_len","pk_len","plan","plan_mall","policy","requires_sig","sanity_check","sanity_check","satisfy","satisfy","satisfy_malleable","script_code","script_pubkey","script_size","serialize","serialize","sig_type","sig_type","sig_type","substitute_raw_pkh","template","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string_with_secret","top_level_checks","top_level_type_check","translate_pk","translate_pk","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","ty","type_id","type_id","type_id","type_id","unsigned_script_sig","vzip","vzip","vzip","vzip","within_resource_limits","calc_checksum","Base58","Bip32","Error","ExternalAndInternalAreTheSame","HardenedDerivationXpub","Hex","InvalidDescriptorCharacter","InvalidDescriptorChecksum","InvalidHdKeyPath","Key","Miniscript","MultiPath","Pk","Policy","borrow","borrow_mut","eq","fmt","fmt","from","from","from","from","from","from","from","from","into","to_string","try_from","try_into","type_id","vzip","AbsoluteTimelock","AddOnLeaf","AddOnPartialComplete","BuildSatisfaction","Complete","Condition","ConditionMap","EcdsaSignature","Fingerprint","FoldedConditionMap","Hash160Preimage","Hash256Preimage","IncompatibleConditions","IndexOutOfRange","MixedTimelockUnits","Multisig","None","None","NotEnoughItemsSelected","Partial","PartialComplete","PkOrF","Policy","PolicyError","Psbt","PsbtTimelocks","Pubkey","RelativeTimelock","Ripemd160Preimage","Satisfaction","SatisfiableItem","SchnorrSignature","Sha256Preimage","Thresh","XOnlyPubkey","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","contribution","csv","default","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","get_condition","hash","hash","id","id","into","into","into","into","into","into","into","is_leaf","is_leaf","is_null","item","partial_cmp","requires_path","satisfaction","serialize","serialize","serialize","serialize","serialize","timelock","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","current_height","input_max_height","psbt","condition","conditions","conditions","items","items","m","m","n","n","sorted","sorted","hash","hash","hash","hash","items","keys","threshold","threshold","value","value","Bip44","Bip44Public","Bip49","Bip49Public","Bip84","Bip84Public","Bip86","Bip86Public","DescriptorTemplate","DescriptorTemplateOut","P2Pkh","P2TR","P2Wpkh","P2Wpkh_P2Sh","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build","build","build","build","build","build","build","build","build","build","build","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","into_wallet_descriptor","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","BuildFeeBumpError","CoinSelection","Conversion","CreateTxError","Descriptor","FeeRateTooLow","FeeRateUnavailable","FeeTooLow","IrreplaceableTransaction","LockTime","MiniscriptPsbt","MiniscriptPsbtError","MissingKeyOrigin","MissingNonWitnessUtxo","NoRecipients","NoUtxosSelected","OutputBelowDustLimit","OutputUpdate","Policy","Psbt","RbfSequenceCsv","SpendingPolicyRequired","TransactionConfirmed","TransactionNotFound","UnknownUtxo","UnknownUtxo","UtxoUpdate","Version0","Version1Csv","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","csv","requested","required","required","required","sequence","FullyNodedExport","WalletExport","blockheight","blockheight","borrow","borrow_mut","change_descriptor","descriptor","deserialize","export_wallet","fmt","fmt","from","from_str","into","label","label","serialize","to_string","try_from","try_into","type_id","vzip","Bip32","DerivableKey","DescriptorKey","DescriptorPublicKey","DescriptorSecretKey","Entropy","Error","ExtScriptContext","ExtendedKey","FullKey","GeneratableDefaultOptions","GeneratableKey","GeneratedKey","IntoDescriptorKey","InvalidChecksum","InvalidNetwork","InvalidScriptContext","Key","KeyError","KeyMap","Legacy","Message","Miniscript","MultiXPrv","MultiXPub","Options","Private","PrivateKeyGenerateOptions","Public","ScriptContext","ScriptContextEnum","Segwitv0","Single","Single","SinglePriv","SinglePub","SinglePubKey","SortedMultiVec","Tap","ValidNetworks","XOnly","XPrv","XPub","any_network","as_enum","at_derivation_index","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_template","check_global_consensus_validity","check_global_policy_validity","check_global_validity","check_local_consensus_validity","check_local_policy_validity","check_local_validity","check_pk","check_terminal_non_malleable","check_witness","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","compressed","default","deref","derive","deserialize","encode","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each_key","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_public","from_secret","from_str","from_str","from_tree","full_derivation_path","full_derivation_paths","generate","generate_default","generate_default_with_aux_rand","generate_with_aux_rand","generate_with_entropy","generate_with_entropy_default","has_secret","has_wildcard","hash","hash","hash","hash","into","into","into","into","into","into","into","into","into","into","into","into","into_assets","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_descriptor_key","into_extended_key","into_extended_key","into_extended_key","into_key","into_single_keys","into_single_keys","into_xprv","into_xpub","is_deriveable","is_legacy","is_legacy","is_multipath","is_multipath","is_segwit_v0","is_segwit_v0","is_taproot","is_taproot","is_uncompressed","is_x_only_key","k","key","key","lift","mainnet_network","master_fingerprint","max_satisfaction_size","max_satisfaction_size","max_satisfaction_witness_elements","merge_networks","n","name_str","new","num_der_paths","origin","origin","other_top_level_checks","override_valid_networks","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pk_len","pks","sanity_check","satisfy","script_size","serialize","sig_type","sorted_node","test_networks","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_public","to_string","to_string","to_string","to_string","top_level_checks","top_level_type_check","translate_pk","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","PsbtUtils","fee_amount","fee_rate","get_utxo_for","SCHEMAS_TABLE_NAME","migrate_schema","All","Dummy","Exclude","External","Fingerprint","Include","InputIndexOutOfRange","InputSigner","InvalidKey","InvalidNonWitnessUtxo","InvalidSighash","Legacy","MiniscriptPsbt","MissingHdKeypath","MissingKey","MissingNonWitnessUtxo","MissingWitnessScript","MissingWitnessUtxo","NonStandardSighash","None","PkHash","Psbt","Segwitv0","SighashTaproot","SignOptions","SignerCommon","SignerContext","SignerError","SignerId","SignerOrdering","SignerWrapper","SignersContainer","Tap","TapLeavesOptions","TransactionSigner","UserCanceled","add_external","allow_all_sighashes","allow_grinding","as_key_map","assume_height","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","default","default","default","default","deref","descriptor_secret_key","descriptor_secret_key","descriptor_secret_key","descriptor_secret_key","descriptor_secret_key","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","hash","id","id","id","id","ids","into","into","into","into","into","into","into","into","new","new","partial_cmp","partial_cmp","remove","sign_input","sign_input","sign_input","sign_input","sign_transaction","sign_transaction","sign_with_tap_internal_key","signers","tap_leaves_options","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","trust_witness_utxo","try_finalize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","is_internal_key","AddForeignUtxoError","AddUtxoError","ChangeAllowed","ChangeForbidden","ChangeSpendPolicy","Custom","InvalidOutpoint","InvalidTxid","MissingUtxo","OnlyChange","Shuffle","TxBuilder","TxOrdering","UnknownUtxo","Untouched","add_data","add_foreign_utxo","add_foreign_utxo_with_sequence","add_global_xpubs","add_recipient","add_unspendable","add_utxo","add_utxos","allow_dust","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","change_policy","clone","clone","clone_into","clone_into","cmp","coin_selection","current_height","default","default","do_not_spend_change","drain_to","drain_wallet","eq","equivalent","equivalent","fee_absolute","fee_rate","finish","finish_with_aux_rand","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","hash","include_output_redeem_witness_script","into","into","into","into","into","manually_selected_only","nlocktime","only_spend_change","only_witness_utxo","ordering","partial_cmp","policy_path","set_exact_sequence","set_recipients","sighash","sort_tx","sort_tx_with_aux_rand","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unspendable","version","vzip","vzip","vzip","vzip","vzip","foreign_utxo","input_txid","input_sort","output_sort"],"q":[[0,"bdk_wallet"],[471,"bdk_wallet::AddForeignUtxoError"],[473,"bdk_wallet::ApplyBlockError"],[475,"bdk_wallet::LoadMismatch"],[482,"bdk_wallet::TxOrdering"],[484,"bdk_wallet::Utxo"],[487,"bdk_wallet::coin_selection"],[599,"bdk_wallet::coin_selection::Excess"],[604,"bdk_wallet::descriptor"],[864,"bdk_wallet::descriptor::checksum"],[865,"bdk_wallet::descriptor::error"],[898,"bdk_wallet::descriptor::policy"],[1057,"bdk_wallet::descriptor::policy::BuildSatisfaction"],[1060,"bdk_wallet::descriptor::policy::Satisfaction"],[1071,"bdk_wallet::descriptor::policy::SatisfiableItem"],[1081,"bdk_wallet::descriptor::template"],[1265,"bdk_wallet::error"],[1335,"bdk_wallet::error::CreateTxError"],[1341,"bdk_wallet::export"],[1364,"bdk_wallet::keys"],[1680,"bdk_wallet::psbt"],[1684,"bdk_wallet::rusqlite_impl"],[1686,"bdk_wallet::signer"],[1872,"bdk_wallet::signer::SignerContext"],[1873,"bdk_wallet::tx_builder"],[1984,"bdk_wallet::tx_builder::AddForeignUtxoError"],[1986,"bdk_wallet::tx_builder::TxOrdering"],[1988,"bdk_chain::balance"],[1989,"bdk_wallet::wallet"],[1990,"bdk_wallet::types"],[1991,"bdk_wallet::wallet::signer"],[1992,"alloc::sync"],[1993,"bitcoin::blockdata::script::owned"],[1994,"bdk_core"],[1995,"core::iter::traits::iterator"],[1996,"core::clone"],[1997,"alloc::collections::btree::map"],[1998,"bitcoin::blockdata::block"],[1999,"bdk_chain::local_chain"],[2000,"core::result"],[2001,"bdk_core::block_id"],[2002,"bitcoin::blockdata::transaction"],[2003,"core::convert"],[2004,"core::iter::traits::collect"],[2005,"bdk_chain::tx_graph"],[2006,"bdk_wallet::wallet::coin_selection"],[2007,"bdk_wallet::wallet::tx_builder"],[2008,"bdk_wallet::wallet::error"],[2009,"bitcoin_units::amount"],[2010,"bitcoin_units::fee_rate"],[2011,"bdk_wallet::wallet::params"],[2012,"bitcoin::network"],[2013,"bdk_core::checkpoint"],[2014,"bdk_wallet::wallet::changeset"],[2015,"core::cmp"],[2016,"bdk_wallet::wallet::persisted"],[2017,"core::marker"],[2018,"core::option"],[2019,"alloc::string"],[2020,"serde::de"],[2021,"bitcoin::psbt"],[2022,"core::fmt"],[2023,"bdk_chain::indexer::keychain_txout"],[2024,"bdk_chain::indexed_tx_graph"],[2025,"bdk_core::spk_client"],[2026,"rusqlite::transaction"],[2027,"rusqlite"],[2028,"bitcoin::psbt::map::input"],[2029,"core::hash"],[2030,"core::future::future"],[2031,"alloc::boxed"],[2032,"core::pin"],[2033,"bdk_wallet::wallet::utils"],[2034,"bitcoin::blockdata::script::borrowed"],[2035,"miniscript::descriptor"],[2036,"core::iter::traits::double_ended"],[2037,"secp256k1::context::alloc_only"],[2038,"secp256k1"],[2039,"serde::ser"],[2040,"alloc::vec"],[2041,"core::ops::function"],[2042,"core::any"],[2043,"rand_core"],[2044,"core::default"],[2045,"bitcoin::address"],[2046,"miniscript"],[2047,"miniscript::miniscript::private"],[2048,"miniscript::miniscript::decode"],[2049,"miniscript::miniscript::context"],[2050,"miniscript::iter::tree"],[2051,"miniscript::descriptor::key"],[2052,"miniscript::miniscript::satisfy"],[2053,"miniscript::plan"],[2054,"bitcoin_hashes::sha256"],[2055,"miniscript::miniscript::hash256"],[2056,"bitcoin_hashes::ripemd160"],[2057,"bitcoin_hashes::hash160"],[2058,"bitcoin::crypto::key"],[2059,"secp256k1::context"],[2060,"bdk_chain::descriptor_ext"],[2061,"miniscript::blanket_traits"],[2062,"miniscript::miniscript::analyzable"],[2063,"core::ops::range"],[2064,"miniscript::descriptor::sh"],[2065,"miniscript::descriptor::bare"],[2066,"miniscript::descriptor::segwitv0"],[2067,"miniscript::descriptor::tr"],[2068,"miniscript::miniscript::types"],[2069,"miniscript::miniscript::types::extra_props"],[2070,"miniscript::expression"],[2071,"miniscript::miniscript::iter"],[2072,"miniscript::policy::semantic"],[2073,"miniscript::policy"],[2074,"bitcoin_units::weight"],[2075,"base58ck::error"],[2076,"bitcoin::bip32"],[2077,"hex_conservative::error"],[2078,"bitcoin::psbt::error"],[2079,"bdk_wallet::wallet::export"],[2080,"miniscript::descriptor::sortedmulti"],[2081,"core::str::traits"],[2082,"rusqlite::error"],[2083,"bitcoin::blockdata::script::push_bytes::primitive"],[2084,"bitcoin::blockdata::locktime::absolute"],[2085,"bdk_chain"],[2086,"bdk_chain::rusqlite_impl"]],"i":[0,0,0,0,0,0,74,261,261,0,0,0,0,262,51,51,63,64,52,55,5,0,45,64,0,5,61,259,259,0,0,72,0,0,0,0,45,0,63,63,63,63,259,64,261,61,51,0,262,0,0,0,74,260,262,0,0,46,46,0,0,0,0,72,1,3,47,3,66,66,3,3,3,3,3,5,5,3,66,3,0,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,3,3,3,3,3,0,27,87,43,46,39,39,3,1,5,43,44,45,46,27,47,1,5,43,44,45,46,27,47,5,0,1,50,3,50,3,49,49,49,3,1,39,46,27,50,47,50,3,43,3,0,39,46,0,3,1,5,43,46,1,5,43,44,45,46,61,47,63,64,1,1,5,5,43,43,44,44,45,45,47,47,0,0,39,0,3,1,1,5,43,44,45,46,50,72,72,61,61,51,51,3,27,47,47,63,63,64,74,74,0,1,49,39,5,43,44,45,46,46,46,46,46,50,72,61,61,51,3,27,27,27,47,63,63,64,74,46,49,3,3,3,3,5,43,1,47,46,46,52,55,3,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,95,46,3,43,43,47,3,49,39,0,27,3,3,3,3,50,3,50,39,39,39,3,3,46,49,39,3,46,0,49,3,46,49,39,49,3,3,45,43,5,3,52,55,50,50,46,3,0,3,3,3,0,0,44,46,3,3,45,0,0,1,5,43,46,3,3,3,66,0,0,3,3,3,3,3,3,66,0,1,5,43,44,45,46,27,47,1,72,61,51,47,63,74,1,3,3,66,1,1,66,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,0,3,46,87,27,45,43,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,3,3,1,44,0,1,49,39,5,43,44,45,46,50,72,61,51,3,27,47,63,64,74,0,265,265,266,266,267,268,269,269,267,268,269,270,270,271,271,271,0,123,0,0,0,0,0,0,123,0,0,115,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,116,117,118,119,115,116,117,118,119,120,116,117,118,119,0,116,117,118,119,115,115,115,121,121,115,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,123,121,116,117,118,119,121,115,118,121,121,115,116,117,118,119,115,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,123,121,116,117,118,119,115,123,121,116,117,118,119,272,273,273,272,273,97,274,125,0,0,0,0,0,0,131,0,0,133,0,0,135,97,274,125,0,0,0,97,274,125,135,131,0,97,274,125,97,274,125,97,274,125,135,125,152,153,131,131,125,125,152,153,131,125,152,153,131,131,131,131,0,133,152,153,133,153,133,133,152,153,133,152,153,133,133,152,153,133,152,153,133,152,153,0,125,152,153,131,125,152,153,131,125,152,153,131,131,125,125,125,125,125,125,131,125,131,125,152,153,131,125,125,152,152,153,153,131,131,0,125,131,131,162,125,131,125,125,125,152,153,131,131,125,131,125,125,125,125,125,125,125,152,153,131,131,131,125,131,131,131,125,131,131,131,125,125,131,131,125,125,152,153,131,125,152,153,131,131,125,53,97,125,125,131,131,131,125,131,131,133,152,153,131,125,131,125,133,152,153,125,125,125,125,125,125,125,125,125,125,125,125,125,125,131,133,131,125,131,131,125,152,153,131,133,152,153,125,125,0,131,125,131,125,131,131,125,125,131,125,131,133,152,153,131,0,125,152,153,131,125,131,125,133,133,125,131,125,152,153,131,125,152,153,131,131,125,152,153,131,125,125,152,153,131,131,0,56,56,0,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,199,193,193,0,200,0,0,199,198,0,199,199,193,193,193,199,200,163,193,200,200,0,0,0,163,163,198,199,199,0,0,199,199,199,198,198,199,200,102,201,193,163,198,199,200,102,201,193,163,198,199,200,102,201,163,198,199,200,102,201,163,102,201,201,198,199,200,102,201,193,198,198,199,199,200,200,102,102,201,201,193,193,198,199,200,102,201,193,193,163,198,199,200,200,102,102,201,193,163,102,198,201,199,102,198,199,200,102,201,193,163,199,200,201,102,201,102,102,198,199,200,102,201,201,198,199,200,102,201,163,193,198,199,200,102,201,193,163,198,199,200,102,201,193,163,198,199,200,102,201,193,163,198,199,200,102,201,193,163,275,275,275,276,277,278,277,278,277,278,277,278,277,278,279,280,281,282,283,284,284,283,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,202,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,203,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,204,206,207,208,210,212,213,214,215,216,217,218,0,85,219,0,85,85,35,85,35,85,85,0,85,85,85,85,85,219,85,85,85,85,35,35,85,35,219,85,85,219,85,35,219,85,35,219,219,219,219,85,85,35,35,219,85,85,85,85,85,85,35,219,85,35,219,219,85,35,219,85,35,219,85,35,219,85,35,219,85,35,287,288,288,289,290,287,0,0,291,221,221,221,221,221,221,221,221,221,221,221,221,291,221,221,221,221,221,221,221,195,0,0,0,0,237,237,0,0,228,0,0,0,0,195,195,195,133,0,0,130,195,195,184,135,237,231,0,231,0,0,130,135,184,0,0,0,0,130,0,228,184,135,0,292,135,231,224,229,130,225,195,223,135,184,226,227,228,231,224,229,130,225,195,223,135,184,226,227,228,223,133,133,133,133,133,133,133,133,133,224,130,225,223,135,184,226,227,228,224,130,225,223,135,184,226,227,228,223,135,226,228,225,225,224,135,135,223,130,195,223,135,184,226,227,228,130,130,223,223,135,135,184,184,226,226,227,227,228,228,229,130,225,195,195,223,223,135,135,184,184,226,227,228,223,231,231,231,224,229,130,225,195,195,195,223,135,135,184,226,227,228,229,229,135,184,223,135,135,237,239,239,237,237,239,231,135,223,135,226,228,231,224,229,130,225,195,223,135,184,226,227,228,135,205,211,224,224,229,135,184,211,231,224,224,135,184,231,231,135,292,130,135,184,292,130,292,130,135,135,223,226,227,223,0,135,133,223,223,0,223,133,223,135,226,227,133,229,223,135,226,228,133,223,223,223,223,135,133,223,0,224,130,225,223,135,184,226,227,228,184,195,223,135,184,133,133,223,231,224,229,130,225,195,223,135,184,226,227,228,231,224,229,130,225,195,223,135,184,226,227,228,231,224,229,130,225,195,223,135,184,226,227,228,231,224,229,130,225,195,223,135,184,226,227,228,0,245,245,245,0,0,251,247,251,67,247,251,67,0,67,67,67,248,67,67,67,67,67,67,67,251,247,67,248,67,0,0,0,0,0,0,0,0,248,0,0,67,86,66,66,86,66,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,86,247,248,249,6,86,66,251,247,248,249,6,86,66,251,247,6,6,86,66,251,249,252,252,249,249,249,247,248,6,251,247,247,248,248,6,6,251,251,86,247,67,67,248,249,6,86,66,251,247,247,247,67,248,249,6,86,66,251,247,252,249,249,249,86,247,67,248,249,6,86,66,251,249,86,247,6,86,256,249,249,249,7,249,66,86,66,247,248,249,6,86,66,251,67,66,66,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,247,67,248,249,6,86,66,251,293,0,0,261,261,0,262,259,259,259,261,262,0,0,260,262,34,34,34,34,34,34,34,34,34,34,260,259,262,261,34,260,259,262,261,34,262,261,262,261,261,34,34,262,261,34,34,34,261,261,261,34,34,34,34,34,260,260,259,259,262,261,34,260,259,262,261,261,34,34,260,259,262,261,34,34,34,34,34,261,34,34,34,34,262,262,262,261,260,259,34,260,259,262,261,34,260,259,262,261,34,260,259,262,261,34,34,34,260,259,262,261,265,265,270,270],"f":"````````````````````````````````````````````````````````````````{{bb}b}{{{h{df}}jl{A`{n}}}Ab}`{{{h{f}}}{{An{j{`{{Aj{}{{Ad{{Ah{Af}}}}}}Al}}}}}}``{{{h{df}}{h{B`}}Bb}{{Bf{AbBd}}}}{{{h{df}}{h{B`}}BbBh}{{Bf{AbBj}}}}{{{h{df}}e}Ab{{Bn{{A`{Bl}}}}}{{Cd{}{{Ad{{Cb{cC`}}}}}}}}{{{h{df}}c}{{Bf{AbBd}}}{{Bn{Cf}}}}{{{h{df}}cC`}{{Bf{AbBd}}}{{Bn{Cf}}}}{{{h{j}}}Ch}{{{h{j}}}{{h{{Cj{Ch}}}}}}{{{h{f}}}{{h{{Cn{Cl}}}}}}`{{{h{f}}}b}`{{{h{c}}}{{h{e}}}{}{}}00000000000000000{{{h{dc}}}{{h{de}}}{}{}}00000000000000000{{{h{df}}D`}{{Bf{{Dd{Db}}Df}}}}{{{h{df}}}{{Dd{Db}}}}{{{h{f}}{h{Bl}}}{{Bf{DhDj}}}}{{{h{f}}{h{Bl}}}{{Bf{DlDj}}}}{{{h{df}}{h{Bl}}}Ab}`````{{DnE`}Dn}{{DnEb}Dn}{{{h{f}}}Ed}{{{h{b}}}b}{{{h{j}}}j}{{{h{Ef}}}Ef}{{{h{Eh}}}Eh}{{{h{Ej}}}Ej}{{{h{El}}}El}{{{h{Cf}}}Cf}{{{h{En}}}En}{{{h{c}}{h{de}}}Ab{}{}}0000000{{{h{j}}{h{j}}}F`}``{{{h{dc}}Fb}{{Bf{{Fd{c}}Ff}}}Fh}{{cc}Fb{FjFlAl}}{{{h{dc}}Fb}{{Bf{{Fd{c}}Ff}}}Fn}{cFb{FjFlAl}}{{Fb{h{dc}}}{{Bf{{Fd{c}}Ff}}}Fh}{{Fb{h{dc}}}{{Bf{{Fd{c}}Ff}}}Fn}{Fb{{Bf{fG`}}}}0{{}b}{{}Dn}{{}El}{{}Cf}{{{h{{Fd{c}}}}}{{h{e}}}{}{}}{{{h{En}}}{{h{c}}}{}}{{{h{d{Fd{c}}}}}{{h{de}}}{}{}}{{{h{f}}j}{{Gb{Bb}}}}`{{{h{f}}Af}{{Gb{{Cb{jBb}}}}}}`{{Dnj{Gb{c}}}Dn{FjFl}}``{{{h{f}}j}Gd}{c{{Bf{b}}}Gf}{c{{Bf{j}}}Gf}{c{{Bf{Ef}}}Gf}{c{{Bf{El}}}Gf}{{{h{b}}{h{b}}}Gh}{{{h{j}}{h{j}}}Gh}{{{h{Ef}}{h{Ef}}}Gh}{{{h{Eh}}{h{Eh}}}Gh}{{{h{Ej}}{h{Ej}}}Gh}{{{h{El}}{h{El}}}Gh}{{{h{{Gj{c}}}}{h{{Gj{c}}}}}GhGl}{{{h{En}}{h{En}}}Gh}{{{h{Gn}}{h{Gn}}}Gh}{{{h{H`}}{h{H`}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}00000000000``{DnDn}`{{{h{f}}{h{dHb}}Hd}{{Bf{GhHf}}}}{{{h{b}}{h{dHh}}}{{Bf{AbHj}}}}0{{{h{j}}{h{dHh}}}Hl}{{{h{Ef}}{h{dHh}}}Hl}{{{h{Eh}}{h{dHh}}}Hl}{{{h{Ej}}{h{dHh}}}Hl}{{{h{El}}{h{dHh}}}Hl}{{{h{{Fd{c}}}}{h{dHh}}}HlHn}{{{h{I`}}{h{dHh}}}Hl}0{{{h{{Gj{c}}}}{h{dHh}}}HlIb}{{{h{{Gj{c}}}}{h{dHh}}}HlHn}{{{h{{Ff{c}}}}{h{dHh}}}HlHn}{{{h{{Ff{c}}}}{h{dHh}}}HlIb}{{{h{f}}{h{dHh}}}Hl}{{{h{Cf}}{h{dHh}}}Hl}{{{h{En}}{h{dHh}}}Hl}0{{{h{Gn}}{h{dHh}}}Hl}0{{{h{H`}}{h{dHh}}}Hl}{{{h{Id}}{h{dHh}}}Hl}0`{cc{}}0000000{IfEl}{{{Ij{ClIh}}}El}{{{Il{Cl}}}El}{IhEl}44{H`{{Gj{c}}}{}}5555{InCf}{{{J`{j}}}Cf}77{H`Gn}88{{{h{Jb}}}{{Jd{El}}}}{{FbE`}Fb}{{{h{f}}Ef{Gb{Jf}}Gh}{{Bf{JhJj}}}}{{{h{f}}j}{{A`{Jl}}}}{{{h{f}}D`}{{Gb{Jn}}}}{{{h{f}}K`}{{Gb{Ef}}}}{{{h{j}}{h{dc}}}AbKb}{{{h{Ef}}{h{dc}}}AbKb}```{{{h{Jb}}}{{Jd{Ab}}}}{{{h{d{Fh{}{{Kd{c}}}}}}}{{Bf{Elc}}}{}}{{{h{d{Fn{}{{Kd{c}}}}}}}{{Kj{{Kh{Kf}}}}}{}}{{{h{df}}K`Kl}Ab}{ce{}{}}00000000000000000{{{h{Kn}}{h{L`}}}Gh}{{{h{El}}}Gh}{{{h{f}}Af}Gh}```{{{h{f}}}{{`{{Aj{}{{Ad{{Cb{j{h{Lb}}}}}}}}}}}}{{FbjLd}Fb}{{DnjLd}Dn}``{{{h{f}}}Lf}{{{h{f}}}{{`{{Aj{}{{Ad{Ef}}}}}}}}0{{{h{f}}j}{{`{{Lh{}{{Ad{En}}}}}}}}{{{h{dc}}Dn}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fh}{{}Dn}{{{h{dc}}Dn}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fn}{{Dn{h{dc}}}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fh}{{Dn{h{dc}}}{{Bf{{Gb{{Fd{c}}}}Gj}}}Fn}{{DnEl}{{Bf{{Gb{f}}Gn}}}}{{ElDn}{{Bf{{Gb{f}}Gn}}}}{{{h{f}}}{{h{Lj}}}}`{{FbBb}Fb}{{DnBb}Dn}{{{h{df}}jBb}Gh}{{{h{dEl}}El}Ab}`{{FbEb}Fb}{{{h{f}}}Eb}`{{cc}Fb{FjFl}}={cFb{FjFl}}{{{h{f}}j}Bb}{{{h{df}}j}En}{{{h{Ej}}}K`}`{{{h{j}}{h{j}}}{{Gb{F`}}}}{{{h{f}}jBb}En}{{{h{d{Fh{}{{Kd{c}}}}}}{h{El}}}{{Bf{Abc}}}{}}{{{h{d{Fn{}{{Kd{c}}}}}}{h{El}}}{{Kj{{Kh{Kf}}}}}{}}{{{h{d{Fd{c}}}}{h{dc}}}{{Bf{Gh}}}Fh}{{{h{d{Fd{c}}}}{h{dc}}}{{Bf{Gh}}}Fn}{{{h{El}}{h{Jb}}}{{Jd{Ab}}}}{{{h{f}}j}{{Bf{{Gb{Ll}}G`}}}}`{{{h{f}}j}{{h{Lb}}}}{{{h{df}}jBb}{{`{{Aj{}{{Ad{En}}}}}}}};```{{}Gd}{{{h{f}}}{{h{{M`{Ln}}}}}}{{{h{f}}{h{Bl}}}{{Cb{DhDh}}}}{{{h{Ej}}}{{Gb{Mb}}}}``{{{h{b}}c}BfMd}{{{h{j}}c}BfMd}{{{h{Ef}}c}BfMd}{{{h{El}}c}BfMd}{{{h{df}}jLd}Ab}{{{h{df}}c}Ab{{Cd{}{{Ad{{Cb{jLd}}}}}}}}{{{h{f}}{h{dHb}}Hd}{{Bf{GhHf}}}}```{{{h{f}}}{{h{{Mf{j}}}}}}{{{h{f}}}{{Gb{{h{El}}}}}}{{{h{df}}}{{Gb{{h{dEl}}}}}}{{{h{f}}}{{Mh{j}}}}{{{h{f}}}{{Mj{{Cb{jBb}}}}}}{{{h{df}}}{{Gb{El}}}}``{{{h{c}}}e{}{}}0000000{{{h{c}}}Gd{}}000000{{{h{b}}}Dh}{{{h{f}}}{{`{{Aj{}{{Ad{Jn}}}}}}}}{{{h{f}}c}{{Ml{Jn}}}{{N`{{h{Jn}}{h{Jn}}}{{Mn{F`}}}}}}``2`{c{{Bf{e}}}{}{}}00000000000000000000000000000000000`{{{h{f}}}{{h{{Cn{Cl}}}}}}```{{{h{Ej}}}{{h{Kl}}}}`{{{h{c}}}Nb{}}00000000000000000{{{h{f}}j}{{`{{Aj{}{{Ad{{Ah{Af}}}}}}Al}}}}{{{h{df}}jBb}Gh}``{{}{{h{Nd}}}}{ce{}{}}00000000000000000{{c{Gb{c}}Eb{h{{M`{Ln}}}}}{{Bf{GdG`}}}Fj}````````````````````````````{{{h{c}}}{{h{e}}}{}{}}000000{{{h{dc}}}{{h{de}}}{}{}}000000{{{h{Nf}}}Nf}{{{h{Nh}}}Nh}{{{h{Nj}}}Nj}{{{h{{Nl{c}}}}}{{Nl{c}}}Al}{{{h{Nn}}}Nn}{{{h{c}}{h{de}}}Ab{}{}}0000{{{h{O`}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{{h{Nh}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{{h{Nj}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{{h{{Nl{c}}}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{de}}}{{Bf{ObNf}}}O`Od}{{{h{Nn}}{Ml{Eh}}{Ml{Eh}}DlC`{h{L`}}{h{dc}}}{{Bf{ObNf}}}Od}{{C`Dl{h{L`}}}Of}{{}Nh}{{}Nj}{{}{{Nl{c}}}Oh}{{}Nn}{{{h{Nf}}{h{Nf}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0``{{{h{Nf}}{h{dHh}}}Hl}0{{{h{Of}}{h{dHh}}}Hl}{{{h{Ob}}{h{dHh}}}Hl}{{{h{Nh}}{h{dHh}}}Hl}{{{h{Nj}}{h{dHh}}}Hl}{{{h{{Nl{c}}}}{h{dHh}}}HlHn}{{{h{Nn}}{h{dHh}}}Hl}{cc{}}000000{ce{}{}}000000{{{h{Ob}}}C`}`{{C`c}{{Nl{c}}}{}}`1{{{h{c}}}e{}{}}0000{{{h{c}}}Gd{}}{c{{Bf{e}}}{}{}}0000000000000{{{h{c}}}Nb{}}0000006666666```````````````````````````````````````````{{{h{{Oj{c}}}}Eb}{{Bf{OlOn}}}{A@`A@b}}{{}A@d}0{{{h{{A@f{ce}}}}}{{h{{A@h{ce}}}}}A@`A@j}{{{h{{h{{A@f{ce}}}}}}}{{A@l{{h{{A@f{ce}}}}}}}A@`A@j}{{{h{{Oj{A@n}}}}Bb}{{Bf{{Oj{AA`}}AAb}}}}{{{h{c}}}{{h{e}}}{}{}}000{{{h{dc}}}{{h{de}}}{}{}}000{{{h{{A@f{ce}}}}}{{Ml{{h{{A@f{ce}}}}}}}A@`A@j}{{{h{{A@f{ce}}}}{h{g}}}{{AAf{{AAd{c}}}}}{A@bA@`}A@j{{AAh{c}}}}0`{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{A@f{cAC`}}}}}{{Bf{AbAAl}}}A@`}{{{h{{A@f{cACb}}}}}{{Bf{AbAAl}}}A@`}2022102102{{{h{c}}}{{Bf{AbAAl}}}A@`}00{{{h{{A@h{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{A@h{cAC`}}}}}{{Bf{AbAAl}}}A@`}{{{h{{A@h{cACb}}}}}{{Bf{AbAAl}}}A@`}{{{h{{Cj{{Ml{Ch}}}}}}}{{Bf{AbAAl}}}}00`{{{h{{Oj{c}}}}}{{Oj{c}}}{AlA@`}}{{{h{AC`}}}AC`}{{{h{ACb}}}ACb}{{{h{{A@f{ce}}}}}{{A@f{ce}}}{AlA@`}{AlA@j}}{{{h{c}}{h{de}}}Ab{}{}}000{{{h{{Oj{c}}}}{h{{Oj{c}}}}}F`{ACdA@`}}{{{h{AC`}}{h{AC`}}}F`}{{{h{ACb}}{h{ACb}}}F`}{{{h{{A@f{ce}}}}{h{{A@f{ce}}}}}F`A@`A@j}{{{h{{A@f{ce}}}}}GhA@`A@j}{{{h{{Oj{A@n}}}}Bb}{{Bf{{Oj{AA`}}AAb}}}}{{{h{{Oj{AA`}}}}{h{{M`{c}}}}}{{Bf{{Oj{ACf}}AAb}}}ACh}{{{h{{Oj{A@n}}}}{h{{M`{c}}}}Bb}{{Bf{{Oj{ACf}}AAb}}}ACh}{{{h{{Oj{c}}}}}ACjA@`}{{{h{{Oj{A@n}}}}}ACl}{c{{Bf{{Oj{e}}}}}GfACn}{c{{Bf{{A@f{eg}}}}}GfACnA@j}{{{h{{Oj{A@n}}}}}C`}{{{h{{A@f{ce}}}}}Af{A@bA@`}A@j}{{{h{{Oj{c}}}}{h{{Oj{c}}}}}Gh{GlA@`}}{{{h{AC`}}{h{AC`}}}Gh}{{{h{ACb}}{h{ACb}}}Gh}{{{h{{A@f{ce}}}}{h{{A@f{ce}}}}}GhA@`A@j}{{{h{c}}{h{e}}}Gh{}{}}0000000`{{{h{{Oj{c}}}}}{{Bf{AfOn}}}{A@`A@b}}`{{{h{{A@f{ce}}}}{h{AD`}}}{{Bf{AbADb}}}A@`A@j}{{{h{ADd}}{h{Jl}}ADf{h{{M`{Ln}}}}}{{Bf{{Gb{Ll}}G`}}}}{{{h{{Oj{A@n}}}}{h{Jl}}ADf{h{{M`{Ln}}}}}{{Bf{{Gb{Ll}}G`}}}}{{{h{{A@f{A@nc}}}}{h{Jl}}ADf{h{{M`{Ln}}}}}{{Bf{{Gb{Ll}}G`}}}A@j}{{{h{{Oj{A@n}}}}{h{{M`{c}}}}{h{L`}}{ADh{Bb}}}{{Bf{{Gb{{Cb{Bb{Oj{ACf}}}}}}AAb}}}ACh}{{{h{{Oj{c}}}}{h{dHh}}}{{Bf{AbHj}}}A@`}0{{{h{AC`}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{ACb}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{{A@f{ce}}}}{h{dHh}}}{{Bf{AbHj}}}A@`A@j}0{{{h{{Oj{c}}}}e}GhA@`{{N`{{h{c}}}{{Mn{Gh}}}}}}{{{h{{A@f{ce}}}}g}GhA@`A@j{{N`{{h{c}}}{{Mn{Gh}}}}}}{{{ADj{c}}}{{Oj{c}}}A@`}{{{ADl{c}}}{{Oj{c}}}A@`}{cc{}}{{{ADn{c}}}{{Oj{c}}}A@`}{{{AE`{c}}}{{Oj{c}}}A@`}{{{AEb{c}}}{{Oj{c}}}A@`}{{{AEd{c}}}{{Oj{c}}}A@`}444{{{A@h{ce}}}{{Bf{{A@f{ce}}On}}}A@`A@j}{{{A@h{ce}}AEfAEh}{{A@f{ce}}}A@`A@j}{{{h{Nd}}}{{Bf{{Oj{c}}On}}}ACn}{{{h{Nd}}}{{Bf{{A@f{ce}}On}}}ACnA@j}{{{h{Nd}}{h{AD`}}}{{Bf{{A@f{ce}}On}}}ACnA@j}1{{{h{AEj}}}{{Bf{{Oj{c}}On}}}ACn}{{{h{AEj}}}{{Bf{{A@f{ce}}On}}}ACnA@j}{{{h{{A@f{ce}}}}AEl}{{Gb{{h{{A@f{ce}}}}}}}A@`A@j}{{{h{{A@f{ce}}}}AEl}{{Gb{c}}}A@`A@j}{{{h{{Oj{c}}}}e}{{Bf{{Cb{{Ml{{Ml{Ch}}}}Af}}On}}}{A@`A@b}{{AEn{c}}}}0{{{h{{A@f{ce}}}}}GhA@`A@j}0{{{h{{Oj{A@n}}}}}Gh}{{{h{{Oj{c}}}}{h{de}}}Ab{AF`A@`}Kb}{{{h{AC`}}{h{dc}}}AbKb}{{{h{ACb}}{h{dc}}}AbKb}{{{h{{A@f{ce}}}}{h{dg}}}AbA@`A@jKb}{ce{}{}}000{{{A@f{ce}}}{{A@h{ce}}}A@`A@j}{{{Oj{A@n}}}{{Bf{{Ml{{Oj{A@n}}}}On}}}}{{Fj{h{{M`{Ln}}}}Eb}{{Bf{{Cb{LbLd}}G`}}}}{{Lb{h{{M`{Ln}}}}Eb}{{Bf{{Cb{LbLd}}G`}}}}99:{{{h{{A@f{ce}}}}}{{AFb{ce}}}A@`A@j}{{{h{{A@f{ce}}}}}{{AFd{ce}}}A@`A@j}{{{h{{Oj{c}}}}}{{Bf{{AFf{c}}On}}}A@`}{{{h{{A@f{ce}}}}}{{Bf{{AFf{c}}On}}}A@`A@j}{{{h{{A@f{ce}}}}}{{Bf{AbAFh}}}A@`A@j}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Gb{AEl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{A@f{cAC`}}}}}{{Gb{AEl}}}A@`}{{{h{{A@f{cACb}}}}}{{Gb{AEl}}}A@`}{{{h{{A@f{ce}}}}}{{Bf{AElOn}}}A@`A@j}{{{h{{Oj{c}}}}}{{Bf{AElOn}}}A@`}1{{{h{{Oj{c}}}}}{{Bf{AFjOn}}}A@`}{{}{{h{Nd}}}}00{{{A@f{cAFl}}}{{Bf{{Oj{c}}On}}}A@`}{c{{Oj{c}}}A@`}{c{{Bf{{Oj{c}}On}}}A@`}{{{A@f{cAC`}}}{{Bf{{Oj{c}}On}}}A@`}{{AEl{Ml{c}}}{{Bf{{Oj{c}}On}}}A@`}{{{AE`{c}}}{{Oj{c}}}A@`}{{{ADn{c}}}{{Oj{c}}}A@`}4{{{A@f{cACb}}}{{Bf{{Oj{c}}On}}}A@`}3{{c{Gb{{AFn{c}}}}}{{Bf{{Oj{c}}On}}}A@`}614`{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{L`}}}{{Bf{{A@f{c}}On}}}A@j}{{{h{{M`{c}}}}{h{Nd}}}{{Bf{{Cb{{Oj{A@n}}{An{A@nAG`}}}}On}}}AGb}1{{{h{L`}}{h{AD`}}}{{Bf{{A@f{c}}On}}}A@j}{{{h{{Oj{c}}}}{h{{Oj{c}}}}}{{Gb{F`}}}{AGdA@`}}{{{h{AC`}}{h{AC`}}}{{Gb{F`}}}}{{{h{ACb}}{h{ACb}}}{{Gb{F`}}}}{{{h{{A@f{ce}}}}{h{{A@f{ce}}}}}{{Gb{F`}}}A@`A@j}{{{h{c}}}AElA@`}00{{{Oj{AA`}}{h{c}}}{{Bf{AGf{Oj{AA`}}}}}{{AAh{AA`}}}}0`{{{h{{A@f{ce}}}}}GhA@`A@j}{{{h{{Oj{c}}}}}{{Bf{AbOn}}}A@`}{{{h{{A@f{ce}}}}}{{Bf{AbADb}}}A@`A@j}{{{h{{Oj{c}}}}{h{dAGh}}e}{{Bf{AbOn}}}{A@`A@b}{{AEn{c}}}}{{{h{{A@f{ce}}}}g}{{Bf{{Ml{{Ml{Ch}}}}On}}}{A@bA@`}A@j{{AEn{c}}}}0{{{h{{Oj{c}}}}}{{Bf{AfOn}}}{A@`A@b}}{{{h{{Oj{c}}}}}Af{A@`A@b}}{{{h{{A@f{ce}}}}}AElA@`A@j}{{{h{{Oj{c}}}}e}BfA@`Md}{{{h{{A@f{ce}}}}g}BfA@`A@jMd}{{}AGj}00{{{h{{A@f{ce}}}}{h{{An{ABlc}}}}}{{A@f{ce}}}A@`A@j}`{{{h{c}}}e{}{}}000{{{h{c}}}Gd{}}0{{{h{{Oj{A@n}}}}{h{{An{A@nAG`}}}}}Gd}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}0{{{h{{Oj{c}}}}{h{di}}}{{Bf{{AGl{g}}}}}A@`A@`{}{{AGn{ceg}}}}{{{h{{A@f{ce}}}}{h{dk}}}{{Bf{{AGl{i}}}}}A@`A@jA@`{}{{AGn{cgi}}}}{c{{Bf{e}}}{}{}}0000000`{{{h{c}}}Nb{}}000={ce{}{}}000{{{h{{A@f{ce}}}}}GhA@`A@j}{{{h{Nd}}}{{Bf{GdG`}}}}``````````````{{{h{c}}}{{h{e}}}{}{}}{{{h{dc}}}{{h{de}}}{}{}}{{{h{G`}}{h{G`}}}Gh}{{{h{G`}}{h{dHh}}}Hl}0{AH`G`}{AHbG`}{cc{}}{AHdG`}{AHfG`}{AHhG`}{OnG`}{AHjG`}>{{{h{c}}}Gd{}}{c{{Bf{e}}}{}{}}0{{{h{c}}}Nb{}}{ce{}{}}```````````````````````````````````???????>>>>>>>{{{h{AHl}}}AHl}{{{h{AHn}}}AHn}{{{h{AI`}}}AI`}{{{h{Ll}}}Ll}{{{h{AIb}}}AIb}{{{h{ADf}}}ADf}{{{h{c}}{h{de}}}Ab{}{}}00000``{{}AIb}{{{h{AHl}}{h{AHl}}}Gh}{{{h{AHn}}{h{AHn}}}Gh}{{{h{AI`}}{h{AI`}}}Gh}{{{h{Ll}}{h{Ll}}}Gh}{{{h{AIb}}{h{AIb}}}Gh}{{{h{AHb}}{h{AHb}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}00000000000{{{h{AHl}}{h{dHh}}}Hl}{{{h{AHn}}{h{dHh}}}Hl}{{{h{AI`}}{h{dHh}}}Hl}{{{h{Ll}}{h{dHh}}}Hl}{{{h{AIb}}{h{dHh}}}Hl}{{{h{AHb}}{h{dHh}}}Hl}0{{{h{ADf}}{h{dHh}}}Hl}{cc{}}0{GhAI`}11{AHnLl}222{{{h{Ll}}{h{{An{Gd{Ml{AEl}}}}}}}{{Bf{AIbAHb}}}}{{{h{AHl}}{h{dc}}}AbKb}{{{h{AIb}}{h{dc}}}AbKb}{{{h{AHn}}}Gd}`{ce{}{}}000000{{{h{AHn}}}Gh}{{{h{AI`}}}Gh}{{{h{AIb}}}Gh}`{{{h{AIb}}{h{AIb}}}{{Gb{F`}}}}{{{h{Ll}}}Gh}`{{{h{AHl}}c}BfMd}{{{h{AHn}}c}BfMd}{{{h{AI`}}c}BfMd}{{{h{Ll}}c}BfMd}{{{h{AIb}}c}BfMd}`{{{h{c}}}e{}{}}00000{{{h{c}}}Gd{}}{c{{Bf{e}}}{}{}}0000000000000{{{h{c}}}Nb{}}000000>>>>>>>``````````````````````````````````````{{{h{c}}}{{h{e}}}{}{}}00000000000{{{h{dc}}}{{h{de}}}{}{}}00000000000{{AIdEb}{{Bf{AIfG`}}}}{{{AIh{c}}Eb}{{Bf{AIfG`}}}{{AIj{AC`}}}}{{{AIl{c}}Eb}{{Bf{AIfG`}}}{{AIj{ACb}}}}{{{AIn{c}}Eb}{{Bf{AIfG`}}}{{AIj{ACb}}}}{{{AJ`{c}}Eb}{{Bf{AIfG`}}}{{AIj{AJb}}}}{{{AJd{c}}Eb}{{Bf{AIfG`}}}{{AJf{AC`}}}}{{{AJh{c}}Eb}{{Bf{AIfG`}}}{{AJf{AC`}}}}{{{AJj{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AJl{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AJn{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AK`{c}}Eb}{{Bf{AIfG`}}}{{AJf{ACb}}}}{{{AKb{c}}Eb}{{Bf{AIfG`}}}{{AJf{AJb}}}}{{{AKd{c}}Eb}{{Bf{AIfG`}}}{{AJf{AJb}}}}{{{h{{AIh{c}}}}}{{AIh{c}}}{Al{AIj{AC`}}}}{{{h{{AIl{c}}}}}{{AIl{c}}}{Al{AIj{ACb}}}}{{{h{{AIn{c}}}}}{{AIn{c}}}{Al{AIj{ACb}}}}{{{h{{AJ`{c}}}}}{{AJ`{c}}}{Al{AIj{AJb}}}}{{{h{{AJd{c}}}}}{{AJd{c}}}{Al{AJf{AC`}}}}{{{h{{AJh{c}}}}}{{AJh{c}}}{Al{AJf{AC`}}}}{{{h{{AJj{c}}}}}{{AJj{c}}}{Al{AJf{ACb}}}}{{{h{{AJl{c}}}}}{{AJl{c}}}{Al{AJf{ACb}}}}{{{h{{AJn{c}}}}}{{AJn{c}}}{Al{AJf{ACb}}}}{{{h{{AK`{c}}}}}{{AK`{c}}}{Al{AJf{ACb}}}}{{{h{{AKb{c}}}}}{{AKb{c}}}{Al{AJf{AJb}}}}{{{h{{AKd{c}}}}}{{AKd{c}}}{Al{AJf{AJb}}}}{{{h{c}}{h{de}}}Ab{}{}}00000000000{{{h{{AIh{c}}}}{h{dHh}}}Hl{Hn{AIj{AC`}}}}{{{h{{AIl{c}}}}{h{dHh}}}Hl{Hn{AIj{ACb}}}}{{{h{{AIn{c}}}}{h{dHh}}}Hl{Hn{AIj{ACb}}}}{{{h{{AJ`{c}}}}{h{dHh}}}Hl{Hn{AIj{AJb}}}}{{{h{{AJd{c}}}}{h{dHh}}}Hl{Hn{AJf{AC`}}}}{{{h{{AJh{c}}}}{h{dHh}}}Hl{Hn{AJf{AC`}}}}{{{h{{AJj{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AJl{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AJn{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AK`{c}}}}{h{dHh}}}Hl{Hn{AJf{ACb}}}}{{{h{{AKb{c}}}}{h{dHh}}}Hl{Hn{AJf{AJb}}}}{{{h{{AKd{c}}}}{h{dHh}}}Hl{Hn{AJf{AJb}}}}{cc{}}00000000000{ce{}{}}00000000000{{AIf{h{{M`{Ln}}}}Eb}{{Bf{{Cb{LbLd}}G`}}}}{{c{h{{M`{Ln}}}}Eb}{{Bf{{Cb{{Oj{A@n}}{An{A@nAG`}}}}G`}}}{}}00000000000{{{h{c}}}e{}{}}00000000000{c{{Bf{e}}}{}{}}00000000000000000000000{{{h{c}}}Nb{}}00000000000555555555555`````````````````````````````{{{h{c}}}{{h{e}}}{}{}}00{{{h{dc}}}{{h{de}}}{}{}}00{{{h{AKf}}}AKf}{{{h{c}}{h{de}}}Ab{}{}}{{{h{AKf}}{h{dHh}}}Hl}0{{{h{Jj}}{h{dHh}}}Hl}0{{{h{Df}}{h{dHh}}}Hl}0={NfJj}{G`Jj}{AHbJj}{AKfJj}{AKhJj}{cc{}}0{ce{}{}}00{{{h{c}}}e{}{}}{{{h{c}}}Gd{}}00{c{{Bf{e}}}{}{}}00000{{{h{c}}}Nb{}}00444``````````{{{h{c}}}{{h{e}}}{}{}}{{{h{dc}}}{{h{de}}}{}{}}{{{h{AKj}}}{{Gb{Gd}}}}{{{h{AKj}}}Gd}{c{{Bf{AKj}}}Gf}{{{h{f}}{h{Nd}}Gh}{{Bf{AKj{h{Nd}}}}}}{{{h{AKj}}{h{dHh}}}Hl}0<{{{h{Nd}}}{{Bf{AKjc}}}{}}<``{{{h{AKj}}c}BfMd};::9=```````````````````````````````````````````{{}AKl}{{}A@d}{{A@nBb}{{Bf{AA`AAb}}}};;;;;;;;;;;;::::::::::::{{{h{{AKn{ce}}}}{h{g}}}{{AAf{{AAd{c}}}}}{A@bA@`}A@j{{AAh{c}}}}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}00000{{{h{c}}}{{Bf{AbAAl}}}A@`}{{{h{{A@h{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbAAl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{h{{Cj{{Ml{Ch}}}}}}}{{Bf{AbAAl}}}}{{{h{{AL`{ce}}}}}{{AL`{ce}}}AlA@j}{{{h{A@d}}}A@d}{{{h{ALb}}}ALb}{{{h{{AKn{ce}}}}}{{AKn{ce}}}{AlA@`}{AlA@j}}{{{h{A@n}}}A@n}{{{h{AG`}}}AG`}{{{h{ALd}}}ALd}{{{h{ALf}}}ALf}{{{h{ALh}}}ALh}{{{h{c}}{h{de}}}Ab{}{}}00000000{{{h{{AKn{ce}}}}{h{{AKn{ce}}}}}F`{ACdA@`}{ACdA@j}}{{{h{A@n}}{h{A@n}}}F`}{{{h{ALd}}{h{ALd}}}F`}{{{h{ALh}}{h{ALh}}}F`}`{{}ALb}{{{h{{AL`{ce}}}}}{{h{g}}}{}A@j{}}{{A@nBb}{{Bf{AA`AAb}}}}{c{{Bf{A@n}}}Gf}{{{h{{AKn{ce}}}}}Af{A@bA@`}A@j}{{{h{A@d}}{h{A@d}}}Gh}{{{h{AHf}}{h{AHf}}}Gh}{{{h{{AKn{ce}}}}{h{{AKn{ce}}}}}Gh{GlA@`}{GlA@j}}{{{h{A@n}}{h{A@n}}}Gh}{{{h{AG`}}{h{AG`}}}Gh}{{{h{ALd}}{h{ALd}}}Gh}{{{h{ALf}}{h{ALf}}}Gh}{{{h{ALh}}{h{ALh}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0000000000000{{{h{{ALj{c}}}}{h{dHh}}}Hl{HnA@j}}{{{h{A@d}}{h{dHh}}}Hl}{{{h{ALb}}{h{dHh}}}Hl}{{{h{AHf}}{h{dHh}}}Hl}0{{{h{{AKn{ce}}}}{h{dHh}}}{{Bf{AbHj}}}A@`A@j}0{{{h{A@n}}{h{dHh}}}{{Bf{AbHj}}}}0{{{h{AG`}}{h{dHh}}}{{Bf{AbHj}}}}0{{{h{ALd}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{ALf}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{ALh}}{h{dHh}}}{{Bf{AbHj}}}}{{{h{{AKn{ce}}}}g}GhA@`A@j{{N`{{h{c}}}{{Mn{Gh}}}}}}{ALl{{ALn{c}}}A@j}{cc{}}{AM`{{ALn{c}}}A@j}1111{OnAHf}{AHhAHf}333{AA`A@n}4444{{A@nAKl}{{ALj{c}}}A@j}{{AG`AKl}{{ALj{c}}}A@j}{{{h{Nd}}}{{Bf{A@n}}}}{{{h{Nd}}}{{Bf{AG`}}}}{{{h{AEj}}}{{Bf{{AKn{ce}}On}}}{AMbA@`}A@j}{{{h{A@n}}}{{Gb{AMd}}}}{{{h{A@n}}}{{Ml{AMd}}}}{c{{Bf{{AL`{{AMj{}{{AMf{e}}{AMh{c}}{Kd{g}}}}i}}g}}}{}{{AMl{{Cj{Ch}}}}Oh}HnA@j}{{}{{Bf{{AL`{AMnc}}e}}}A@j{}}{{{h{dc}}}{{Bf{{AL`{AMne}}g}}}{AN`Od}A@j{}}{{c{h{de}}}{{Bf{{AL`{{AMj{}{{AMf{g}}{AMh{c}}{Kd{i}}}}k}}i}}}{}{AN`Od}{{AMl{{Cj{Ch}}}}Oh}HnA@j}{{ce}{{Bf{{AL`{{AMj{}{{AMf{e}}{AMh{c}}{Kd{g}}}}i}}g}}}{}{{AMl{{Cj{Ch}}}}Oh}HnA@j}{c{{Bf{{AL`{AMne}}g}}}{}A@j{}}{{{h{{ALn{c}}}}}GhA@j}{{{h{A@n}}}Gh}{{{h{{AKn{ce}}}}{h{dg}}}Ab{AF`A@`}{AF`A@j}Kb}{{{h{A@n}}{h{dc}}}AbKb}{{{h{ALd}}{h{dc}}}AbKb}{{{h{ALh}}{h{dc}}}AbKb}{ce{}{}}00000000000{A@nANb}{AIj{{Bf{{ALj{c}}AHf}}}A@j}{{AJf{Gb{ANd}}AMd}{{Bf{{ALj{c}}AHf}}}A@j}{{{AL`{ec}}{Gb{ANd}}AMd}{{Bf{{ALj{c}}AHf}}}A@j{{AJf{c}}}}{{{AL`{ec}}}{{Bf{{ALj{c}}AHf}}}A@j{{AIj{c}}}}{{{ALj{c}}}{{Bf{{ALj{c}}AHf}}}A@j}{A@n{{Bf{{ALj{c}}AHf}}}A@j}{AG`{{Bf{{ALj{c}}AHf}}}A@j}{AJf{{Bf{{ALn{c}}AHf}}}A@j}{{{ALn{c}}}{{Bf{{ALn{c}}AHf}}}A@j}{{{AL`{ec}}}{{Bf{{ALn{c}}AHf}}}A@j{{AJf{c}}}}{{{AL`{ce}}}c{}A@j}{A@n{{Ml{A@n}}}}{AG`{{Ml{AG`}}}}{{{ALn{c}}Eb}{{Gb{ALl}}}A@j}{{{ALn{c}}Eb{h{{M`{e}}}}}AM`A@jAGb}{{{h{A@n}}}Gh}{{}Gh}{{{h{A@d}}}Gh}2{{{h{AG`}}}Gh}212133{{{h{{AKn{ce}}}}}AElA@`A@j}``{{{h{{AKn{ce}}}}}{{Bf{{AFf{c}}On}}}A@`A@j}{{}AKl}{{{h{A@n}}}ANf}{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Gb{AEl}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}44{{{h{AKl}}{h{AKl}}}AKl}5{{}{{h{Nd}}}}{{AEl{Ml{c}}}{{Bf{{AKn{ce}}On}}}A@`A@j}{{{h{A@n}}}AEl}``{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}{{{ALj{c}}AKl}{{ALj{c}}}A@j}{{{h{{AKn{ce}}}}{h{{AKn{ce}}}}}{{Gb{F`}}}{AGdA@`}{AGdA@j}}{{{h{A@n}}{h{A@n}}}{{Gb{F`}}}}{{{h{ALd}}{h{ALd}}}{{Gb{F`}}}}{{{h{ALh}}{h{ALh}}}{{Gb{F`}}}}{{{h{c}}}AElA@`}{{{h{{AKn{ce}}}}}{{h{{Cj{c}}}}}A@`A@j}{{{h{{AKn{ce}}}}}{{Bf{AbOn}}}A@`A@j}{{{h{{AKn{ce}}}}g}{{Bf{{Ml{{Ml{Ch}}}}On}}}{A@bA@`}A@j{{AEn{c}}}}{{{h{{AKn{ce}}}}}AElA@`A@j}{{{h{A@n}}c}BfMd}{{}AGj}{{{h{{AKn{ce}}}}}{{A@h{ce}}}{A@bA@`}A@j}{{}AKl}{{{h{c}}}e{}{}}00000000{{{h{AG`}}{h{{M`{c}}}}}{{Bf{A@nANh}}}AGb}{{{h{c}}}Gd{}}000{{{h{{A@f{c{A@j{}{{AAj{e}}}}}}}}}{{Bf{AbOn}}}A@`{{ABn{}{{AAn{AB`}}{ABb{ABd}}{ABf{ABh}}{ABj{ABl}}}}A@`A@`A@`A@`}}0{{{h{{AKn{ce}}}}{h{dk}}}{{Bf{{AKn{ge}}{AGl{i}}}}}A@`A@jA@`{}{{AGn{cgi}}}}{c{{Bf{e}}}{}{}}00000000000000000000000{{{h{c}}}Nb{}}00000000000{ce{}{}}00000000000`{{{h{ANj}}}{{Gb{Dh}}}}{{{h{ANj}}}{{Gb{Dl}}}}{{{h{ANj}}AEl}{{Gb{Kl}}}}`{{{h{Jb}}{h{Nd}}{h{{Cj{{h{Nd}}}}}}}{{Bf{AbANl}}}}````````````````````````````````````{{{h{dJl}}ANnl{A`{n}}}{{Gb{{A`{n}}}}}}``{{{h{Jl}}{h{{M`{Ln}}}}}Ld}`{{{h{c}}}{{h{e}}}{}{}}0000000{{{h{dc}}}{{h{de}}}{}{}}0000000{{Ld{h{{Oj{A@n}}}}{h{{M`{Ln}}}}}Jl}{{{h{ANn}}}ANn}{{{h{AO`}}}AO`}{{{h{{AOb{c}}}}}{{AOb{c}}}{AlAOdHnAl}}{{{h{l}}}l}{{{h{Jl}}}Jl}{{{h{Hd}}}Hd}{{{h{AOf}}}AOf}{{{h{c}}{h{de}}}Ab{}{}}000000{{{h{ANn}}{h{ANn}}}F`}{{{h{l}}{h{l}}}F`}{{}l}{{}Jl}{{}Hd}{{}AOf}{{{h{{AOb{c}}}}}{{h{e}}}{AOdHnAl}{}}{{{h{AOh}}}{{Gb{AG`}}}}0{{{h{{AOb{{AOj{ALl}}}}}}}{{Gb{AG`}}}}{{{h{{AOb{AOl}}}}}{{Gb{AG`}}}}{{{h{{AOb{{AOn{ALl}}}}}}}{{Gb{AG`}}}}{{{h{ANn}}{h{ANn}}}Gh}{{{h{AO`}}{h{AO`}}}Gh}{{{h{l}}{h{l}}}Gh}{{{h{AOf}}{h{AOf}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0000000{{{h{Jl}}ANn}{{Gb{{h{{A`{n}}}}}}}}{{{h{ANn}}{h{dHh}}}Hl}{{{h{Hf}}{h{dHh}}}Hl}0{{{h{AO`}}{h{dHh}}}Hl}{{{h{{AOb{c}}}}{h{dHh}}}Hl{HnAOdHnAl}}{{{h{l}}{h{dHh}}}Hl}{{{h{Jl}}{h{dHh}}}Hl}{{{h{Hd}}{h{dHh}}}Hl}{{{h{AOf}}{h{dHh}}}Hl}{ABlANn}{ANfANn}{cc{}}0000000{{{h{ANn}}{h{dc}}}AbKb}{{{h{AOh}}{h{{M`{Ln}}}}}ANn}{{{h{{AOb{{AOn{ALl}}}}}}{h{{M`{Ln}}}}}ANn}{{{h{{AOb{AOl}}}}{h{{M`{Ln}}}}}ANn}{{{h{{AOb{{AOj{ALl}}}}}}{h{{M`{Ln}}}}}ANn}{{{h{Jl}}}{{Ml{{h{ANn}}}}}}{ce{}{}}0000000{{cAO`}{{AOb{c}}}{AOdHnAl}}{{}Jl}{{{h{ANn}}{h{ANn}}}{{Gb{F`}}}}{{{h{l}}{h{l}}}{{Gb{F`}}}}{{{h{dJl}}ANnl}{{Gb{{A`{n}}}}}}{{{h{B@`}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{{AOb{AOl}}}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{{AOb{{AOj{ALl}}}}}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{{AOb{{AOn{ALl}}}}}}{h{dHb}}AEl{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{n}}{h{dHb}}{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}}{{{h{c}}{h{dHb}}{h{Hd}}{h{{M`{Ln}}}}}{{Bf{AbHf}}}{}}`{{{h{Jl}}}{{Ml{{h{{A`{n}}}}}}}}`{{{h{c}}}e{}{}}000000{{{h{c}}}Gd{}}``{c{{Bf{e}}}{}{}}000000000000000{{{h{c}}}Nb{}}0000000{ce{}{}}0000000````````````````{{{h{d{Dd{c}}}}{h{e}}}{{h{d{Dd{c}}}}}{}{{B@d{B@b}}}}{{{h{d{Dd{c}}}}K`JhAFj}{{Bf{{h{d{Dd{c}}}}B@f}}}{}}{{{h{d{Dd{c}}}}K`JhAFjMb}{{Bf{{h{d{Dd{c}}}}B@f}}}{}}{{{h{d{Dd{c}}}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}AfDh}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}K`}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}K`}{{Bf{{h{d{Dd{c}}}}B@h}}}{}}{{{h{d{Dd{c}}}}{h{{Cj{K`}}}}}{{Bf{{h{d{Dd{c}}}}B@h}}}{}}{{{h{d{Dd{c}}}}Gh}{{h{d{Dd{c}}}}}{}}{{{h{c}}}{{h{e}}}{}{}}0000{{{h{dc}}}{{h{de}}}{}{}}0000{{{h{d{Dd{c}}}}B@j}{{h{d{Dd{c}}}}}{}}{{{h{B@l}}}B@l}{{{h{B@j}}}B@j}{{{h{c}}{h{de}}}Ab{}{}}0{{{h{B@j}}{h{B@j}}}F`}{{{Dd{c}}e}{{Dd{e}}}{}O`}{{{h{d{Dd{c}}}}Bb}{{h{d{Dd{c}}}}}{}}{{}B@l}{{}B@j}{{{h{d{Dd{c}}}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Af}{{h{d{Dd{c}}}}}{}}1{{{h{B@j}}{h{B@j}}}Gh}{{{h{c}}{h{e}}}Gh{}{}}0{{{h{d{Dd{c}}}}Dh}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Dl}{{h{d{Dd{c}}}}}{}}{{{Dd{c}}}{{Bf{HbJj}}}O`}{{{Dd{c}}{h{de}}}{{Bf{HbJj}}}O`Od}{{{h{{Dd{c}}}}{h{dHh}}}HlHn}{{{h{B@h}}{h{dHh}}}Hl}0{{{h{B@f}}{h{dHh}}}Hl}0{{{h{B@l}}{h{dHh}}}Hl}{{{h{B@j}}{h{dHh}}}Hl}{cc{}}0000{{{h{B@j}}{h{dc}}}AbKb}>{ce{}{}}0000?{{{h{d{Dd{c}}}}B@n}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}}{{h{d{Dd{c}}}}}{}}0{{{h{d{Dd{c}}}}B@l}{{h{d{Dd{c}}}}}{}}{{{h{B@j}}{h{B@j}}}{{Gb{F`}}}}{{{h{d{Dd{c}}}}{An{Gd{Ml{AEl}}}}j}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Mb}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}{Ml{{Cb{AfDh}}}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}Jf}{{h{d{Dd{c}}}}}{}}{{{h{B@l}}{h{dBl}}}Ab}{{{h{B@l}}{h{dBl}}{h{dc}}}AbOd}{{{h{c}}}e{}{}}0{{{h{c}}}Gd{}}0{c{{Bf{e}}}{}{}}000000000{{{h{c}}}Nb{}}0000{{{h{d{Dd{c}}}}{Ml{K`}}}{{h{d{Dd{c}}}}}{}}{{{h{d{Dd{c}}}}BA`}{{h{d{Dd{c}}}}}{}}{ce{}{}}0000````","D":"GCh","p":[[5,"Balance",0,1988],[0,"mut"],[5,"Wallet",0,1989],[1,"reference"],[6,"KeychainKind",0,1990],[5,"SignerOrdering",1686,1991],[10,"TransactionSigner",1686,1991],[5,"Arc",1992],[1,"unit"],[17,"Item"],[5,"ScriptBuf",1993],[8,"Indexed",1994],[10,"Iterator",1995],[10,"Clone",1996],[5,"BTreeMap",1997],[5,"Block",1998],[1,"u32"],[5,"CannotConnectError",1999],[6,"Result",2000],[5,"BlockId",2001],[6,"ApplyHeaderError",1999],[5,"Transaction",2002],[10,"Into",2003],[1,"u64"],[1,"tuple"],[10,"IntoIterator",2004],[5,"Update",0,1989],[1,"u8"],[1,"slice"],[5,"ConfirmationBlockTime",2001],[5,"TxGraph",2005],[5,"Txid",2002],[8,"DefaultCoinSelectionAlgorithm",487,2006],[5,"TxBuilder",1873,2007],[6,"BuildFeeBumpError",1265,2008],[5,"Amount",2009],[6,"CalculateFeeError",2005],[5,"FeeRate",2010],[5,"LoadParams",0,2011],[5,"BlockHash",1998],[6,"Network",2012],[5,"CheckPointIter",2013],[5,"LocalOutput",0,1990],[5,"WeightedUtxo",0,1990],[6,"Utxo",0,1990],[5,"ChangeSet",0,2014],[5,"AddressInfo",0,1989],[6,"Ordering",2015],[5,"CreateParams",0,2011],[5,"PersistedWallet",0,2016],[6,"CreateWithPersistError",0,2016],[10,"WalletPersister",0,2016],[10,"IntoWalletDescriptor",604],[10,"Send",2017],[10,"AsyncWalletPersister",0,2016],[6,"Error",865],[6,"Option",2018],[5,"String",2019],[10,"Deserializer",2020],[1,"bool"],[6,"LoadWithPersistError",0,2016],[10,"PartialEq",2015],[6,"LoadError",0,1989],[6,"LoadMismatch",0,1989],[5,"Psbt",2021],[5,"SignOptions",1686,1991],[6,"SignerError",1686,1991],[5,"Formatter",2022],[5,"Error",2022],[8,"Result",2022],[10,"Debug",2022],[6,"FileStoreError",0,2016],[10,"Display",2022],[6,"ApplyBlockError",0,1989],[5,"ChangeSet",1999],[5,"ChangeSet",2023],[5,"ChangeSet",2024],[5,"ChangeSet",2005],[5,"SyncResponse",2025],[5,"FullScanResponse",2025],[5,"Transaction",2026],[8,"Result",2027],[5,"PsbtSighashType",2028],[5,"Input",2028],[6,"CreateTxError",1265,2008],[5,"SignersContainer",1686,1991],[8,"WalletTx",0,1989],[5,"OutPoint",2002],[10,"Hasher",2029],[17,"Error"],[10,"Future",2030],[5,"Box",2031],[5,"Pin",2032],[5,"TxOut",2002],[10,"IsDust",0,2033],[5,"Script",2034],[8,"ExtendedDescriptor",604],[8,"KeyMap",1364,2035],[5,"CheckPoint",2013],[10,"DoubleEndedIterator",2036],[5,"LocalChain",1999],[5,"Policy",898],[6,"All",2037],[5,"Secp256k1",2038],[5,"Sequence",2002],[10,"Serializer",2039],[5,"KeychainTxOutIndex",2023],[5,"FullScanRequestBuilder",2025],[5,"SyncRequestBuilder",2025],[5,"Vec",2040],[17,"Output"],[10,"FnMut",2041],[5,"TypeId",2042],[1,"str"],[5,"InsufficientFunds",487,2006],[5,"LargestFirstCoinSelection",487,2006],[5,"OldestFirstCoinSelection",487,2006],[5,"BranchAndBoundCoinSelection",487,2006],[5,"SingleRandomDraw",487,2006],[10,"CoinSelectionAlgorithm",487,2006],[5,"CoinSelectionResult",487,2006],[10,"RngCore",2043],[6,"Excess",487,2006],[10,"Default",2044],[6,"Descriptor",604,2035],[5,"Address",2045],[6,"Error",2046],[10,"MiniscriptKey",2046],[10,"ToPublicKey",2046],[6,"ScriptContextEnum",1364],[5,"Miniscript",604,2047],[6,"Terminal",2048],[10,"ScriptContext",1364,2049],[6,"Tree",2050],[6,"DescriptorPublicKey",1364,2051],[5,"DefiniteDescriptorKey",2051],[6,"ConversionError",2051],[6,"Placeholder",2052],[5,"Satisfaction",2052],[10,"AssetProvider",2053],[17,"Key"],[6,"ScriptContextError",2049],[17,"Sha256"],[5,"Hash",2054],[17,"Hash256"],[5,"Hash",2055],[17,"Ripemd160"],[5,"Hash",2056],[17,"Hash160"],[5,"Hash",2057],[10,"ParseableKey",2048],[6,"Legacy",604,2049],[6,"Segwitv0",604,2049],[10,"Ord",2015],[5,"PublicKey",2058],[10,"Verification",2059],[6,"DescriptorType",2035],[5,"DescriptorId",2060],[10,"FromStrKey",2061],[5,"ExtParams",2062],[6,"AnalysisError",2062],[10,"ExtractPolicy",604],[6,"BuildSatisfaction",898],[5,"Range",2063],[5,"Sh",2064],[5,"Pkh",2065],[5,"Wsh",2066],[5,"Wpkh",2066],[5,"Tr",2067],[5,"Bare",2065],[5,"Type",2068],[5,"ExtData",2069],[5,"Tree",2070],[1,"usize"],[10,"Satisfier",2052],[10,"Hash",2029],[5,"Iter",2071],[5,"PkIter",2071],[6,"Policy",2072],[6,"LiftError",2073],[5,"Weight",2074],[6,"BareCtx",2049],[6,"TapTree",2067],[6,"DescriptorSecretKey",1364,2051],[10,"Signing",2059],[10,"PartialOrd",2015],[5,"Plan",2053],[5,"TxIn",2002],[6,"SigType",2049],[6,"TranslateErr",2046],[10,"Translator",2046],[6,"ParsePublicKeyError",2058],[6,"PolicyError",898],[6,"Error",2075],[6,"KeyError",1364],[6,"Error",2076],[6,"HexToBytesError",2077],[6,"PkOrF",898],[6,"SatisfiableItem",898],[6,"Satisfaction",898],[5,"Condition",898],[10,"DescriptorTemplate",1081],[8,"DescriptorTemplateOut",1081],[5,"P2Pkh",1081],[10,"IntoDescriptorKey",1364],[5,"P2Wpkh_P2Sh",1081],[5,"P2Wpkh",1081],[5,"P2TR",1081],[6,"Tap",2049],[5,"Bip44",1081],[10,"DerivableKey",1364],[5,"Bip44Public",1081],[5,"Bip49",1081],[5,"Bip49Public",1081],[5,"Bip84",1081],[5,"Bip84Public",1081],[5,"Bip86",1081],[5,"Bip86Public",1081],[6,"MiniscriptPsbtError",1265,2008],[6,"Error",2078],[5,"FullyNodedExport",1341,2079],[8,"ValidNetworks",1364],[5,"SortedMultiVec",1364,2080],[5,"GeneratedKey",1364],[5,"PrivateKeyGenerateOptions",1364],[5,"SinglePub",1364,2051],[5,"SinglePriv",1364,2051],[6,"SinglePubKey",1364,2051],[6,"DescriptorKey",1364],[5,"Xpriv",2076],[6,"ExtendedKey",1364],[5,"Xpub",2076],[10,"FromStr",2081],[5,"DerivationPath",2076],[17,"Entropy"],[17,"Options"],[10,"GeneratableKey",1364],[10,"AsMut",2003],[10,"GeneratableDefaultOptions",1364],[10,"CryptoRng",2043],[5,"Assets",2053],[8,"KeySource",2076],[5,"Fingerprint",2076],[5,"DescriptorKeyParseError",2051],[10,"PsbtUtils",1680],[6,"Error",2082],[6,"SignerId",1686,1991],[6,"SignerContext",1686,1991],[5,"SignerWrapper",1686,1991],[10,"Sized",2017],[6,"TapLeavesOptions",1686,1991],[10,"SignerCommon",1686,1991],[5,"DescriptorMultiXKey",2051],[5,"PrivateKey",2058],[5,"DescriptorXKey",2051],[10,"InputSigner",1686,1991],[5,"PushBytes",2083],[10,"AsRef",2003],[6,"AddForeignUtxoError",1873,2007],[6,"AddUtxoError",1873,2007],[6,"ChangeSpendPolicy",1873,2007],[6,"TxOrdering",1873,2007],[6,"LockTime",2084],[1,"i32"],[15,"InvalidTxid",1984],[15,"UnexpectedConnectedToHash",473],[15,"Network",475],[15,"Genesis",475],[15,"Descriptor",475],[15,"Custom",1986],[15,"Foreign",484],[15,"Change",599],[15,"NoChange",599],[8,"DerivedDescriptor",604],[15,"PsbtTimelocks",1057],[15,"Complete",1060],[15,"Partial",1060],[15,"PartialComplete",1060],[15,"Sha256Preimage",1071],[15,"Hash256Preimage",1071],[15,"Ripemd160Preimage",1071],[15,"Hash160Preimage",1071],[15,"Thresh",1071],[15,"Multisig",1071],[15,"AbsoluteTimelock",1071],[15,"RelativeTimelock",1071],[15,"RbfSequenceCsv",1335],[15,"LockTime",1335],[15,"FeeTooLow",1335],[15,"FeeRateTooLow",1335],[8,"WalletExport",1341],[10,"ExtScriptContext",1364],[15,"Tap",1872]],"r":[[0,2007],[1,2007],[2,1989],[3,1989],[4,2016],[5,1988],[9,2014],[10,2007],[11,2011],[12,2016],[21,2016],[24,604],[29,2033],[30,1990],[32,1989],[33,1989],[34,2011],[35,2016],[37,1990],[47,2016],[49,1991],[50,2007],[51,2007],[55,1989],[56,1990],[59,1989],[60,2016],[61,1989],[62,1990],[147,1989],[198,1989],[199,1989],[338,2085],[354,1989],[355,1989],[363,604],[422,1989],[470,1989],[487,2006],[489,2006],[490,2006],[491,2006],[492,2006],[493,2006],[494,2006],[496,2006],[497,2006],[528,2006],[608,2035],[610,2051],[617,2049],[618,2047],[623,898],[624,2049],[625,2049],[659,864],[1265,2008],[1268,2008],[1276,2008],[1341,2079],[1342,2079],[1367,2051],[1368,2051],[1383,2035],[1393,2049],[1398,2051],[1399,2051],[1400,2051],[1401,2080],[1684,2086],[1685,2086],[1693,1991],[1710,1991],[1711,1991],[1712,1991],[1713,1991],[1714,1991],[1715,1991],[1716,1991],[1717,1991],[1719,1991],[1720,1991],[1873,2007],[1874,2007],[1877,2007],[1884,2007],[1885,2007]],"b":[[203,"impl-Display-for-Balance"],[204,"impl-Debug-for-Balance"],[211,"impl-Debug-for-FileStoreError"],[212,"impl-Display-for-FileStoreError"],[213,"impl-Display-for-LoadWithPersistError%3CE%3E"],[214,"impl-Debug-for-LoadWithPersistError%3CE%3E"],[215,"impl-Debug-for-CreateWithPersistError%3CE%3E"],[216,"impl-Display-for-CreateWithPersistError%3CE%3E"],[219,"impl-Display-for-AddressInfo"],[220,"impl-Debug-for-AddressInfo"],[221,"impl-Debug-for-LoadError"],[222,"impl-Display-for-LoadError"],[224,"impl-Display-for-ApplyBlockError"],[225,"impl-Debug-for-ApplyBlockError"],[235,"impl-From%3CChangeSet%3E-for-ChangeSet"],[236,"impl-From%3CChangeSet%3CConfirmationBlockTime,+ChangeSet%3E%3E-for-ChangeSet"],[237,"impl-From%3CChangeSet%3CConfirmationBlockTime%3E%3E-for-ChangeSet"],[238,"impl-From%3CChangeSet%3E-for-ChangeSet"],[246,"impl-From%3CSyncResponse%3E-for-Update"],[247,"impl-From%3CFullScanResponse%3CKeychainKind%3E%3E-for-Update"],[538,"impl-Display-for-InsufficientFunds"],[539,"impl-Debug-for-InsufficientFunds"],[697,"impl-Descriptor%3CDefiniteDescriptorKey%3E"],[698,"impl-Descriptor%3CDescriptorPublicKey%3E"],[725,"impl-Display-for-Descriptor%3CPk%3E"],[726,"impl-Debug-for-Descriptor%3CPk%3E"],[729,"impl-Display-for-Miniscript%3CPk,+Ctx%3E"],[730,"impl-Debug-for-Miniscript%3CPk,+Ctx%3E"],[733,"impl-From%3CSh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[734,"impl-From%3CPkh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[736,"impl-From%3CWsh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[737,"impl-From%3CWpkh%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[738,"impl-From%3CTr%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[739,"impl-From%3CBare%3CPk%3E%3E-for-Descriptor%3CPk%3E"],[882,"impl-Debug-for-Error"],[883,"impl-Display-for-Error"],[884,"impl-From%3CParsePublicKeyError%3E-for-Error"],[885,"impl-From%3CPolicyError%3E-for-Error"],[887,"impl-From%3CError%3E-for-Error"],[888,"impl-From%3CKeyError%3E-for-Error"],[889,"impl-From%3CError%3E-for-Error"],[890,"impl-From%3CError%3E-for-Error"],[891,"impl-From%3CHexToBytesError%3E-for-Error"],[985,"impl-Debug-for-PolicyError"],[986,"impl-Display-for-PolicyError"],[1302,"impl-Debug-for-MiniscriptPsbtError"],[1303,"impl-Display-for-MiniscriptPsbtError"],[1304,"impl-Display-for-CreateTxError"],[1305,"impl-Debug-for-CreateTxError"],[1306,"impl-Display-for-BuildFeeBumpError"],[1307,"impl-Debug-for-BuildFeeBumpError"],[1309,"impl-From%3CInsufficientFunds%3E-for-CreateTxError"],[1310,"impl-From%3CError%3E-for-CreateTxError"],[1311,"impl-From%3CPolicyError%3E-for-CreateTxError"],[1312,"impl-From%3CMiniscriptPsbtError%3E-for-CreateTxError"],[1313,"impl-From%3CError%3E-for-CreateTxError"],[1351,"impl-Debug-for-FullyNodedExport"],[1352,"impl-Display-for-FullyNodedExport"],[1497,"impl-Debug-for-KeyError"],[1498,"impl-Display-for-KeyError"],[1499,"impl-Display-for-SortedMultiVec%3CPk,+Ctx%3E"],[1500,"impl-Debug-for-SortedMultiVec%3CPk,+Ctx%3E"],[1501,"impl-Display-for-DescriptorPublicKey"],[1502,"impl-Debug-for-DescriptorPublicKey"],[1503,"impl-Display-for-DescriptorSecretKey"],[1504,"impl-Debug-for-DescriptorSecretKey"],[1509,"impl-From%3CXpriv%3E-for-ExtendedKey%3CCtx%3E"],[1511,"impl-From%3CXpub%3E-for-ExtendedKey%3CCtx%3E"],[1516,"impl-From%3CError%3E-for-KeyError"],[1517,"impl-From%3CError%3E-for-KeyError"],[1560,"impl-DerivableKey%3CCtx%3E-for-GeneratedKey%3CK,+Ctx%3E"],[1561,"impl-IntoDescriptorKey%3CCtx%3E-for-GeneratedKey%3CK,+Ctx%3E"],[1767,"impl-SignerCommon-for-SignerWrapper%3CDescriptorMultiXKey%3CXpriv%3E%3E"],[1768,"impl-SignerCommon-for-SignerWrapper%3CPrivateKey%3E"],[1769,"impl-SignerCommon-for-SignerWrapper%3CDescriptorXKey%3CXpriv%3E%3E"],[1784,"impl-Debug-for-SignerError"],[1785,"impl-Display-for-SignerError"],[1792,"impl-From%3CHash%3E-for-SignerId"],[1793,"impl-From%3CFingerprint%3E-for-SignerId"],[1804,"impl-SignerCommon-for-SignerWrapper%3CDescriptorXKey%3CXpriv%3E%3E"],[1805,"impl-SignerCommon-for-SignerWrapper%3CPrivateKey%3E"],[1806,"impl-SignerCommon-for-SignerWrapper%3CDescriptorMultiXKey%3CXpriv%3E%3E"],[1822,"impl-InputSigner-for-SignerWrapper%3CPrivateKey%3E"],[1823,"impl-InputSigner-for-SignerWrapper%3CDescriptorMultiXKey%3CXpriv%3E%3E"],[1824,"impl-InputSigner-for-SignerWrapper%3CDescriptorXKey%3CXpriv%3E%3E"],[1928,"impl-Debug-for-AddUtxoError"],[1929,"impl-Display-for-AddUtxoError"],[1930,"impl-Debug-for-AddForeignUtxoError"],[1931,"impl-Display-for-AddForeignUtxoError"]],"c":"OjAAAAEAAAAAAAUAEAAAALkCAwMPAz8FvgUmBg==","e":"OzAAAAEAACgEfgAZAAAAQQAAAE0AAQBRACQAewAAAIMAEACeAAYArQAZAMoAAADMABYA7AADAPIAAAD3AAEA+wAAAAQBAQAgAQAAOwEAAEYBAABSAQAAWQEFAGQBAABsAQ8AgwEjAK4BEQDFAREA9AEXAA0CAwASAgYAGwIHADYCIQBiAgAAcAIAAIQCAQCHAgAAiQIHAJQCAACWAgEAmQIAAJwCAQCfAgEAowIBAKYCAQCpAgEArAILAL0CAwDCAgsA0wIBANYCCQDhAgMA6gIAAPcCAwACAwAACAMBAAwDAQATAwEAKQMDAC4DAQA8AwEAPwMBAEMDBQBOAwcAVwMDAFwDAwBwAwYAeAMEAH4DBACmAxkAwgMaAN8DAADiAwAA5wMBAPYDAAD5AwQA/wMiAEgEFwBhBC8AqQRIAA8FDQAeBQQAKAUPAEIFAQBGBQAASAUBAEsFAABPBQUAgwUXAKUFFQC8BQEAvwUAAMEFJQDoBQAA7QUBAPIFAAD5BQEABgYDABYGAAAZBgQAHwYBAC8GAQA0BgAAPgYAAEMGAwBMBgAAUAYIAFoGAwBhBi8AwAYPANEGFADoBg4A+AYKAAsHAAANBwIAGwcBAB8HAgAjBwAAJwcHADEHHwBqBwkAdQcEAHwHAQCBBwIAiAcGAJQHAACgBwAApwcSALwHBAA="}],\ ["example_bitcoind_rpc_polling",{"t":"PSSSSGPSPFGSPPNNNNHNNNNNNNNNNONNNNNNNNNNNNNNNHNOOOHNNNNNNNNNNNNNNNONNNOO","n":["Block","CHANNEL_BOUND","DB_COMMIT_DELAY","DB_MAGIC","DB_PATH","Emission","Live","MEMPOOL_EMIT_DELAY","Mempool","RpcArgs","RpcCommands","STDOUT_PRINT_DELAY","Sync","Tip","augment_args","augment_args_for_update","augment_subcommands","augment_subcommands_for_update","await_flag","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","fallback_height","fmt","fmt","fmt","from","from","from","from_arg_matches","from_arg_matches","from_arg_matches_mut","from_arg_matches_mut","group_id","has_subcommand","into","into","into","main","new_client","rpc_cookie","rpc_password","rpc_user","start_ctrlc_handler","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches_mut","update_from_arg_matches_mut","url","vzip","vzip","vzip","rpc_args","rpc_args"],"q":[[0,"example_bitcoind_rpc_polling"],[70,"example_bitcoind_rpc_polling::RpcCommands"],[72,"clap_builder::builder::command"],[73,"core::sync::atomic"],[74,"core::time"],[75,"core::fmt"],[76,"clap_builder::parser::matches::arg_matches"],[77,"clap_builder"],[78,"core::result"],[79,"clap_builder::util::id"],[80,"core::option"],[81,"anyhow"],[82,"bitcoincore_rpc::client"],[83,"alloc::sync"],[84,"core::any"]],"i":[10,0,0,0,0,0,8,0,10,0,0,0,8,10,7,7,8,8,0,10,7,8,10,7,8,7,8,7,8,7,10,7,8,10,7,8,7,8,7,8,7,8,10,7,8,0,7,7,7,7,0,7,8,10,7,8,10,7,8,10,7,8,7,8,7,8,7,10,7,8,23,24],"f":"``````````````{bb}000{{{f{d}}h}j}{{{f{c}}}{{f{e}}}{}{}}00{{{f{lc}}}{{f{le}}}{}{}}00{{{f{n}}}n}{{{f{A`}}}A`}{{{f{c}}{f{le}}}Ab{}{}}0`{{{f{Ad}}{f{lAf}}}Ah}{{{f{n}}{f{lAf}}}Ah}{{{f{A`}}{f{lAf}}}Ah}{cc{}}00{{{f{Aj}}}{{An{nAl}}}}{{{f{Aj}}}{{An{A`Al}}}}{{{f{lAj}}}{{An{nAl}}}}{{{f{lAj}}}{{An{A`Al}}}}{{}{{Bb{B`}}}}{{{f{Bd}}}j}{ce{}{}}00{{}{{Bf{Ab}}}}{{{f{n}}}{{Bf{Bh}}}}```{{}{{Bj{d}}}}{{{f{c}}}e{}{}}0{c{{An{e}}}{}{}}00000{{{f{c}}}Bl{}}00{{{f{ln}}{f{Aj}}}{{An{AbAl}}}}{{{f{lA`}}{f{Aj}}}{{An{AbAl}}}}{{{f{ln}}{f{lAj}}}{{An{AbAl}}}}{{{f{lA`}}{f{lAj}}}{{An{AbAl}}}}`:::``","D":"Bb","p":[[5,"Command",72],[5,"AtomicBool",73],[1,"reference"],[5,"Duration",74],[1,"bool"],[0,"mut"],[5,"RpcArgs",0],[6,"RpcCommands",0],[1,"unit"],[6,"Emission",0],[5,"Formatter",75],[8,"Result",75],[5,"ArgMatches",76],[8,"Error",77],[6,"Result",78],[5,"Id",79],[6,"Option",80],[1,"str"],[8,"Result",81],[5,"Client",82],[5,"Arc",83],[5,"TypeId",84],[15,"Sync",70],[15,"Live",70]],"r":[],"b":[],"c":"OjAAAAAAAAA=","e":"OzAAAAEAADcACQAAAAEABAACAAkAAgAOAA8AHwACACUABQAuAAEAMwAPAEQABAA="}],\ ["example_cli",{"t":"PGFPPPFFGGPPPPFPPGIPPPPPPPPIPGPPPGEONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOENNNNNNNNNNNNNNNNONHONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONHNNNNOOOOHNNNNNNNNNNNONOONHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOO","n":["Address","AddressCmd","Args","Balance","BranchAndBound","ChainSpecific","ChangeInfo","ChangeSet","CoinSelectionAlgo","Commands","External","Extract","Generate","Index","Init","Init","Internal","Keychain","KeychainTxGraph","LargestFirst","List","List","New","New","NewestFirst","Next","OldestFirst","PlanUtxo","Psbt","PsbtCmd","Sign","SmallestFirst","TxOut","TxOutCmd","anyhow","args","augment_args","augment_args_for_update","augment_subcommands","augment_subcommands","augment_subcommands","augment_subcommands","augment_subcommands_for_update","augment_subcommands_for_update","augment_subcommands_for_update","augment_subcommands_for_update","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","chain","change_descriptor","change_keychain","clap","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","command","command","command_for_update","create_tx","db","default","default","descriptor","deserialize","deserialize","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_arg_matches","from_arg_matches","from_arg_matches","from_arg_matches","from_arg_matches","from_arg_matches_mut","from_arg_matches_mut","from_arg_matches_mut","from_arg_matches_mut","from_arg_matches_mut","from_str","graph","group_id","handle_commands","has_subcommand","has_subcommand","has_subcommand","has_subcommand","index","index","indexer","indexer","init_or_load","into","into","into","into","into","into","into","into","into","into","is_empty","local_chain","merge","network","network","partial_cmp","planned_utxos","serialize","serialize","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","tx_graph","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches_mut","update_from_arg_matches_mut","update_from_arg_matches_mut","update_from_arg_matches_mut","update_from_arg_matches_mut","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","change","addr_cmd","change_descriptor","descriptor","network","network","psbt_cmd","txout_cmd","address","after","chain_specific","coin_select","debug","descriptor","older","psbt","psbt","try_broadcast","value","confirmed","spent","unconfirmed","unspent"],"q":[[0,"example_cli"],[221,"example_cli::AddressCmd"],[222,"example_cli::Commands"],[229,"example_cli::PsbtCmd"],[240,"example_cli::TxOutCmd"],[244,"clap_builder::builder::command"],[245,"core::clone"],[246,"clap_builder::derive"],[247,"core::cmp"],[248,"miniscript::plan"],[249,"bitcoin::address"],[250,"bitcoin::psbt"],[251,"core::option"],[252,"anyhow"],[253,"bdk_chain::chain_oracle"],[254,"core::result"],[255,"serde::de"],[256,"core::fmt"],[257,"clap_builder::parser::matches::arg_matches"],[258,"clap_builder"],[259,"clap_builder::util::id"],[260,"std::sync::mutex"],[261,"bdk_chain::local_chain"],[262,"bdk_file_store::store"],[263,"bitcoin::network"],[264,"bitcoin::blockdata::transaction"],[265,"core::ops::function"],[266,"alloc::vec"],[267,"serde::ser"],[268,"alloc::string"],[269,"core::any"]],"i":[5,0,0,5,13,5,0,0,0,0,12,11,5,9,0,5,12,0,0,13,9,10,9,11,13,9,13,0,5,0,11,13,5,0,0,46,33,33,5,9,10,11,5,9,10,11,46,4,33,5,9,10,11,12,13,21,46,4,33,5,9,10,11,12,13,21,46,4,21,0,4,5,9,10,11,12,13,4,5,9,10,11,12,13,12,33,33,33,0,46,4,13,4,4,12,4,12,12,12,4,5,9,10,11,12,12,13,13,21,46,4,33,5,9,10,11,12,13,21,33,5,9,10,11,33,5,9,10,11,13,46,33,0,5,9,10,11,16,21,4,21,0,46,4,33,5,9,10,11,12,13,21,4,4,4,46,4,12,0,4,12,4,5,9,10,11,12,13,12,13,46,4,33,5,9,10,11,12,13,21,46,4,33,5,9,10,11,12,13,21,4,46,4,33,5,9,10,11,12,13,21,33,5,9,10,11,33,5,9,10,11,46,4,33,5,9,10,11,12,13,21,52,53,54,54,54,55,56,57,58,58,59,58,58,60,58,60,59,59,58,61,61,61,61],"f":"````````````````````````````````````{bb}000000000{{{d{c}}}{{d{e}}}{}{}}000000000{{{d{fc}}}{{d{fe}}}{}{}}000000000````{{{d{h}}}h}{{{d{{j{ce}}}}}{{j{ce}}}{ln}{lA`}}{{{d{Ab}}}Ab}{{{d{Ad}}}Ad}{{{d{{Af{c}}}}}{{Af{c}}}{lA`}}{{{d{Ah}}}Ah}{{{d{Aj}}}Aj}{{{d{c}}{d{fe}}}Al{}{}}000000{{{d{Ah}}{d{Ah}}}An}{{}b}`0{{{d{fB`}}{d{c}}{d{Bb}}AjBdBf}{{C`{{Bn{Bh{Bl{Bj}}}}}}}Cb}`{{}h}{{}Aj}`{c{{Cd{h}}}Cf}{c{{Cd{Ah}}}Cf}{{{d{h}}{d{h}}}Ch}{{{d{Ah}}{d{Ah}}}Ch}{{{d{c}}{d{e}}}Ch{}{}}0{{{d{h}}{d{fCj}}}Cl}{{{d{{j{ce}}}}{d{fCj}}}Cl{Cnn}{CnA`}}{{{d{Ab}}{d{fCj}}}Cl}{{{d{Ad}}{d{fCj}}}Cl}{{{d{{Af{c}}}}{d{fCj}}}Cl{CnA`}}{{{d{Ah}}{d{fCj}}}Cl}0{{{d{Aj}}{d{fCj}}}Cl}0{{{d{Bj}}{d{fCj}}}Cl}{cc{}}000000000{{{d{D`}}}{{Cd{{Db{ce}}Dd}}}nA`}{{{d{D`}}}{{Cd{{j{ce}}Dd}}}nA`}{{{d{D`}}}{{Cd{AbDd}}}}{{{d{D`}}}{{Cd{AdDd}}}}{{{d{D`}}}{{Cd{{Af{c}}Dd}}}A`}{{{d{fD`}}}{{Cd{{Db{ce}}Dd}}}nA`}{{{d{fD`}}}{{Cd{{j{ce}}Dd}}}nA`}{{{d{fD`}}}{{Cd{AbDd}}}}{{{d{fD`}}}{{Cd{AdDd}}}}{{{d{fD`}}}{{Cd{{Af{c}}Dd}}}A`}{{{d{Df}}}{{Cd{Ajc}}}{}}`{{}{{Bl{Dh}}}}{{{d{{Dj{B`}}}}{d{{Dj{Dl}}}}{d{{Dj{{Dn{h}}}}}}E`e{j{gc}}}{{C`{Al}}}A`{{Ef{c{d{Eb}}}{{Ed{{C`{Al}}}}}}}n}{{{d{Df}}}Ch}000````{{{d{{Ej{Eh}}}}{d{Df}}}{{C`{{Bl{{El{ce}}}}}}}nA`}{ce{}{}}000000000{{{d{h}}}Ch}`{{{d{fh}}h}Al}``{{{d{Ah}}{d{Ah}}}{{Bl{An}}}}{{{d{B`}}{d{c}}{d{Bb}}}{{Cd{{F`{En}}}}}Cb}{{{d{h}}c}CdFb}{{{d{Ah}}c}CdFb}{{{d{c}}}e{}{}}000000{{{d{c}}}Fd{}}0{c{{Cd{e}}}{}{}}0000000000000000000`{{{d{c}}}Ff{}}000000000{{{d{f{Db{ce}}}}{d{D`}}}{{Cd{AlDd}}}nA`}{{{d{f{j{ce}}}}{d{D`}}}{{Cd{AlDd}}}nA`}{{{d{fAb}}{d{D`}}}{{Cd{AlDd}}}}{{{d{fAd}}{d{D`}}}{{Cd{AlDd}}}}{{{d{f{Af{c}}}}{d{D`}}}{{Cd{AlDd}}}A`}{{{d{f{Db{ce}}}}{d{fD`}}}{{Cd{AlDd}}}nA`}{{{d{f{j{ce}}}}{d{fD`}}}{{Cd{AlDd}}}nA`}{{{d{fAb}}{d{fD`}}}{{Cd{AlDd}}}}{{{d{fAd}}{d{fD`}}}{{Cd{AlDd}}}}{{{d{f{Af{c}}}}{d{fD`}}}{{Cd{AlDd}}}A`}{ce{}{}}000000000```````````````````````","D":"Hj","p":[[5,"Command",244],[1,"reference"],[0,"mut"],[5,"ChangeSet",0],[6,"Commands",0],[10,"Clone",245],[10,"Subcommand",246],[10,"Args",246],[6,"AddressCmd",0],[6,"TxOutCmd",0],[6,"PsbtCmd",0],[6,"Keychain",0],[6,"CoinSelectionAlgo",0],[1,"unit"],[6,"Ordering",247],[8,"KeychainTxGraph",0],[5,"Assets",248],[5,"Address",249],[1,"u64"],[5,"Psbt",250],[5,"ChangeInfo",0],[6,"Option",251],[1,"tuple"],[8,"Result",252],[10,"ChainOracle",253],[6,"Result",254],[10,"Deserializer",255],[1,"bool"],[5,"Formatter",256],[8,"Result",256],[10,"Debug",256],[5,"ArgMatches",257],[5,"Args",0],[8,"Error",258],[1,"str"],[5,"Id",259],[5,"Mutex",260],[5,"LocalChain",261],[5,"Store",262],[6,"Network",263],[5,"Transaction",264],[17,"Output"],[10,"FnOnce",265],[1,"u8"],[1,"slice"],[5,"Init",0],[8,"PlanUtxo",0],[5,"Vec",266],[10,"Serializer",267],[5,"String",268],[5,"TypeId",269],[15,"List",221],[15,"Address",222],[15,"Init",222],[15,"Generate",222],[15,"Psbt",222],[15,"TxOut",222],[15,"New",229],[15,"Extract",229],[15,"Sign",229],[15,"List",240]],"r":[],"b":[[104,"impl-Debug-for-Keychain"],[105,"impl-Display-for-Keychain"],[106,"impl-Debug-for-CoinSelectionAlgo"],[107,"impl-Display-for-CoinSelectionAlgo"]],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAK8AGgAAAAAAAgABAAUAAgAJAAIAEQABABQAAAAZAAAAGwABAB4AAAAgAAAAIgABACUAHQBFABQAWwABAF4ADwB4AAoAhAAFAIsAAACNAAAAmQAAAJsAAACeACAAwAAdAN8AAADkAAEA6AAAAA=="}],\ ["example_electrum",{"t":"SSFGPFPNNNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNOOOOOOOOO","n":["DB_MAGIC","DB_PATH","ElectrumArgs","ElectrumCommands","Scan","ScanOptions","Sync","augment_args","augment_args","augment_args_for_update","augment_args_for_update","augment_subcommands","augment_subcommands_for_update","batch_size","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","client","clone","clone","clone","clone_into","clone_into","clone_into","command","command_for_update","electrum_args","electrum_url","eq","fmt","fmt","fmt","from","from","from","from_arg_matches","from_arg_matches","from_arg_matches","from_arg_matches_mut","from_arg_matches_mut","from_arg_matches_mut","group_id","group_id","has_subcommand","into","into","into","main","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches","update_from_arg_matches_mut","update_from_arg_matches_mut","update_from_arg_matches_mut","vzip","vzip","vzip","all_spks","electrum_args","electrum_args","scan_options","scan_options","stop_gap","unconfirmed","unused_spks","utxos"],"q":[[0,"example_electrum"],[72,"example_electrum::ElectrumCommands"],[81,"clap_builder::builder::command"],[82,"bitcoin::network"],[83,"electrum_client::client"],[84,"anyhow"],[85,"core::fmt"],[86,"clap_builder::parser::matches::arg_matches"],[87,"clap_builder"],[88,"core::result"],[89,"clap_builder::util::id"],[90,"core::option"],[91,"core::any"]],"i":[0,0,0,0,8,0,8,4,9,4,9,8,8,9,8,4,9,8,4,9,4,8,4,9,8,4,9,9,9,8,4,9,8,4,9,8,4,9,8,4,9,8,4,9,4,9,8,8,4,9,0,8,4,9,8,4,9,8,4,9,8,4,9,8,4,9,8,4,9,8,4,9,21,22,21,22,21,22,21,21,21],"f":"```````{bb}00000`{{{d{c}}}{{d{e}}}{}{}}00{{{d{fc}}}{{d{fe}}}{}{}}00{{{d{h}}j}{{n{l}}}}{{{d{A`}}}A`}{{{d{h}}}h}{{{d{Ab}}}Ab}{{{d{c}}{d{fe}}}Ad{}{}}00{{}b}0{{{d{A`}}}h}`{{{d{Ab}}{d{Ab}}}Af}{{{d{A`}}{d{fAh}}}Aj}{{{d{h}}{d{fAh}}}Aj}{{{d{Ab}}{d{fAh}}}Aj}{cc{}}00{{{d{Al}}}{{B`{A`An}}}}{{{d{Al}}}{{B`{hAn}}}}{{{d{Al}}}{{B`{AbAn}}}}{{{d{fAl}}}{{B`{A`An}}}}{{{d{fAl}}}{{B`{hAn}}}}{{{d{fAl}}}{{B`{AbAn}}}}{{}{{Bd{Bb}}}}0{{{d{Bf}}}Af}{ce{}{}}00{{}{{n{Ad}}}}{{{d{c}}}e{}{}}00{c{{B`{e}}}{}{}}00000{{{d{c}}}Bh{}}00{{{d{fA`}}{d{Al}}}{{B`{AdAn}}}}{{{d{fh}}{d{Al}}}{{B`{AdAn}}}}{{{d{fAb}}{d{Al}}}{{B`{AdAn}}}}{{{d{fA`}}{d{fAl}}}{{B`{AdAn}}}}{{{d{fh}}{d{fAl}}}{{B`{AdAn}}}}{{{d{fAb}}{d{fAl}}}{{B`{AdAn}}}}:::`````````","D":"An","p":[[5,"Command",81],[1,"reference"],[0,"mut"],[5,"ElectrumArgs",0],[6,"Network",82],[5,"Client",83],[8,"Result",84],[6,"ElectrumCommands",0],[5,"ScanOptions",0],[1,"unit"],[1,"bool"],[5,"Formatter",85],[8,"Result",85],[5,"ArgMatches",86],[8,"Error",87],[6,"Result",88],[5,"Id",89],[6,"Option",90],[1,"str"],[5,"TypeId",91],[15,"Sync",72],[15,"Scan",72]],"r":[],"b":[],"c":"OjAAAAAAAAA=","e":"OzAAAAEAAEIACAAAAAQABgAAAAgABQAPAA8AIAADACcACAAzABUASgADAA=="}],\ diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-0-.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-0-.js index bce1087262..660988875f 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-0-.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-0-.js @@ -1 +1 @@ -searchState.loadedDescShard("bdk_chain", 0, "This crate is a collection of core structures for Bitcoin …\nTrait that “anchors” blockchain data to a specific …\nA wrapper that we use to impl remote traits for types in …\nMaximum BIP32 derivation index.\nBalance, differentiated into various categories.\nA reference to a block in the canonical chain.\nRepresents a service that tracks the blockchain.\nRepresents the observed position of some chain data.\nA checkpoint is a node of a reference-counted linked list …\nIterates over checkpoints backwards.\nRepresents the confirmation block and time of a …\nThe chain data is confirmed as it is anchored in the best …\nA trait to extend the functionality of a miniscript …\nRepresents the unique ID of a descriptor.\nError type.\nA TxOut with as much data as we can retrieve about it\nA wrapper that we use to impl remote traits for types in …\nA tuple of keychain index and T representing the indexed …\nA tuple of keychain K, derivation index (u32) and a T …\nTrait that makes an object mergeable.\nAn iterator for derived script pubkeys.\nSet of parameters sufficient to construct an Anchor.\nData object used to communicate updates about relevant …\nThe chain data is not confirmed.\nReturns the BlockId that the associated blockchain data is …\nTransaction anchors. Anchors tells us a position in the …\nReturns a reference to the inner hash (sha256, sh256d …\nBlock in which the transaction appeared.\nGet the BlockId of the checkpoint.\nThe anchor block.\nBlock’s BlockId.\nThe position of the transaction in outpoint in the overall …\nMaps a ChainPosition<&A> into a ChainPosition<A> by …\nGet the upper bound of the chain data’s confirmation …\nGet the upper bound of the chain data’s confirmation …\nDetermines the upper bound of the confirmation height.\nThe confirmation time of the transaction being anchored.\nConfirmed and immediately spendable balance\nGet a reference to the internal descriptor.\nReturns the descriptor ID, calculated as the sha256 hash …\nReturns the minimum value (in satoshis) at which an output …\nThis method tests for self and other to have equal …\nExtends the checkpoint linked list by a iterator of block …\nExtend this update with other.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a checkpoint from a list of BlockIds in …\nConstruct a checkpoint from the given header and block …\nCreates this wrapper type from the inner hash type.\nGet checkpoint at height.\nGet the best chain’s chain tip.\nGet the block hash of the checkpoint.\nThe hash of the block.\nGet the height of the checkpoint.\nThe height of the block.\nAll coinbase outputs not yet matured\nContains the IndexedTxGraph and associated types. Refer to …\nIndexer provides utilities for indexing transaction data.\nInserts block_id at its height within the chain.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nReturns the inner T.\nReturns the inner T.\nDetermines whether block of BlockId exists as an ancestor …\nReturns whether ChainPosition is confirmed or not.\nWhether the utxo is/was/will be spendable with chain tip.\nReturns whether the structure is considered empty.\nWhether the txout is considered mature.\nWhether this output is on a coinbase transaction.\nIterate from this checkpoint in descending height.\nThe LocalChain is a local implementation of ChainOracle.\nTransforms the TxUpdate to have anchors (A) of another …\nMerge another object of the same type onto self.\nConstruct a new base block at the front of a linked list.\nCreate a new script pubkey iterator from descriptor.\nCreate a new script pubkey iterator from descriptor and a …\nThe location of the TxOut.\nGet the previous checkpoint in the chain\nPuts another checkpoint onto the linked list representing …\nIterate checkpoints over a height range.\nSupport for persisting bdk_chain structures to SQLite …\nSeen at times for transactions. This records when a …\nThe txid and chain position of the transaction (if any) …\nHelper types for spk-based blockchain clients.\nTake the value, replacing it with the default value.\nReturns the inner hash (sha256, sh256d etc.).\nGet the whole balance visible to the wallet.\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nUnconfirmed UTXOs generated by a wallet tx\nGet sum of trusted_pending and confirmed coins.\nModule for structures that store and traverse transactions.\nPosition in the block on which the transaction appeared.\nThe TxOut.\nFloating txouts. These are TxOuts that exist but the whole …\nFull transactions. These are transactions that were …\nUnconfirmed UTXOs received from an external wallet\nThe Anchor.\nWhen the chain data is last seen in the mempool.\nWhether the chain data is anchored transitively by a child …\nA Bitcoin address.\nThe different types of addresses.\n0x1: Sign all outputs.\n0x1: Sign all outputs.\n0x81: Sign all outputs but only this input.\n0x81: Sign all outputs but only this input.\nAmount\nMinimum fee rate required to broadcast a transaction.\nConvenience alias for Denomination::Bitcoin.\nbits\nBTC\nMainnet Bitcoin.\nBitcoin block.\nA bitcoin block hash.\ncBTC\nEncoding of 256-bit target as 32-bit float.\nAn always-compressed Bitcoin ECDSA public key\nThe default max_fee_rate value used for extracting …\nFee rate used to compute dust amount.\n0x0: Used when not explicitly specified, defaults to …\nA set of denominations in which amounts can be expressed.\nThe sequence number that enables absolute lock time but …\nThe sequence number that enables replace-by-fee and …\nHashtype of an input’s signature, encoded in the last …\nRepresents fee rate.\nFilter hash, as defined in BIP-157\nFilter header, as defined in BIP-157\nKnown bech32 human-readable parts.\nHash of a transaction according to the legacy signature …\nThe maximum value of an amount.\nThe maximum value of an amount.\nMaximum possible value.\nMaximum possible value.\nThe maximum allowable sequence number.\nThe maximum possible target.\nThe maximum attainable target value on mainnet.\nThe proof of work limit on regtest.\nThe proof of work limit on signet.\nThe proof of work limit on testnet.\nThe maximum allowed weight for a block, see BIP 141 …\nThe maximum value allowed as an amount. Useful for sanity …\nThe maximum value allowed as an amount. Useful for sanity …\nMaximum transaction weight for Bitcoin Core 25.0.\nThe minimum value of an amount.\nThe minimum value of an amount.\nMinimum possible value (0 sat/kwu).\nMinimum possible value (0 wu).\nThe minimum transaction weight for a valid serialized …\nThe Bitcoin mainnet network.\nThe main Bitcoin network.\nData structure that represents a block header paired to a …\nuBTC\nmBTC\nmsat\nThis is used as a “null txout” in consensus signing …\nnBTC\nThe cryptocurrency network to act on.\nWhat kind of network we are on.\n0x2: Sign no outputs — anyone can choose the destination.\n0x2: Sign no outputs — anyone can choose the destination.\n0x82: Sign no outputs and only this input.\n0x82: Sign no outputs and only this input.\nExactly one bitcoin.\nExactly one bitcoin.\nExactly one satoshi.\nExactly one satoshi.\nA script Opcode.\nA reference to a transaction output.\nPay to pubkey hash.\nPay to script hash.\nPay to taproot.\nPay to witness pubkey hash.\nPay to witness script hash.\npBTC\nA Bitcoin ECDSA private key\nA Partially Signed Transaction.\nA hash of a public key.\nA Bitcoin ECDSA public key\nThe regtest network.\nBitcoin’s regtest network.\nConvenience alias for Denomination::Satoshi.\nThe number of bytes that an amount contributes to the size …\nsatoshi\nBitcoin script slice.\nAn owned, growable script.\nA hash of Bitcoin Script bytecode.\nHash of a transaction according to the segwit version 0 …\nBitcoin transaction input sequence number.\nSignedAmount\nBitcoin’s signet network.\n0x3: Sign the output whose index matches this input’s …\n0x3: Sign the output whose index matches this input’s …\n0x83: Sign one output and only this input (see Single for …\n0x83: Sign one output and only this input (see Single for …\nThe tag used for TapNodeHash\nTaproot-tagged hash with tag "TapLeaf".\nThe tag used for TapLeafHash\nTagged hash used in taproot trees.\nTaproot-tagged hash with tag "TapSighash".\nThe tag used for TapSighash\nHashtype of an input’s signature, encoded in the last …\nTaproot-tagged hash with tag "TapTweak".\nThe tag used for TapTweakHash\nA 256 bit integer representing target.\nSome kind of testnet network.\nBitcoin’s testnet network. (In future versions this will …\nBitcoin’s testnet4 network. (In future versions this …\nThe test networks, testnet (testnet3), testnet4, and …\nBitcoin transaction.\nBitcoin transaction input.\nA hash of the Merkle tree branch or root for transactions.\nBitcoin transaction output.\nA bitcoin transaction hash/transaction ID.\nInitial version of witness program. Used for P2WPKH and …\nVersion of witness program used for Taproot P2TR outputs.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nA variable-length unsigned integer.\nThe factor that non-witness serialization data is …\nSegWit version of a public key hash.\nSegWit version of a Bitcoin Script bytecode hash.\nRepresents block weight - the weight of a transaction or …\nThe Witness is the data used to unlock bitcoin since the …\nA hash corresponding to the witness structure commitment …\nA hash corresponding to the Merkle tree root for witness …\nThe segregated witness program.\nVersion of the segregated witness program.\nA 256 bit integer representing work.\nA bitcoin witness transaction ID.\nExtended key identifier as defined in BIP-32.\nAn x-only public key, used for verification of Taproot …\nThe zero amount.\nThe zero amount.\n0 sat/kwu.\n0 wu.\nZero value sequence.\nWhen parsing nBits, Bitcoin Core converts a negative …\nGet the absolute value of this SignedAmount.\nTweaks an XOnlyPublicKey by adding the generator …\nBitcoin addresses.\nGets the address type of the address.\nBitcoin amounts.\nReturns the script data as a byte slice.\nReturns the script data as a mutable byte slice.\nObtains a raw mutable pointer suitable for use with FFI …\nReturns a mutable reference to unsized script.\nObtains a raw const pointer suitable for use with FFI …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to unsized script.\nReturns a reference to the address as if it was unchecked.\nMarks, without any additional checks, network of this …\nReturns a reference to the checked address.\nAssumes the given 32 byte array as hidden TapNodeHash.\nReturns the base size of this input.\nReturns the base transaction size.\nBIP152 Compact Blocks\nBIP 158 Compact Block Filters for Light Clients.\nBIP32 implementation.\nReturns the block height, as encoded in the coinbase …\nReturns the block hash.\nBitcoin block data.\nCreates a new script builder\nCreates a new script builder\nReturns an iterator over script bytes.\nReturn the network’s chain hash (genesis block hash).\nChecks if merkle root of header matches merkle root of the …\nChecks if witness commitment in coinbase matches the …\nGet the absolute value of this SignedAmount. Returns None …\nChecked addition.\nChecked addition. Returns None if overflow occurred.\nChecked addition.\nChecked integer division.\nChecked integer division. Be aware that integer division …\nChecked division.\nChecked division.\nChecked multiplication.\nChecked multiplication. Returns None if overflow occurred.\nChecked multiplication.\nChecked multiplication.\nChecked weight multiplication.\nChecked remainder.\nChecked remainder. Returns None if overflow occurred.\nChecked subtraction.\nChecked subtraction. Returns None if overflow occurred.\nChecked subtraction.\nClassifies an Opcode into a broad class.\nClear the witness.\nLike cmp::Cmp but faster and with no guarantees across …\nReturns the coinbase transaction, if one is present.\nCombines this Psbt with other PSBT as described by BIP 174.\nWhether this public key should be serialized as compressed\nWhether this private key should be serialized as compressed\nComputes the transaction merkle root.\nComputes a “normalized TXID” which does not include …\nComputes the Txid.\nComputes the witness commitment for the block’s …\nComputes the segwit version of the transaction id.\nBitcoin consensus.\nCounts the sigops for this Script using accurate counting.\nCounts the sigops for this Script using legacy counting.\nThe default value of sequence is 0xffffffff.\nDeserialize a value from raw binary data.\nDeserialize a value from raw binary data read from a …\nComputes the popular “difficulty” measure for mining.\nComputes the popular “difficulty” measure for mining …\nCreate an object that implements fmt::Display dynamically …\nCreate an object that implements fmt::Display dynamically …\nCreate an object that implements fmt::Display using …\nCreate an object that implements fmt::Display using …\nReturns the minimum value an output with this script …\nECDSA Bitcoin signatures.\nReturns true if the sequence number enables absolute …\nReturns true if this input enables the absolute::LockTime …\nLike cmp::Eq but faster and with no guarantees across …\nContains error types and other error handling tools.\nExtract the matching txid’s represented by this partial …\nAn alias for extract_tx_fee_rate_limit.\nExtracts the Transaction from a Psbt by filling in the …\nPerform extract_tx_fee_rate_limit without the fee rate …\nExtracts the Transaction from a Psbt by filling in the …\nCalculates transaction fee.\nCalculates fee by multiplying this fee rate by weight, in …\nCalculates fee by multiplying this fee rate by weight, in …\nComputes the filter header from a filter hash and previous …\nReturns the first opcode of the script (if there is any).\nWrites the human-readable assembly representation of the …\nFormat the value of this Amount in the given denomination.\nFormat the value of this SignedAmount in the given …\nFormat the private key to WIF format.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 relative lock-time using time intervals where …\nCreates Work from a big-endian byte array.\nCreates Target from a big-endian byte array.\nCreate a MerkleBlock from a block, that contains proofs …\nConvert from a value expressing bitcoins to an Amount.\nConvert from a value expressing bitcoins to an SignedAmount…\nTreat byte slice as Script\nConverts byte vector into script.\nTreat mutable byte slice as Script\nCreates a Network from the chain hash (genesis block hash).\nComputes the Target value from a compact representation.\nCreates a sequence from a u32 value.\nCreates a EcdsaSighashType from a raw u32.\nCreates a CompactTarget from a consensus encoded u32.\nConstructs a TapSighashType from a raw u8.\nConverts a bitcoind -chain argument name to its equivalent …\nConvert this Amount in floating-point notation with a given\nConvert this SignedAmount in floating-point notation with …\nComputes the CompactTarget from a difficulty adjustment, …\nCreate a MerkleBlock from the block’s header and txids, …\nCreates a relative lock-time using block height.\nCreates a ScriptBuf from a hex string.\nCreates a Sequence from an prefixed hex string.\nCreates Work from a prefixed hex string.\nCreates Target from a prefixed hex string.\nCreates a CompactTarget from an prefixed hex string.\nConvert from a value expressing integer values of bitcoins …\nCreates a new BIP341 TapTweakHash from key and tweak. …\nReturns the XOnlyPublicKey (and it’s Parity) for keypair.\nConstructs Weight from kilo weight units returning None if …\nCreates Work from a little-endian byte array.\nCreates Target from a little-endian byte array.\nCreates a Network from the magic bytes.\nComputes the CompactTarget from a difficulty adjustment.\nComputes branch hash given two hashes of the nodes …\nConstructs Weight from non-witness size.\nComputes the public key as supposed to be used with this …\nComputes the public key as supposed to be used with this …\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreate an Amount with satoshi precision and the given …\nCreate an SignedAmount with satoshi precision and the …\nConstructs FeeRate from satoshis per 1000 weight units.\nConstructs FeeRate from satoshis per virtual bytes.\nConstructs FeeRate from satoshis per virtual bytes without …\nConstructs an Address from an output script (scriptPubkey).\nComputes the leaf hash from components.\nComputes the TapNodeHash from a script and a leaf version.\nCreates a relative lock-time from seconds, converting the …\nCreates a relative lock-time from seconds, converting the …\nCreates a schnorr public key directly from a slice.\nCreates a Witness object from a slice of bytes slices …\nDeserialize a public key from a slice\nDeserialize a public key from a slice\nDeserialize a private key from a slice\nCreates a EcdsaSighashType from a raw u32.\nConvert from a str to Denomination.\nParse a decimal string as a value in the given …\nParse a decimal string as a value in the given …\nParses amounts with denomination suffix like they are …\nParses amounts with denomination suffix like they are …\nCreates a Sequence from an unprefixed hex string.\nCreates Work from an unprefixed hex string.\nCreates Target from an unprefixed hex string.\nCreates a CompactTarget from an unprefixed hex string.\nCreates a PSBT from an unsigned transaction.\nConstructs Weight from virtual bytes, returning None on …\nConstructs Weight from virtual bytes without an overflow …\nConstructs Weight from virtual bytes panicking on overflow.\nParse WIF encoded private key.\nConstructs Weight from witness size.\nCreates an address from an arbitrary witness program.\nDirectly constructs Weight from weight units.\nDirectly constructs Weight from usize weight units.\nConstructs new compressed ECDSA private key using the …\nBitcoin hash types.\nThe block header\nThe block header\nThe actual ECDSA key\nThe actual ECDSA key\nList of transaction inputs.\nThe corresponding key-value map for each input in the …\nIterates over the script instructions and their indices.\nIterates over the script instructions and their indices …\nIterates over the script instructions.\nIterates over the script instructions while enforcing …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 ScriptBuf into a boxed Script.\nConverts the script into a byte vector.\nConverts a Box<Script> into a ScriptBuf without copying or …\nMarks the network of this address as unchecked.\nReturns true if this Transaction’s absolute timelock is …\nChecks if this is a coinbase transaction.\nReturns whether the script is the empty script.\nReturns true if the witness contains no element.\nReturns true if the transaction itself opted in to be …\nReturns true if the sequence number indicates that the …\nReturns true if the sequence number encodes a block based …\nReturns true if this transactions nLockTime is enabled (…\nReturns true if this is real mainnet bitcoin.\nReturns true if block hash is less than or equal to this …\nChecks whether a script pubkey is a bare multisig output.\nReturns true if this SignedAmount is negative and false if …\nChecks if an OutPoint is “null”.\nCheck if this is an OP_RETURN output.\nChecks whether a script pubkey is a P2PK output.\nChecks whether a script pubkey is a P2PKH output.\nChecks whether a script pubkey is a P2SH output.\nChecks whether a script pubkey is a P2TR output.\nReturns true if this witness program is for a P2TR output.\nChecks whether a script pubkey is a P2WPKH output.\nReturns true if this witness program is for a P2WPKH …\nChecks whether a script pubkey is a P2WSH output.\nReturns true if this witness program is for a P2WPSH …\nReturns true if this SignedAmount is positive and false if …\nChecks whether a script is trivially known to have no …\nChecks whether a script is push only.\nReturns true if the transaction opted-in to BIP125 …\nReturns true if the given pubkey is directly related to …\nReturns true if the supplied xonly public key can be used …\nReturns true if the sequence has a relative lock-time.\nChecks whether or not the address is following Bitcoin …\nReturns true if the sequence number encodes a time …\nReturns the compressed-ness of the underlying secp256k1 …\nParsed addresses do not always have one network. The …\nChecks whether a script pubkey is a Segregated Witness …\nReturns a struct implementing Iterator.\nReturns an iterator for the funding UTXOs of the psbt\nBitcoin keys.\nReturns the last element in the witness, if any.\nThe weight of the TxIn when it’s included in a legacy …\nReturns the length in bytes of the script.\nReturns the number of elements this witness holds.\nBlock height or timestamp. Transaction cannot be included …\nReturns log2 of this work.\nReturn the network magic bytes, which should be encoded …\nReturns true if the address creates a particular script …\nComputes the maximum valid Target threshold allowed for a …\nComputes the maximum valid Target threshold allowed for a …\nComputes the maximum valid Target threshold allowed for a …\nBitcoin merkle tree functions.\nComputes the minimum valid Target threshold allowed for a …\nComputes the minimum valid Target threshold allowed for a …\nReturns the minimum value an output with this script …\nCreates a TxOut with given script and the smallest …\nReturns the minimum value an output with this script …\nCreates a TxOut with given script and the smallest …\nBitcoin network.\nThe network kind on which this key should be used\nCreates a new empty script.\nCreates a new empty script.\nCreates a new witness program, copying the content from …\nCreates a new OutPoint.\nCreates a new empty Witness.\nConstructs compressed ECDSA public key from the provided …\nConstructs compressed ECDSA private key from the provided …\nGenerates OP_RETURN-type of scriptPubkey for the given …\nGenerates P2PK-type of scriptPubkey.\nGenerates P2PKH-type of scriptPubkey.\nGenerates P2SH-type of scriptPubkey with a given hash of …\nGenerates P2TR for script spending path using an internal …\nGenerates P2TR for key spending path for a known …\nGenerates P2WPKH-type of scriptPubkey.\nGenerates P2WSH-type of scriptPubkey with a given hash of …\nConstructs uncompressed (legacy) ECDSA public key from the …\nConstructs uncompressed (legacy) ECDSA private key from …\nGenerates P2WSH-type of scriptPubkey with a given …\nReturn the nth element in the witness, if any\nComputes a “normalized TXID” which does not include …\nCreates a “null” OutPoint.\nList of transaction outputs.\nThe corresponding key-value map for each output in the …\nBitcoin p2p network types.\nReturns the public key if this script is P2PK with a valid …\nCreates a pay to (compressed) public key hash address from …\nCreates a pay to script hash P2SH address from a script.\nCreates a pay to script hash P2SH address from a script …\nCreates a pay to script address that embeds a witness pay …\nCreates a pay to script address that embeds a witness pay …\nCreates a pay to taproot address from an untweaked key.\nCreates a pay to taproot address from an untweaked key.\nCreates a witness required to do a key path spend of a …\nCreates a pay to taproot address from a pre-tweaked output …\nCreates a pay to taproot address from a pre-tweaked output …\nCreates a witness pay to public key address from a public …\nCreates a WitnessProgram from pk for a P2WPKH output.\nCreates a witness required to spend a P2WPKH output.\nReturns the script code used for spending a P2WPKH output …\nCreates the script code used for spending a P2WPKH output.\nReturns the script code used to spend a P2WPKH input.\nReturns the script code used to spend a P2WPKH input.\nCreates a witness pay to script hash address.\nCreates a WitnessProgram from script for a P2WSH output.\nReturns the associated network parameters.\nUnit parsing utilities.\nBitcoin policy.\nSubtraction that doesn’t allow negative SignedAmounts. …\nProof-of-work related integer types.\nThe reference to the previous output that is being used as …\nReturns the witness program.\nGlobal proprietary key-value pairs.\nPartially Signed Bitcoin Transactions.\nGets the pubkey hash for this address if this is a P2PKH …\nReturns bitcoin 160-bit hash of the public key\nReturns bitcoin 160-bit hash of the public key\nReturns the PublicKey for this XOnlyPublicKey.\nCreates a public key from this private key\nPush a new element on the witness, requires an allocation.\nPushes, as a new element on the witness, an ECDSA …\nAdd a single instruction to the script.\nLike push_instruction, but avoids calling reserve to not …\nAdds a single opcode to the script.\nAdds instructions to push some arbitrary data onto the …\nRead the public key from a reader\nRead the public key from a reader\nGet redeemScript following BIP16 rules regarding P2SH …\nChecks whether network of this address is as required.\nPre-allocates at least additional_len bytes if needed.\nPre-allocates exactly additional_len bytes if needed.\nScale by witness factor.\nAdds an OP_VERIFY to the script or replaces the last …\nGets the script hash for this address if this is a P2SH …\nReturns 160-bit hash of the script.\nGenerates a script pubkey spending to this address.\nThe script which must be satisfied for the output to be …\nReturns an iterator over lengths of script_pubkeys in the …\nThe script which pushes values on the stack which will …\nReturns the second-to-last element in the witness, if any.\nThe weight of the TxIn when it’s included in a segwit …\nThe sequence number, which suggests to miners which of two …\nSerializes the key as a byte-encoded x coordinate value …\nUser-facing serialization for Script.\nUser-facing serialization for Script.\nSerialize as raw binary data\nSerialize a value as bytes in hex.\nSerialize the PSBT into a writer.\nSignature hash implementation (used in transaction …\nReturns the sighash message to sign an ECDSA input along …\nAttempts to create all the required signatures for this …\nSignature\nReturns a number representing sign of this SignedAmount.\nReturns the total number of bytes that this output …\nReturns the number of bytes this witness contributes to a …\nReturns the number of bytes this varint contributes to a …\nReturns the spending utxo for this PSBT’s input at …\nTweaks an untweaked public key with corresponding public …\nBitcoin Taproot.\nGet the taproot annex following BIP341 rules.\nGet the taproot control block following BIP341 rules.\nGet Tapscript following BIP341 rules regarding accounting …\nComputes leaf hash of tapscript.\nReturns the third-to-last element in the witness, if any.\nGets the address data from this address.\nReturns the human-readable assembly representation of the …\nConverts Work to a big-endian byte array.\nConverts Target to a big-endian byte array.\nExpress this Amount as a floating-point value in Bitcoin.\nExpress this SignedAmount as a floating-point value in …\nReturns a copy of the script data.\nSerialize the public key to bytes\nSerializes the public key.\nSerialize the private key to bytes\nComputes the compact value from a Target representation.\nReturns the consensus encoded u32 representation of this …\nReturns the inner 32bit integer value of Sequence.\nConverts a Network to its equivalent bitcoind -chain …\nConverts this witness version to a GF32 field element.\nExpress this Amount as a floating-point value in the given …\nExpress this SignedAmount as a floating-point value in the …\nFormats the script as lower-case hex.\nConverts to kilo weight units rounding down.\nConverts Work to a little-endian byte array.\nConverts Target to a little-endian byte array.\nReturns integer version number representation for a given …\nComputes the P2SH output corresponding to this redeem …\nComputes P2TR output with a given internal key and a …\nComputes the P2WSH output corresponding to this …\nCreates a URI string bitcoin:address optimized to be …\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nCreates a relative::LockTime from this Sequence number.\nGets the number of satoshis in this Amount.\nGets the number of satoshis in this SignedAmount.\nReturns raw fee rate.\nConverts to sat/vB rounding up.\nConverts to sat/vB rounding down.\nConverts a TapTweakHash into a Scalar ready for use with …\nConvert to a signed amount.\nSerialize the public key into a SortKey.\nGet a string number of this Amount in the given …\nGet a string number of this SignedAmount in the given …\nGet a formatted string of this Amount in the given …\nGet a formatted string of this SignedAmount in the given …\nConverts this Work to Target.\nConverts EcdsaSighashType to a u32 sighash flag.\nEncodes Opcode as a byte.\nConvert to an unsigned amount.\nConverts to vB rounding up.\nConverts to vB rounding down.\nConvenience method to create an array of byte-arrays from …\nGet WIF encoding of this private key.\nConverts this Target to Work.\nReturns raw weight units.\nCounts the total number of sigops.\nReturns the total block size.\nReturns the total number of bytes that this input …\nReturns the total transaction size.\nVerifies that a tweak produced by XOnlyPublicKey::add_tweak…\nReturns a reference to the input at input_index if it …\nReturns a reference to the output at output_index if it …\nList of transactions contained in the block\nComputes the Txid.\nThe referenced transaction’s txid.\nTransactions making up a partial merkle tree\nUnchecked addition.\nUnchecked addition.\nUnchecked subtraction.\nUnchecked subtraction.\nUnknown global key-value pairs.\nGet the absolute value of this SignedAmount returning …\nThe unsigned transaction, scriptSigs and witnesses for …\nThe value of the output, in satoshis.\nChecks that sig is a valid schnorr signature for msg using …\nChecks that sig is a valid ECDSA signature for msg using …\nChecks that sig is a valid ECDSA signature for msg using …\nReturns the witness program version.\nThe protocol version, is currently expected to be 1 or 2 …\nThe version number of this PSBT. If omitted, the version …\nThe index of the referenced output in its transaction’s …\nReturns the “virtual size” (vsize) of this transaction.\nReturns the weight of the block.\nThe weight of this output.\nReturns the weight of this transaction, as defined by …\nCreates a new empty script with pre-allocated capacity.\nWitness data: an array of byte-arrays. Note that this …\nGets the witness program for this address if this is a …\nComputes the merkle root of transactions hashed for …\nGet the p2wsh witness script following BIP141 rules.\nReturns witness version of the script, if any, assuming …\nReturns bitcoin 160-bit hash of the public key for witness …\nReturns bitcoin 160-bit hash of the public key for witness …\nWrite the public key into a writer\nWrite the public key into a writer\nReturns 256-bit hash of the script for P2WSH outputs.\nComputes the segwit version of the transaction id.\nA global map from extended public keys to the used key …\nA Bitcoin address.\nThe data encoded by an Address.\nThe different types of addresses.\nBase58 error.\nBech32 segwit decoding error.\nAddress size more than 520 bytes is not allowed.\nError while generating address from script.\nIndicates whether this NetworkValidation is NetworkChecked …\nInvalid base58 payload data length for legacy address.\nDecoded base58 data was an invalid length.\nInvalid legacy address prefix in base58 data payload.\nInvalid legacy address prefix in decoded base58 data.\nKnown bech32 human-readable parts.\nLegacy address is too long.\nLegacy base58 address was too long, max 50 characters.\nThe main Bitcoin network.\nMarker that address’s network has been successfully …\nMarker that address’s network has not yet been …\nMarker of status of address’s network validation. See …\nAddress’s network differs from required one.\nAddress’s network differs from required one.\nPay to pubkey hash.\nData encoded by a P2PKH address.\nPay to script hash.\nData encoded by a P2SH address.\nError while generating address from a p2sh script.\nPay to taproot.\nPay to witness pubkey hash.\nPay to witness script hash.\nAddress parsing error.\nThe regtest network.\nData encoded by a Segwit address.\nThe test networks, testnet (testnet3), testnet4, and …\nAddress type is either invalid or not supported in …\nTried to parse an unknown HRP.\nUnknown HRP error.\nScript is not a p2pkh, p2sh or witness program.\nA witness program error.\nA witness program error.\nA witness version construction error.\nA witness version conversion/parsing error.\nError code for the address module.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid payload length.\nReturns the invalid prefix.\nReturns the invalid legacy address length.\nThe pubkey hash used to encumber outputs to this address.\nThe script hash used to encumber outputs to this address.\nThe witness program used to encumber outputs to this …\nBase58 error.\nBech32 segwit decoding error.\nAddress size more than 520 bytes is not allowed.\nError while generating address from script.\nInvalid base58 payload data length for legacy address.\nDecoded base58 data was an invalid length.\nInvalid legacy address prefix in base58 data payload.\nInvalid legacy address prefix in decoded base58 data.\nLegacy address is too long.\nLegacy base58 address was too long, max 50 characters.\nAddress’s network differs from required one.\nAddress’s network differs from required one.\nError while generating address from a p2sh script.\nAddress parsing error.\nAddress type is either invalid or not supported in …\nTried to parse an unknown HRP.\nUnknown HRP error.\nScript is not a p2pkh, p2sh or witness program.\nA witness program error.\nA witness program error.\nA witness version construction error.\nA witness version conversion/parsing error.\nAmount\nbits\nBTC\ncBTC\nCalculate the sum over the iterator using checked …\nA set of denominations in which amounts can be expressed.\nA helper/builder that displays amount with specified …\nInput string was too large.\nInvalid character in input.\nuBTC\nmBTC\nmsat\nA digit was expected but not found.\nnBTC\nThe amount is too big or too small.\nAn error during amount parsing.\npBTC\nsatoshi\nSignedAmount\nAmount has higher precision than supported by the type.\nCalculate the sum over the iterator using checked …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThis module adds serde serialization and deserialization …\nMakes subsequent calls to Display::fmt display …\nThis trait is used only to avoid code duplication and …\nThis trait is only for internal Amount type …\nSerialize and deserialize Amount as JSON numbers …\nSerialize and deserialize Amount as real numbers …\nSerialize and deserialize Option<Amount> as JSON numbers …\nSerialize and deserialize Option<Amount> as real numbers …\nInvalid character while decoding.\nAn error occurred during base58 decoding (with checksum).\nChecksum was not correct.\nFound a invalid ASCII byte while decoding base58 string.\nA UTF-8–encoded, growable string.\nChecked data was too short.\nA contiguous growable array type, written as Vec<T>, short …\nReturns a reference to the underlying allocator.\nMoves all the elements of other into self, leaving other …\nReturns a byte slice of this String’s contents.\nReturns an unsafe mutable pointer to the vector’s …\nExtracts a mutable slice of the entire vector.\nConverts a String into a mutable string slice.\nReturns a mutable reference to the contents of this String.\nReturns a raw pointer to the vector’s buffer, or a …\nExtracts a slice containing the entire vector.\nExtracts a string slice containing the entire String.\nReturns the total number of elements the vector can hold …\nReturns this String’s capacity, in bytes.\nClears the vector, removing all values.\nTruncates this String, removing all contents.\nOverwrites the contents of self with a clone of the …\nClones the contents of source into self.\nDecodes a base58-encoded string into a byte vector.\nDecodes a base58check-encoded string into a byte vector …\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<T>.\nCreates an empty String.\nRemoves the specified range from the vector in bulk, …\nRemoves the specified range from the string in bulk, …\nEncodes data as a base58 string (see also …\nEncodes data as a base58 string including the checksum.\nEncodes a slice as base58, including the checksum, into a …\nError code for the base58 crate.\nClones and appends all elements in a slice to the Vec.\nCopies elements from src range to the end of the vector.\nCopies elements from src range to the end of the string.\nCreates an iterator which uses a closure to determine if …\nReturns the argument unchanged.\nReturns the argument unchanged.\nAllocate a Vec<T> and move s’s items into it.\nAllocate a Vec<T> and fill it by cloning s’s items.\nReturns the argument unchanged.\nAllocate a Vec<T> and fill it by cloning s’s items.\nConvert a clone-on-write slice into a vector.\nConverts a BinaryHeap<T> into a Vec<T>.\nConverts the given String to a vector Vec that holds …\nAllocate a Vec<T> and fill it by cloning s’s items.\nConvert a boxed slice into a vector by transferring …\nAllocate a Vec<u8> and fill it with a UTF-8 string.\nConverts a CString into a Vec<u8>.\nAllocate a Vec<T> and fill it by cloning s’s items.\nTurn a VecDeque<T> into a Vec<T>.\nConverts the given boxed str slice to a String. It is …\nConverts a &mut str into a String.\nConverts a clone-on-write string to an owned instance of …\nAllocates an owned String from a single character.\nConverts a &String into a String.\nConverts a &str into a String.\nReturns the argument unchanged.\nCreates a Vec<T> directly from a pointer, a length, and a …\nCreates a new String from a pointer, a length and a …\nCreates a Vec<T, A> directly from a pointer, a length, 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 an element at position index within the vector, …\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 the vector into Box<[T]>.\nConverts this String into a Box<str>.\nConverts a String into a byte vector.\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 String into its raw components: …\nDecomposes a Vec<T> into its raw components: …\nReturns the ASCII byte that is not a valid base58 …\nReturns true if the vector contains no elements.\nReturns true if this String has a length of zero, and false…\nConsumes and leaks the Vec, returning a mutable reference …\nConsumes and leaks the String, returning a mutable …\nReturns the number of elements in the vector, also …\nReturns the length of this String, in bytes, not chars or …\nConstructs a new, empty Vec<T>.\nCreates a new empty String.\nConstructs a new, empty Vec<T, A>.\nRemoves the last element from a vector and returns it, or …\nRemoves the last character from the string buffer and …\nRemoves and returns the last element in a vector if the …\nAppends an element to the back of a collection.\nAppends the given char to the end of this String.\nAppends a given string slice onto the end of this String.\nAppends an element if there is sufficient spare capacity, …\nRemoves and returns the element at position index within …\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 more elements to …\nReserves capacity for at least additional bytes more than …\nReserves the minimum capacity for at least additional more …\nReserves the minimum capacity for at least additional …\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 characters 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 this String with a lower bound.\nShrinks the capacity of the vector as much as possible.\nShrinks the capacity of this String to match its length.\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.\nSplits the string into two at the given byte index.\nRemoves an element from the vector and returns it.\nShortens the vector, keeping the first len elements and …\nShortens this String to the specified length.\nTries to reserve capacity for at least additional more …\nTries to reserve capacity for at least additional bytes …\nTries to reserve the minimum capacity for at least …\nTries to reserve the minimum capacity for at least …\nConstructs a new, empty Vec<T> with at least the specified …\nCreates a new empty String 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 …\nCreates a new empty String with at least the specified …\nConstructs a new, empty Vec<T, A> with at least the …\nInvalid character while decoding.\nAn error occurred during base58 decoding (with checksum).\nChecksum was not correct.\nChecksum was not correct.\nFound a invalid ASCII byte while decoding base58 string.\nChecked data was too short.\nThe decode base58 data was too short (require at least 4 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the incorrect checksum along with the expected …\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid base58 string length (require at least …\nThe config type used by this engine\nErrors that can occur while decoding.\nA DecodeError occurred\nThe decode estimate used by this engine\nErrors that can occur while decoding into a slice.\nErrors that can occur while encoding into a slice.\nAn Engine provides low-level encoding and decoding …\nAn invalid byte was found in the input. The offset and …\nThe last non-padding input symbol’s encoded 6 bits have …\nThe length of the input is invalid. A typical cause of …\nThe nature of the padding was not as configured: absent or …\nThe provided slice is too small.\nThe provided slice may be too small.\nProvides Alphabet and constants for alphabets commonly …\nReturns the config for this engine.\nDecode base64 using the STANDARD engine.\nDecode the input into a new Vec.\nDecode from string reference as octets using the specified …\nDecode the input into the provided output slice.\nDecode from string reference as octets.\nDecode the input into the provided output slice.\nDecode the input into the provided output slice.\nDecode the input into the supplied buffer.\nReturns a conservative estimate of the decoded size of …\nEnables base64’d output anywhere you might use a Display …\nEncode arbitrary octets as base64 using the STANDARD engine…\nEncode arbitrary octets as base64 using the provided Engine…\nEncode arbitrary octets as base64 using the provided Engine…\nEncode arbitrary octets as base64 into a supplied slice.\nEncode arbitrary octets as base64 into a supplied String.\nEncode arbitrary octets as base64 into a supplied slice. …\nEncode arbitrary octets as base64 into a supplied String. …\nCalculate the base64 encoded length for a given input …\nProvides the Engine abstraction and out of the box …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nPreconfigured engines for common use cases.\nImplementations of io::Read to transparently decode base64.\nImplementations of io::Write to transparently handle …\nAn alphabet defines the 64 ASCII characters (symbols) used …\nThe bcrypt alphabet.\nThe alphabet used in BinHex 4.0 files.\nThe crypt(3) alphabet (with . and / as the first two …\nAll bytes must be unique\nThe alphabet used in IMAP-modified UTF-7 (with + and ,).\nAlphabets must be 64 ASCII bytes\nPossible errors when constructing an Alphabet from a str.\n= cannot be used\nThe standard alphabet (with + and /) specified in RFC 4648.\nThe URL-safe alphabet (with - and _) specified in RFC 4648.\nAll bytes must be printable (in the range [32, 126]).\nCreate a &str from the symbols in the Alphabet\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCreate an Alphabet from a string of 64 unique printable …\nA convenience wrapper for base64’ing bytes into a format …\nReturns the argument unchanged.\nCalls U::from(self).\nCreate a Base64Display with the provided engine.\nThe minimal level of configuration that engines must …\nThe config type used by this engine\nThe decode estimate used by an engine implementation. …\nThe decode estimate used by this engine\nMetadata about the result of a decode operation\nControls how pad bytes are handled when decoding.\nAn Engine provides low-level encoding and decoding …\nA general-purpose base64 engine.\nContains configuration parameters for base64 encoding and …\nCanonical padding is allowed, but any fewer padding bytes …\nPadding must be canonical (0, 1, or 2 = as needed to …\nPadding must be absent – for when you want predictable …\nReturns the config for this engine.\nDecode the input into a new Vec.\nDecode the input into the provided output slice.\nDecode the input into the provided output slice.\nDecode the input into the supplied buffer.\nReturns a conservative (err on the side of too big) …\nDelegates to GeneralPurposeConfig::new.\nEncode arbitrary octets as base64 using the provided Engine…\nReturns true if padding should be added after the encoded …\nEncode arbitrary octets as base64 into a supplied slice. …\nEncode arbitrary octets as base64 into a supplied String. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nProvides the GeneralPurpose engine and associated config …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a GeneralPurpose engine from an Alphabet.\nCreate a new config with padding = true, …\nCreate a new config based on self with an updated …\nCreate a new config based on self with an updated …\nCreate a new config based on self with an updated padding …\nA general-purpose base64 engine.\nContains configuration parameters for base64 encoding and …\nDon’t add padding when encoding, and require no padding …\nInclude padding bytes when encoding, and require that they …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nThe config type used by this engine\nThe decode estimate used by this engine\nAn Engine provides low-level encoding and decoding …\nReturns the config for this engine.\nDecode the input into a new Vec.\nDecode the input into the provided output slice.\nDecode the input into the provided output slice.\nDecode the input into the supplied buffer.\nEncode arbitrary octets as base64 using the provided Engine…\nEncode arbitrary octets as base64 into a supplied slice. …\nEncode arbitrary octets as base64 into a supplied String. …\nA Read implementation that decodes base64 data read from …\nReturns the argument unchanged.\nCalls U::from(self).\nUnwraps this DecoderReader, returning the base reader …\nCreate a new decoder that will read from the provided …\nDecode input from the wrapped reader.\nA Write implementation that base64-encodes data using the …\nA Write implementation that base64 encodes data before …\nAn abstraction around consuming strs produced by base64 …\nConsume the base64 encoded data in buf\nEncode all remaining buffered data and write it, including …\nBecause this is usually treated as OK to call multiple …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a EncoderStringWriter that will append to the …\nCalls U::from(self).\nCalls U::from(self).\nUnwraps this EncoderWriter, returning the base writer it …\nEncode all remaining buffered data, including any trailing …\nCreate a new encoder that will write to the provided …\nCreate a EncoderStringWriter that will encode into a new …\nEncode input and then write to the delegate writer.\nNumeric value maps to bech32 character: 29 == “a”.\nThe bech32 checksum algorithm, defined in BIP-173.\nThe bech32m checksum algorithm, defined in BIP-350.\nExtension trait for byte iterators which provides an …\nNumeric value maps to bech32 character: 24 == “c”.\nThe number of characters in the checksum.\nThe length of the code.\nTrait defining a particular checksum.\nNo valid bech32 or bech32m checksum.\nNumeric value maps to bech32 character: 13 == “d”.\nAn error while decoding a bech32 string.\nNumeric value maps to bech32 character: 25 == “e”.\nAn error while encoding a bech32 string.\nAn error while encoding a bech32 string.\nNumeric value maps to bech32 character: 9 == “f”.\nAn element in GF(32), the finite field containing elements …\nExtension trait for field element iterators.\nEncode to formatter failed.\nNumeric value maps to bech32 character: 8 == “g”.\nThe coefficients of the generator polynomial, except the …\nNumeric value maps to bech32 character: 23 == “h”.\nThe human-readable part (human readable prefix before the …\nNumeric value maps to bech32 character: 18 == “j”.\nNumeric value maps to bech32 character: 22 == “k”.\nNumeric value maps to bech32 character: 31 == “l”.\nNumeric value maps to bech32 character: 27 == “m”.\nAn unsigned integer type capable of holding a packed …\nNumeric value maps to bech32 character: 19 == “n”.\nThe “null checksum” used on bech32 strings for which …\nNumeric value maps to bech32 character: 1 == “p”.\nParsing failed.\nNumeric value maps to bech32 character: 0 == “q”.\nNumeric value maps to bech32 character: 3 == “r”.\nNumeric value maps to bech32 character: 16 == “s”.\nNumeric value maps to bech32 character: 11 == “t”.\nThe residue, modulo the generator polynomial, that a valid …\nEncoding HRP and data into a bech32 string exceeds maximum …\nEncoding HRP and data into a bech32 string exceeds maximum …\nNumeric value maps to bech32 character: 28 == “u”.\nNumeric value maps to bech32 character: 12 == “v”.\nNumeric value maps to bech32 character: 14 == “w”.\nEncode to writer failed.\nNumeric value maps to bech32 character: 6 == “x”.\nNumeric value maps to bech32 character: 4 == “y”.\nNumeric value maps to bech32 character: 2 == “z”.\nNumeric value maps to bech32 character: 15 == “0”.\nNumeric value maps to bech32 character: 10 == “2”.\nNumeric value maps to bech32 character: 17 == “3”.\nNumeric value maps to bech32 character: 21 == “4”.\nNumeric value maps to bech32 character: 20 == “5”.\nNumeric value maps to bech32 character: 26 == “6”.\nNumeric value maps to bech32 character: 30 == “7”.\nNumeric value maps to bech32 character: 7 == “8”.\nNumeric value maps to bech32 character: 5 == “9”.\nReturns this human-readable part as bytes.\nReturns this human-readable part as str.\nCreates a byte iterator over the ASCII byte values (ASCII …\nAdapts the byte iterator to output GF32 field elements …\nCreates a character iterator over the ASCII characters of …\nDecodes a bech32 encoded string.\nEncodes data as a lowercase bech32 encoded string.\nEncodes data as a lowercase bech32 encoded string.\nEncodes data to a writer (fmt::Write) as a lowercase …\nEncodes data to a writer (io::Write) as a lowercase bech32 …\nEncodes data to a writer (fmt::Write) as a lowercase …\nEncodes data to a writer (io::Write) as a lowercase bech32 …\nEncodes data as an uppercase bech32 encoded string.\nEncodes data to a writer (fmt::Write) as a uppercase …\nEncodes data to a writer (io::Write) as a uppercase bech32 …\nChecks that encoding hrp and data creates a code that is …\nAdapts the Fe32 iterator to output bytes instead.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 field element from a single bech32 character.\nCreates a field element from a single bech32 character.\nRe-exports the hrp types from primitives::hrp to make …\nCalls U::from(self).\nCalls U::from(self).\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 HRP is valid on the Bitcoin network …\nReturns true if this HRP is valid on the Bitcoin regtest …\nReturns true if this HRP is valid on the Bitcoin signet …\nReturns true if this HRP is valid on the Bitcoin testnet …\nReturns true if this HRP is valid according to the bips.\nIterator over all field elements, in alphabetical order.\nReturns the length (number of characters) of the …\nCreates a lowercase iterator over the byte values (ASCII …\nCreates a lowercase character iterator over the ASCII …\nParses the human-readable part checking it is valid as …\nParses the human-readable part (see Hrp::parse for full …\nProvides the internal nuts and bolts that enable bech32 …\nSanity checks that the various constants of the trait are …\nSegregated Witness API - enables typical usage for …\nConverts the field element to a lowercase bech32 character.\nReturns this human-readable part as a lowercase string.\nConverts the field element to a 5-bit u8, with bits …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nAdapts the Fe32 iterator to encode the field elements into …\nThe human-readable part used by the Bitcoin mainnet …\nThe human-readable part used when running a Bitcoin …\nThe human-readable part (human readable prefix before the …\nThe human-readable part used by the Bitcoin testnet …\nThe bech32 checksum algorithm, defined in BIP-173.\nThe bech32m checksum algorithm, defined in BIP-350.\nThe “null checksum” used on bech32 strings for which …\nDegree-2 BCH code checksum.\nDecoding of bech32 encoded strings as specified by BIP-173 …\nBech32 address encoding.\nGF32 - Galois Field over 32 elements.\nProvides an Hrp type that represents the human-readable …\nIterator Adaptors.\nSegregated Witness functionality - useful for enforcing …\nThe number of characters in the checksum.\nThe length of the code.\nTrait defining a particular checksum.\nA checksum engine, which can be used to compute or verify …\nThe coefficients of the generator polynomial, except the …\nIterator that yields the field elements that are input …\nAn unsigned integer type capable of holding a packed …\nThe one constant, for which stdlib provides no existing …\nTrait describing an integer type which can be used as a “…\nA placeholder type used as part of the NoChecksum “…\nThe residue, modulo the generator polynomial, that a valid …\nThe number of fe32s that can fit into the type; computed …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nAdds a single gf32 element to the checksum engine.\nFeeds hrp into the checksum engine.\nInputs the target residue of the checksum.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nMultiply the polynomial by x, drop its highest coefficient …\nCreates an iterator that yields the field elements of hrp …\nConstructs a new checksum engine with no data input.\nReturns for the current checksum residue.\nSanity checks that the various constants of the trait are …\nConvert an iterator of Results into FallibleIterator by …\nExtracts the coefficient of the x^n from the packed …\nIterator adaptor that maps an iterator of valid bech32 …\nAn iterator over a parsed HRP string data as bytes.\nAn error with the characters of the input string.\nCharacter errors in a bech32 encoded string.\nAn HRP string that has been parsed and had the checksum …\nAn error while constructing a CheckedHrpstring type.\nInvalid checksum.\nInvalid checksum.\nErrors in the checksum of a bech32 encoded string.\nString exceeds maximum allowed length.\nEncoding HRP and data into a bech32 string exceeds the …\nAn iterator over a parsed HRP string data as field …\nThe human-readable part is invalid.\nSome part of the string contains an invalid character.\nThe checksummed string is not a valid length.\nThe checksum residue is not valid for the data.\nInvalid witness version (must be 0-16 inclusive).\nString does not contain the separator character.\nThe whole string must be of one case.\nNo data found after removing the checksum.\nThe data payload is padded with non-zero bits.\nNo characters after the separator.\nInvalid padding on the witness data.\nError validating the padding bits on the witness data.\nError while parsing the encoded address string.\nEncoding HRP, witver, and program into an address exceeds …\nAn valid length HRP string that has been parsed, had the …\nAn error while constructing a SegwitHrpstring type.\nString exceeds maximum allowed length.\nThe data payload has too many bits of padding.\nError while parsing the encoded address string.\nAn HRP string that has been parsed but not yet had the …\nErrors when parsing a bech32 encoded string.\nInvalid witness length.\nReturns an iterator that yields the data part of the …\nReturns an iterator that yields the data part, excluding …\nThe checksum specific code length.\nReturns the data part as ASCII bytes i.e., everything …\nReturns a partial slice of the data part, as ASCII bytes, …\nReturns a partial slice of the data part, as ASCII bytes, …\nThe length of the string if encoded with checksum.\nReturns an iterator that yields the data part of 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.\nValidates that data has a valid checksum for the Ck …\nReturns true if the HRP is “bc” or “tb”.\nReturns the human-readable part.\nReturns the human-readable part.\nReturns the human-readable part.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nParses an bech32 encode string and constructs a …\nParses and validates an HRP string, without treating the …\nParses an HRP string, treating the first data character as …\nParses an HRP string, treating the first data character as …\nRemoves the checksum for the Ck algorithm and returns an …\nAttempts to remove the first byte of the data part, …\nAttempts to remove the first byte of the data part, …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nValidates that data has a valid checksum for the Ck …\nValidates that data has a valid checksum for the Ck …\nConverts this type to a SegwitHrpstring after validating …\nValidates the segwit padding rules.\nValidates the segwit witness length rules.\nReturns the segwit witness version if there is one.\nReturns the segwit witness version if there is one.\nReturns the witness version.\nIterator adaptor which takes a stream of ASCII field …\nIterator adaptor which takes a stream of field elements, …\nThe Encoder builds iterators that can be used to encode …\nIterator adaptor for a checksummed iterator that inputs …\nIterator adaptor that just prepends a single character to …\nReturns an iterator that yields the bech32 encoded address …\nReturns an iterator that yields the bech32 encoded address …\nReturns an iterator that yields the field elements that go …\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).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nCreates a WitnessVersionIter.\nAdapts the Fe32Iter iterator to yield characters …\nAdapts the CharIter iterator to yield bytes representing …\nCreates a Fe32Iter which yields all the field elements …\nConstructs a new bech32 encoder.\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nAdds witness_version to the encoder (as first byte of …\nAn element in GF(32), the finite field containing elements …\nA galois field error when converting from a character.\nTried to interpret a character as a GF32 element but it is …\nTried to interpret a byte as a GF32 element but its …\nTried to interpret an integer as a GF32 element but it …\nTried to interpret a character as a GF32 element but it is …\nA galois field error when converting from an integer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThe human-readable part used by the Bitcoin mainnet …\nThe human-readable part used when running a Bitcoin …\nIterator over bytes (ASCII values) of the human-readable …\nIterator over ASCII characters of the human-readable part.\nThe human-readable part is empty.\nErrors encountered while checking the human-readable part …\nThe human-readable part (human readable prefix before the …\nByte value not within acceptable US-ASCII range.\nIterator over lowercase bytes (ASCII characters) of the …\nIterator over lowercase ASCII characters of the …\nThe human-readable part cannot mix upper and lower case.\nFound a non-ASCII character.\nThe human-readable part used by the Bitcoin testnet …\nThe human-readable part is too long.\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).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nExtension trait for byte iterators which provides an …\nIterator adaptor that converts bytes to GF32 elements.\nIterator adaptor for field-element-yielding iterator, …\nExtension trait for field element iterators.\nIterator adaptor that converts GF32 elements to bytes.\nAdapts the byte iterator to output GF32 field elements …\nAdapts the Fe32 iterator to output bytes instead.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nCreates a new checksummed iterator which adapts a data …\nCreates a new checksummed iterator which adapts a data …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nAdapts the Fe32 iterator to encode the field elements into …\nThe segwit v0 witness is not 20 or 32 bytes long.\nField element does not represent a valid witness version.\nThe maximum enforced string length of a segwit address.\nThe witness data is too long.\nThe witness data is too short.\nThe field element representing segwit version 0.\nThe field element representing segwit version 1 (taproot).\nWitness program invalid because of incorrect length.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nReturns true if length represents a valid witness program …\nReturns true if given field element represents a valid …\nValidates the segwit witness program length rules for …\nChecks that the given field element represents a valid …\nAn error while decoding a segwit address.\nAn error while constructing a SegwitHrpstring type.\nWriting to formatter failed.\nEncoding HRP, witver, and program into a bech32 string …\nThe field element representing segwit version 0.\nThe field element representing segwit version 1 (taproot).\nInvalid witness length.\nInvalid witness version (must be 0-16 inclusive).\nDecodes a segwit address.\nEncodes a segwit address.\nEncodes a segwit address to a writer (fmt::Write) using …\nEncodes a segwit address to a writer (io::Write) using …\nEncodes a segwit address to a writer (fmt::Write) using …\nEncodes a segwit address to a writer (io::Write) using …\nEncodes a segwit address to a writer (fmt::Write) using …\nEncodes a segwit address to a io::Write writer using …\nEncodes a segwit version 0 address.\nEncodes a segwit version 1 address.\nReturns the length of the address after encoding HRP, …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nA BlockTransactions structure is used to provide some of …\nA BlockTransactionsRequest structure is used to list …\nA BIP-152 error\nA structure to relay a block header, short IDs, and a …\nThe prefill slice provided was invalid.\nA PrefilledTransaction structure is used in …\nShort transaction IDs are used to represent a transaction …\nA transaction index is requested that is out of range from …\nAn unknown version number was used.\nReturns a reference the underlying bytes.\nConverts the object to a mutable raw pointer.\nConverts the object to a raw pointer.\nThe blockhash of the block which the transactions being …\nThe blockhash of the block which the transactions being …\nCalculate the SipHash24 keys used to calculate short IDs.\nPanics\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a new HeaderAndShortIds from a full block.\nCreates Self from a hex string.\nConstruct a BlockTransactions from a …\nThe header of the block being provided.\nThe index of the transaction in the block.\nThe indexes of the transactions being requested in 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).\nReturns whether the object, as an array, is empty. Always …\nReturns the length of the object as an array.\nA nonce for use in short transaction ID calculations.\nUsed to provide the coinbase transaction and a select few …\nThe short transaction IDs calculated from the transactions …\nReturns the underlying bytes.\nThe transactions provided.\nThe actual transaction.\nCalculate the short ID with the given (w)txid and using …\nBitwise stream reader.\nBitwise stream writer.\nA block filter, as described by BIP 158.\nReads and interprets a block filter.\nCompiles and writes a block filter.\nErrors for blockfilter.\nFilter hash, as defined in BIP-157\nFilter header, as defined in BIP-157\nGolomb-Rice encoded filter reader.\nGolomb-Rice encoded filter writer.\nIO error reading or writing binary serialization of the …\nMissing UTXO, cannot calculate script filter.\nAdds an arbitrary element to filter.\nAdds data to the filter.\nAdds consumed output scripts of a block to filter.\nAdds output scripts of the block to filter (excluding …\nGolomb encoded filter\nComputes this filter’s ID in a chain of filters (see BIP …\nWrites the block filter.\nWrites the filter to the wrapped writer.\nflush bits not yet written.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nReturns true if all queries match against this …\nReturns true if all queries match against this …\nReturns true if all queries match against this BlockFilter.\nReturns true if any query matches against this …\nReturns true if any query matches against this …\nReturns true if any query matches against this BlockFilter.\nCreates a new BlockFilterWriter from block.\nCreates a new BlockFilterReader from block_hash.\nCreates a new GcsFilterReader with specific seed to …\nCreates a new GcsFilterWriter wrapping a generic writer, …\nCreates a new BitStreamReader that reads bitwise from a …\nCreates a new BitStreamWriter that writes bitwise to a …\nCreates a new filter from pre-computed data.\nComputes a SCRIPT_FILTER that contains spent and output …\nReads nbit bits, returning the bits in a u64 starting with …\nWrites nbits bits from data.\nBase58 encoding error\nA pk->pk derivation was attempted on a hardened key\nA chain code\nA child number for a derived key\nA BIP-32 derivation path.\nAn iterator over children of a DerivationPath.\nA BIP32 error\nThe old name for xpriv, extended public key.\nThe old name for xpub, extended public key.\nThe old name for xpriv, extended public key (with a …\nThe old name for xpub, extended public key (with a …\nA fingerprint\nHardened key\nHexadecimal decoding error\nTrait that allows possibly failable conversion from a type …\nBase58 decoded data was an invalid length.\nDecoded base58 data was an invalid length.\nA child number was provided that was out of range\nInvalid childnumber format.\nInvalid derivation path format.\nPublicKey hex should be 66 or 130 digits long.\nFull information on the used extended public key: …\nNon-hardened key\nA secp256k1 error occurred\nUnknown version magic bytes\nEncoded extended key data has wrong length\nExtended key identifier as defined in BIP-32.\nExtended private key\nExtended public key\nReturns a reference the underlying bytes.\nReturns a reference the underlying bytes.\nConverts the object to a mutable raw pointer.\nConverts the object to a mutable raw pointer.\nConverts the object to a raw pointer.\nConverts the object to a raw pointer.\nChain code\nChain code\nChain code\nChain code\nChain code\nChain code\nCreate a new DerivationPath that is a child of this one.\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nGet an Iterator over the children of this DerivationPath …\nPublic->Public child key derivation\nCompute the scalar tweak added to this key to get a child …\nDecoding extended private key from binary data according …\nDecoding extended public key from binary data according to …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nAttempts to derive an extended private key from a path.\nAttempts to derive an extended public key from a path.\nExtended private key binary encoding according to BIP 32\nExtended public key binary encoding according to BIP 32\nConcatenate self with path and return the resulting new …\nReturns the first four bytes of the identifier\nReturns the first four bytes of the identifier\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a Hardened from an index, returns an error if the …\nCreates Self from a hex string.\nCreates Self from a hex string.\nCreate a Normal from an index, returns an error if the …\nDerives a public key from a private key\nGet an Iterator over the hardened children of this …\nReturns the HASH160 of the public key belonging to the …\nReturns the HASH160 of the chaincode\nReturns the child number that is a single increment from …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert into a DerivationPath that is a child of this one.\nConverts a given type into a DerivationPath with possible …\nConvert an iterator of anything into FallibleIterator by …\nReturns the invalid payload length.\nReturns whether the object, as an array, is empty. Always …\nReturns whether the object, as an array, is empty. Always …\nReturns true if the derivation path is empty\nReturns true if the child number is a Hardened value.\nReturns whether derivation path represents master key …\nReturns true if the child number is a Normal value.\nReturns the length of the object as an array.\nReturns the length of the object as an array.\nReturns length of the derivation path\nReturns derivation path for a master key (i.e. empty …\nThe network kind this key is to be used on\nThe network kind this key is to be used on\nThe network this key is to be used on\nThe network this key is to be used on\nThe network this key is to be used on\nThe network kind this key is to be used on\nConstruct a new master key from a seed value\nGet an Iterator over the unhardened children of this …\nFingerprint of the parent key\nFingerprint of the parent key\nFingerprint of the parent key (0 for master)\nFingerprint of the parent key (0 for master)\nFingerprint of the parent key (0 for master)\nFingerprint of the parent key\nPrivate key\nPrivate key\nPrivate key\nPublic key\nPublic key\nPublic key\nStart a new DerivationPathIterator at the given child.\nReturns the underlying bytes.\nReturns the underlying bytes.\nConstructs BIP340 keypair for Schnorr signatures and …\nConstructs ECDSA compressed private key matching internal …\nConstructs ECDSA compressed public key matching internal …\nReturns the derivation path as a vector of u32 integers. …\nConstructs BIP340 x-only public key for BIP-340 signatures …\nConvert an iterator of Results into FallibleIterator by …\nKey index, within [0, 2^31 - 1]\nKey index, within [0, 2^31 - 1]\nRepresents fee rate.\nRepresents block weight - the weight of a transaction or …\nBitcoin blocks.\nBlockdata constants.\nImplements FeeRate and assoctiated features.\nProvides absolute and relative locktimes.\nBitcoin script opcodes.\nBitcoin scripts.\nBitcoin transactions.\nImplements Weight and associated features.\nWitness\nThe header hash is not below the target.\nThe target field of a block header did not match the …\nAn error when looking up a BIP34 block height.\nBitcoin block.\nA bitcoin block hash.\nBitcoin block header.\nBIP-9 compatible version number that does not signal for …\nThe BIP34 push was negative.\nNo push was present where the BIP34 push was expected.\nThe original Bitcoin Block v1.\nThe number of bytes that the block header contributes to …\nBIP-34 Block v2.\nA hash of the Merkle tree branch or root for transactions.\nThe BIP34 push was larger than 8 bytes.\nThe block does not support BIP34 yet.\nA block validation error.\nBitcoin block version number.\nA hash corresponding to the witness structure commitment …\nA hash corresponding to the Merkle tree root for witness …\nThe target value below which the blockhash must lie.\nReturns the block hash.\nComputes the popular “difficulty” measure for mining.\nComputes the popular “difficulty” measure for mining …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a Version from a signed 32 bit integer value.\nThe block header\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nChecks whether the version number is signalling a soft …\nThe root hash of the merkle tree of transactions in the …\nThe nonce, selected to obtain a low enough blockhash.\nReference to the previous block in the chain.\nComputes the target (range [0, T] inclusive) that a …\nThe timestamp of the block, as claimed by the miner.\nReturns the inner i32 value.\nList of transactions contained in the block\nChecks that the proof-of-work for the block is valid, …\nBlock version, now repurposed for soft fork signalling.\nReturns the total work of the block.\nChainHash for mainnet bitcoin.\nNumber of blocks needed for an output from a coinbase …\nThe uniquely identifying hash of the target blockchain.\nHow many blocks between diffchanges.\nHow much time on average should occur between diffchanges.\nThe maximum allowed number of signature check operations …\nMaximum allowed value for an integer in Script.\nThe maximum allowed script size.\nMainnet (bitcoin) pubkey address prefix.\nTest (tesnet, signet, regtest) pubkey address prefix.\nChainHash for regtest bitcoin.\nMainnet (bitcoin) script address prefix.\nTest (tesnet, signet, regtest) script address prefix.\nChainHash for signet bitcoin.\nHow may blocks between halvings.\nHow many seconds between blocks we expect on average.\nChainHash for testnet3 bitcoin.\nChainHash for testnet3 bitcoin.\nChainHash for testnet4 bitcoin.\nThe factor that non-witness serialization data is …\nReturns a reference the underlying bytes.\nConverts the object to a mutable raw pointer.\nConverts the object to a raw pointer.\nReturns the argument unchanged.\nConverts genesis block hash into ChainHash.\nCreates Self from a hex string.\nConstructs and returns the genesis block.\nCalls U::from(self).\nReturns whether the object, as an array, is empty. Always …\nReturns the length of the object as an array.\nReturns the underlying bytes.\nReturns the hash of the network genesis block for use as a …\nReturns the hash of the network genesis block for use as a …\nRepresents fee rate.\nProvides type LockTime that implements the logic around …\nProvides type LockTime that implements the logic around …\nA block height lock time value.\nAn error that occurs when converting a u32 to a lock time …\nAn absolute block height, guaranteed to always contain a …\nThe Threshold for deciding whether a lock time value is a …\nAn absolute lock time value, representing either a block …\nThe maximum absolute block height.\nThe maximum absolute block time (Sun Feb 07 2106 06:28:15 …\nThe minimum absolute block height (0), the genesis block.\nThe minimum absolute block time (Tue Nov 05 1985 00:53:20 …\nError returned when parsing block height fails.\nError returned when parsing block time fails.\nThe number of bytes that the locktime contributes to the …\nA UNIX timestamp lock time value.\nA UNIX timestamp, seconds since epoch, guaranteed to …\nAbsolute block height 0, the genesis block.\nIf crate::Transaction::lock_time is set to zero it is …\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 new block height.\nConstructs a new block time.\nConstructs a LockTime from an nLockTime value or the …\nConstructs a LockTime from n, expecting n to be a valid …\nCreates a Height from a hex string.\nCreates a Time from a hex string.\nCreates a LockTime from an prefixed hex string.\nConstructs a LockTime from n, expecting n to be a valid …\nCreates a LockTime from an unprefixed hex string.\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 lock time value is a block height.\nReturns true if this lock time value is a block time (UNIX …\nReturns true if satisfaction of other lock time implies …\nReturns true if both lock times use the same unit i.e., …\nReturns true if this timelock constraint is satisfied by …\nConverts this Height to its inner u32 value.\nConverts this Time to its inner u32 value.\nReturns the inner u32 value. This is the value used when …\nA block height lock time value.\nError returned when a sequence number is parsed as a lock …\nA relative lock time lock-by-blockheight value.\nTried to satisfy a lock-by-blocktime lock using a height …\nTried to satisfy a lock-by-blockheight lock using a time …\nA relative lock time value, representing either a block …\nThe maximum relative block height.\nThe maximum relative block time (33,554,432 seconds or …\nThe minimum relative block height (0), can be included in …\nThe minimum relative block time (0), can be included in …\nThe number of bytes that the locktime contributes to the …\nA relative lock time lock-by-blocktime value.\nA 512 second time interval value.\nInput time in seconds was too large to be encoded to a 16 …\nRelative block height 0, can be included in any block.\nRelative block time 0, can be included in any block.\nA relative locktime of 0 is always valid, and is assumed …\nAccessor for the u32 whose “disable” flag was set, …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a Time using time intervals where each interval is …\nConstructs a LockTime from n, expecting n to be a count of …\nConstructs a LockTime from an nSequence value or the …\nCreate a Height using a count of blocks.\nConstructs a LockTime from n, expecting n to be a 16-bit …\nCreate a Time from seconds, converting the seconds into …\nCreate a LockTime from seconds, converting the seconds …\nCreate a Time from seconds, converting the seconds into …\nCreate a LockTime from seconds, converting the seconds …\nConstructs a LockTime from the sequence number of a …\nAttempted to satisfy a lock-by-blocktime lock with this …\nThe inner height value of the lock-by-blockheight lock.\nCalls U::from(self).\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 lock time value is in units of block …\nReturns true if this lock time value is in units of time.\nReturns true if satisfaction of other lock time implies …\nReturns true if satisfaction of the sequence number …\nReturns true if both lock times use the same unit i.e., …\nReturns true if this [relative::LockTime] is satisfied by …\nReturns true if this [relative::LockTime] is satisfied by …\nReturns true if this [relative::LockTime] is satisfied by …\nCreates a new TimeOverflowError using seconds.\nThe inner time value of the lock-by-blocktime lock.\nAttempted to satisfy a lock-by-blockheight lock with this …\nReturns the u32 value used to encode this locktime in an …\nReturns the u32 value used to encode this locktime in an …\nReturns the u32 value used to encode this locktime in an …\nEncodes the locktime as a sequence number.\nReturns the inner u16 value.\nReturns the inner u16 value.\nBroad categories of opcodes with similar behavior.\nClassification context for the opcode.\nFails the script even if not executed.\nOpcode used in legacy context.\nDoes nothing.\nPush an empty array onto the stack.\nEmpty stack is also FALSE.\nPreviously called OP_NOP2.\nPreviously called OP_NOP3.\nNumber 1 is also TRUE.\nA script Opcode.\nAny opcode not covered above.\nPushes the given number of bytes onto the stack.\nPushes the given number onto the stack.\nFails the script if executed.\nSucceeds the script even if not executed.\nOpcode used in tapscript context.\nEnables wildcard imports to bring into scope all opcodes …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nMap 0 to 0 and everything else to 1, in place.\nIncrement the top stack element in place.\nDecrement the top stack element in place.\nFail the script unconditionally, does not even need to be …\nDrops the top two stack items.\nDuplicates the top two stack items as AB -> ABAB.\nFail the script unconditionally, does not even need to be …\nCopies the two stack items of items two spaces back to the …\nMoves the two stack items four spaces back to the front, …\nSwaps the top two pairs, as ABCD -> CDAB.\nDuplicates the two three stack items as ABC -> ABCABC.\nAbsolute value the top stack item in place.\nPop two stack items and push their sum.\nFail the script unconditionally, does not even need to be …\nPop the top two stack items and push 1 if both are …\nPop the top two stack items and push 1 if either is …\nFail the script unconditionally, does not even need to be …\nPop N, N pubkeys, M, M signatures, a dummy (due to bug in …\nLike the above but return success/failure.\nhttps://en.bitcoin.it/wiki/OP_CHECKSIG pushing 1/0 for …\nOP_CHECKSIGADD post tapscript.\nhttps://en.bitcoin.it/wiki/OP_CHECKSIG returning …\n…\nIgnore this and everything preceding when deciding what to …\n…\nPush the current number of stack items onto the stack.\nFail the script unconditionally, does not even need to be …\nDrops the top stack item.\nDuplicates the top stack item.\nExecute statements if those after the previous OP_IF were …\nPop and execute the next statements if a zero element was …\nPushes 1 if the inputs are exactly equal, 0 otherwise.\nReturns success if the inputs are exactly equal, failure …\nPop one element from the alt stack onto the main stack.\nPop the top two items; push 1 if the second is greater …\nPop the top two items; push 1 if the second is >= the top, …\nPop the top stack item and push its RIPEMD(SHA256) hash.\nPop the top stack item and push its SHA256(SHA256) hash.\nPop and execute the next statements if a nonzero element …\nDuplicate the top stack element unless it is zero.\nSynonym for OP_RETURN.\nFail the script unconditionally, does not even need to be …\nFail the script unconditionally, does not even need to be …\nPop the top two items; push 1 if the second is less than …\nPop the top two items; push 1 if the second is <= the top, …\nFail the script unconditionally, does not even need to be …\nPop the top two items; push the larger.\nPop the top two items; push the smaller.\nFail the script unconditionally, does not even need to be …\nFail the script unconditionally, does not even need to be …\nMultiply the top stack item by -1 in place.\nDrops the second-to-top stack item.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nMap 0 to 1 and everything else to 0, in place.\nPop and execute the next statements if a zero element was …\nPop the top two stack items and push 1 if both are …\nPop the top two stack items and return success if both are …\nPop the top two stack items and push 0 if both are …\nFail the script unconditionally, does not even need to be …\nCopies the second-to-top stack item, as xA -> AxA.\nPop the top stack element as N. Copy the Nth stack element …\nPush an empty array onto the stack.\nPush the next byte as an array onto the stack.\nPush the next 10 bytes as an array onto the stack.\nPush the next 11 bytes as an array onto the stack.\nPush the next 12 bytes as an array onto the stack.\nPush the next 13 bytes as an array onto the stack.\nPush the next 14 bytes as an array onto the stack.\nPush the next 15 bytes as an array onto the stack.\nPush the next 16 bytes as an array onto the stack.\nPush the next 17 bytes as an array onto the stack.\nPush the next 18 bytes as an array onto the stack.\nPush the next 19 bytes as an array onto the stack.\nPush the next 2 bytes as an array onto the stack.\nPush the next 20 bytes as an array onto the stack.\nPush the next 21 bytes as an array onto the stack.\nPush the next 22 bytes as an array onto the stack.\nPush the next 23 bytes as an array onto the stack.\nPush the next 24 bytes as an array onto the stack.\nPush the next 25 bytes as an array onto the stack.\nPush the next 26 bytes as an array onto the stack.\nPush the next 27 bytes as an array onto the stack.\nPush the next 28 bytes as an array onto the stack.\nPush the next 29 bytes as an array onto the stack.\nPush the next 3 bytes as an array onto the stack.\nPush the next 30 bytes as an array onto the stack.\nPush the next 31 bytes as an array onto the stack.\nPush the next 32 bytes as an array onto the stack.\nPush the next 33 bytes as an array onto the stack.\nPush the next 34 bytes as an array onto the stack.\nPush the next 35 bytes as an array onto the stack.\nPush the next 36 bytes as an array onto the stack.\nPush the next 37 bytes as an array onto the stack.\nPush the next 38 bytes as an array onto the stack.\nPush the next 39 bytes as an array onto the stack.\nPush the next 4 bytes as an array onto the stack.\nPush the next 40 bytes as an array onto the stack.\nPush the next 41 bytes as an array onto the stack.\nPush the next 42 bytes as an array onto the stack.\nPush the next 43 bytes as an array onto the stack.\nPush the next 44 bytes as an array onto the stack.\nPush the next 45 bytes as an array onto the stack.\nPush the next 46 bytes as an array onto the stack.\nPush the next 47 bytes as an array onto the stack.\nPush the next 48 bytes as an array onto the stack.\nPush the next 49 bytes as an array onto the stack.\nPush the next 5 bytes as an array onto the stack.\nPush the next 50 bytes as an array onto the stack.\nPush the next 51 bytes as an array onto the stack.\nPush the next 52 bytes as an array onto the stack.\nPush the next 53 bytes as an array onto the stack.\nPush the next 54 bytes as an array onto the stack.\nPush the next 55 bytes as an array onto the stack.\nPush the next 56 bytes as an array onto the stack.\nPush the next 57 bytes as an array onto the stack.\nPush the next 58 bytes as an array onto the stack.\nPush the next 59 bytes as an array onto the stack.\nPush the next 6 bytes as an array onto the stack.\nPush the next 60 bytes as an array onto the stack.\nPush the next 61 bytes as an array onto the stack.\nPush the next 62 bytes as an array onto the stack.\nPush the next 63 bytes as an array onto the stack.\nPush the next 64 bytes as an array onto the stack.\nPush the next 65 bytes as an array onto the stack.\nPush the next 66 bytes as an array onto the stack.\nPush the next 67 bytes as an array onto the stack.\nPush the next 68 bytes as an array onto the stack.\nPush the next 69 bytes as an array onto the stack.\nPush the next 7 bytes as an array onto the stack.\nPush the next 70 bytes as an array onto the stack.\nPush the next 71 bytes as an array onto the stack.\nPush the next 72 bytes as an array onto the stack.\nPush the next 73 bytes as an array onto the stack.\nPush the next 74 bytes as an array onto the stack.\nPush the next 75 bytes as an array onto the stack.\nPush the next 8 bytes as an array onto the stack.\nPush the next 9 bytes as an array onto the stack.\nRead the next byte as N; push the next N bytes as an array …\nRead the next 2 bytes as N; push the next N bytes as an …\nRead the next 4 bytes as N; push the next N bytes as an …\nPush the array 0x01 onto the stack.\nPush the array 0x0a onto the stack.\nPush the array 0x0b onto the stack.\nPush the array 0x0c onto the stack.\nPush the array 0x0d onto the stack.\nPush the array 0x0e onto the stack.\nPush the array 0x0f onto the stack.\nPush the array 0x10 onto the stack.\nPush the array 0x02 onto the stack.\nPush the array 0x03 onto the stack.\nPush the array 0x04 onto the stack.\nPush the array 0x05 onto the stack.\nPush the array 0x06 onto the stack.\nPush the array 0x07 onto the stack.\nPush the array 0x08 onto the stack.\nPush the array 0x09 onto the stack.\nPush the array 0x81 onto the stack.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nFail the script immediately. (Must be executed.).\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nFail the script unconditionally, does not even need to be …\nPop the top stack item and push its RIPEMD160 hash.\nPop the top stack element as N. Move the Nth stack element …\nRotate the top three stack items, as [top next1 next2] -> […\nFail the script unconditionally, does not even need to be …\nPop the top stack item and push its SHA1 hash.\nPop the top stack item and push its SHA256 hash.\nPushes the length of the top stack item onto the stack.\nPop two stack items and push the second minus the top.\nFail the script unconditionally, does not even need to be …\nSwap the top two stack items.\nPop one element from the main stack onto the alt stack.\nCopy the top stack item to before the second item, as [top …\nSynonym for OP_RETURN.\nFail the script unconditionally, does not even need to be …\nIf the top value is zero or the stack is empty, fail; …\nFail the script unconditionally, does not even need to be …\nPop the top three items; if the top is >= the second and < …\nFail the script unconditionally, does not even need to be …\nAn Object which can be used to construct a script piece by …\nIterator over bytes of a script\nSome opcode expected a parameter but it was missing or …\nWays that a script might fail. Not everything is split up …\nA “parsed opcode” which allows iterating over a Script …\nIterator over script instructions with their positions.\nIterator over a script returning parsed opcodes.\nSomething did a non-minimal push; for more information see …\nTried to read an array off the stack as a number when it …\nSome non-push opcode.\nByte slices that can be in Bitcoin script.\nPush a bunch of data.\nOwned, growable counterpart to PushBytes.\nError returned on attempt to create too large PushBytes.\nReports information about failed conversion into PushBytes.\nBitcoin script slice.\nAn owned, growable script.\nA hash of Bitcoin Script bytecode.\nCan not serialize the spending transaction.\nCan not find the spent output.\nSegWit version of a Bitcoin Script bytecode hash.\nReturns script bytes\nReturns the underlying bytes.\nReturns the underlying mutbale bytes.\nExtracts mutable PushBytes slice\nExtracts PushBytes slice\nReturns the internal script\nViews the remaining script as a slice.\nViews the remaining script as a slice.\nReturns the number of bytes the buffer can contain without …\nRemove all bytes from buffer without affecting capacity.\nCreates an empty PushBytes.\nTry appending a slice to PushBytesBuf\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nHow many bytes the input had.\nCalls U::from(self).\nCalls U::from(self).\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 Builder into script bytes\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConverts the Builder into ScriptBuf.\nChecks whether the script is the empty script.\nReturns true if the buffer contains zero bytes.\nReturns true if the buffer contains zero bytes.\nReturns the length in bytes of the script.\nReturns the number of bytes in buffer.\nReturns the number of bytes in buffer.\nCreates a new empty script.\nCreates a new empty PushBytesBuf.\nReturns the opcode if the instruction is not a data push.\nRemove the last byte from buffer if any.\nTry pushing a single byte.\nReturns the pushed bytes if the instruction is a data push.\nAdds instructions to push an integer onto the stack.\nAdds instructions to push a public key onto the stack.\nAdds instructions to push an absolute lock time onto the …\nAdds a single opcode to the script.\nAdds instructions to push a sequence number onto the stack.\nAdds instructions to push some arbitrary data onto the …\nAdds an OP_VERIFY to the script or replaces the last …\nAdds instructions to push an XOnly public key onto the …\nDecodes a boolean.\nDecodes an integer in script(minimal CScriptNum) format.\nDecodes an integer in script format without non-minimal …\nRemove the byte at index and return it.\nReserve capacity for additional_capacity bytes.\nReturns the number interpretted by the script parser if it …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nRemove bytes from buffer past len.\nCreates a new empty PushBytesBuf with reserved capacity.\nThe segregated witness program as defined by BIP141.\nThe segregated witness version byte as defined by BIP141.\nEncodes an integer in script(minimal CScriptNum) format.\nWitness program error.\nThe witness program must be between 2 and 40 bytes in …\nA v0 witness program must be either of length 20 or 32.\nThe maximum byte size of a segregated witness program.\nThe minimum byte size of a segregated witness program.\nThe segregated witness program.\nReturns the argument unchanged.\nCalls U::from(self).\nCannot create a witness version from non-zero data push.\nError parsing WitnessVersion from a string.\nString contained an invalid witness version number.\nCannot not convert OP to a witness version.\nError attempting to create a WitnessVersion from an …\nError attempting to create a WitnessVersion from an …\nUnable to parse integer from string.\nInitial version of witness program. Used for P2WPKH and …\nVersion of witness program used for Taproot P2TR outputs.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nVersion of the segregated witness program.\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 invalid non-witness version integer.\nError in general format.\nError attempting to do an out of bounds access on a vector.\nWeight prediction of an individual input.\nError attempting to do an out of bounds access on the …\nThe original Bitcoin transaction version (pre-BIP-68).\nA reference to a transaction output.\nError attempting to do an out of bounds access on the …\nInput weight prediction corresponding to spending of a …\nInput weight prediction corresponding to spending of a …\nInput weight prediction corresponding to spending of …\nInput weight prediction corresponding to spending of …\nInput weight prediction corresponding to spending of …\nAn error in parsing an OutPoint.\nBitcoin transaction input sequence number.\nThe second Bitcoin transaction version (post-BIP-68).\nSize exceeds max.\nBitcoin transaction.\nBitcoin transaction input.\nBitcoin transaction output.\nA bitcoin transaction hash/transaction ID.\nError in TXID part.\nThe transaction version.\nError in vout part.\nVout part is not strictly numeric without leading zeroes.\nA bitcoin witness transaction ID.\nComputes the value of an output accounting for the cost of …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nComputes the prediction for a single input in const …\nInput weight prediction corresponding to spending of a …\nInput weight prediction corresponding to spending of …\nAttempted index access.\nList of transaction inputs.\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 transaction version number is …\nLength of the vector where access was attempted.\nBlock height or timestamp. Transaction cannot be included …\nComputes the prediction for a single input.\nCreates a non-standard transaction version.\nList of transaction outputs.\nPredicts the weight of a to-be-constructed transaction.\nPredicts the weight of a to-be-constructed transaction in …\nThe reference to the previous output that is being used as …\nThe script which must be satisfied for the output to be …\nThe script which pushes values on the stack which will …\nThe sequence number, which suggests to miners which of two …\nThe referenced transaction’s txid.\nThe value of the output, in satoshis.\nThe protocol version, is currently expected to be 1 or 2 …\nThe index of the referenced output in its transaction’s …\nTallies the total weight added to a transaction by an …\nWitness data: an array of byte-arrays. Note that this …\nThe factor that non-witness serialization data is …\nRepresents block weight - the weight of a transaction or …\nAn iterator returning individual witness elements.\nThe Witness is the data used to unlock bitcoin since the …\nReturns the argument unchanged.\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nThe mainnet parameters (alias for Params::MAINNET).\nInvalid consensus encoding.\nData which can be encoded in a consensus-consistent way.\nError when consensus decoding from an [IterReader].\nData which can be encoded in a consensus-consistent way.\nThe mainnet parameters.\nOther decoding error.\nParameters that influence chain consensus.\nThe regtest parameters.\nExtensions of Read to decode data as per Bitcoin consensus.\nThe signet parameters.\nThe testnet3 parameters.\nThe testnet3 parameters.\nThe testnet4 parameters.\nAttempted to decode an object from an iterator that …\nExtensions of Write to encode data as per Bitcoin …\nDetermines whether minimal difficulty may be used for …\nTime when BIP16 becomes active.\nBlock height at which BIP34 becomes active.\nBlock height at which BIP65 becomes active.\nBlock height at which BIP66 becomes active.\nDecode an object with a well-defined format.\nDecode Self from a size-limited reader.\nEncodes an object with a well-defined format.\nDeserializes an object from a vector, will error if said …\nDeserializes an object from a vector, but will not report …\nCalculates the number of blocks between difficulty …\nOutputs a boolean.\nOutputs a 16-bit signed integer.\nOutputs a 32-bit signed integer.\nOutputs a 64-bit signed integer.\nOutputs an 8-bit signed integer.\nOutputs a byte slice.\nOutputs a 16-bit unsigned integer.\nOutputs a 32-bit unsigned integer.\nOutputs a 64-bit unsigned integer.\nOutputs an 8-bit unsigned integer.\nBitcoin consensus-encodable types.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThe maximum attainable target value for these params.\nNumber of blocks with the same set of rules.\nNetwork for which parameters are valid.\nCreates parameters set for the given network.\nDetermines whether retargeting is disabled for this …\nBitcoin consensus parameters.\nProof of work limit value. It contains the lowest possible …\nExpected amount of time to mine one block.\nDifficulty recalculation interval.\nReads a boolean.\nReads a 16-bit signed integer.\nReads a 32-bit signed integer.\nReads a 64-bit signed integer.\nReads an 8-bit signed integer.\nReads a byte slice.\nReads a 16-bit unsigned integer.\nReads a 32-bit unsigned integer.\nReads a 64-bit unsigned integer.\nReads an 8-bit unsigned integer.\nMinimum blocks including miner confirmation of the total …\nSerde serialization via consensus encoding\nEncodes an object into a vector.\nData and a 4-byte checksum.\nData which can be encoded in a consensus-consistent way.\nDecoding error.\nData which can be encoded in a consensus-consistent way.\nEncoding error.\nHex deserialization error.\nChecksum was invalid.\nAnd I/O error.\nMaximum size, in bytes, of a vector we are allowed to …\nVarInt was encoded in a non-minimal way.\nPurported hex string had odd length.\nTried to allocate an oversized vector.\nParsing error.\nExtensions of Read to decode data as per Bitcoin consensus.\nUnsupported Segwit flag.\nA variable-length unsigned integer.\nExtensions of Write to encode data as per Bitcoin …\nReturns the checksum of the data.\nDecode an object with a well-defined format.\nDecode Self from a size-limited reader.\nEncodes an object with a well-defined format.\nReturns a reference to the raw data without the checksum.\nDeserializes an object from a vector, will error if said …\nDeserialize any decodable type from a hex string, will …\nDeserializes an object from a vector, but will not report …\nOutputs a boolean.\nOutputs a 16-bit signed integer.\nOutputs a 32-bit signed integer.\nOutputs a 64-bit signed integer.\nOutputs an 8-bit signed integer.\nOutputs a byte slice.\nOutputs a 16-bit unsigned integer.\nOutputs a 32-bit unsigned integer.\nOutputs a 64-bit unsigned integer.\nOutputs an 8-bit unsigned integer.\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 raw data without the checksum.\nCreates a new CheckedData computing the checksum of given …\nReads a boolean.\nReads a 16-bit signed integer.\nReads a 32-bit signed integer.\nReads a 64-bit signed integer.\nReads an 8-bit signed integer.\nReads a byte slice.\nReads a 16-bit unsigned integer.\nReads a 32-bit unsigned integer.\nReads a 64-bit unsigned integer.\nReads an 8-bit unsigned integer.\nEncodes an object into a vector.\nEncodes an object into a hex-encoded string.\nThe invalid checksum.\nThe expected checksum.\nThe maximum capacity.\nThe capacity requested.\nThe mainnet parameters.\nParameters that influence chain consensus.\nThe regtest parameters.\nThe signet parameters.\nThe testnet3 parameters.\nThe testnet3 parameters.\nThe testnet4 parameters.\nDetermines whether minimal difficulty may be used for …\nTime when BIP16 becomes active.\nBlock height at which BIP34 becomes active.\nBlock height at which BIP65 becomes active.\nBlock height at which BIP66 becomes active.\nThe maximum attainable target value for these params.\nNumber of blocks with the same set of rules.\nNetwork for which parameters are valid.\nDetermines whether retargeting is disabled for this …\nProof of work limit value. It contains the lowest possible …\nExpected amount of time to mine one block.\nDifficulty recalculation interval.\nMinimum blocks including miner confirmation of the total …\nProvides an instance of string-to-byte decoder.\nProvides an instance of byte-to-string encoder.\nError returned when decoding fails.\nThe decoder state.\nTransforms given bytes and writes to the writer.\nThe encoder state.\nHex-encoding strategy\nError returned when decoder can’t be created.\nConverts error into a type implementing serde::de::Error\nHelper for #[serde(with = "")].\nDeserializes the value as consensus-encoded\nTransform the provided slice and write to the writer.") \ No newline at end of file +searchState.loadedDescShard("bdk_chain", 0, "This crate is a collection of core structures for Bitcoin …\nTrait that “anchors” blockchain data to a specific …\nMaximum BIP32 derivation index.\nBalance, differentiated into various categories.\nA reference to a block in the canonical chain.\nRepresents a service that tracks the blockchain.\nRepresents the observed position of some chain data.\nA checkpoint is a node of a reference-counted linked list …\nIterates over checkpoints backwards.\nRepresents the confirmation block and time of a …\nThe chain data is confirmed as it is anchored in the best …\nA trait to extend the functionality of a miniscript …\nRepresents the unique ID of a descriptor.\nError type.\nA TxOut with as much data as we can retrieve about it\nA wrapper that we use to impl remote traits for types in …\nA tuple of keychain index and T representing the indexed …\nA tuple of keychain K, derivation index (u32) and a T …\nTrait that makes an object mergeable.\nAn iterator for derived script pubkeys.\nSet of parameters sufficient to construct an Anchor.\nData object used to communicate updates about relevant …\nThe chain data is not confirmed.\nReturns the BlockId that the associated blockchain data is …\nTransaction anchors. Anchors tells us a position in the …\nReturns a reference to the inner hash (sha256, sh256d …\nBlock in which the transaction appeared.\nGet the BlockId of the checkpoint.\nThe anchor block.\nBlock’s BlockId.\nThe position of the transaction in outpoint in the overall …\nMaps a ChainPosition<&A> into a ChainPosition<A> by …\nGet the upper bound of the chain data’s confirmation …\nGet the upper bound of the chain data’s confirmation …\nDetermines the upper bound of the confirmation height.\nThe confirmation time of the transaction being anchored.\nConfirmed and immediately spendable balance\nGet a reference to the internal descriptor.\nReturns the descriptor ID, calculated as the sha256 hash …\nReturns the minimum value (in satoshis) at which an output …\nThis method tests for self and other to have equal …\nExtends the checkpoint linked list by a iterator of block …\nExtend this update with other.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a checkpoint from a list of BlockIds in …\nConstruct a checkpoint from the given header and block …\nCreates this wrapper type from the inner hash type.\nGet checkpoint at height.\nGet the best chain’s chain tip.\nGet the block hash of the checkpoint.\nThe hash of the block.\nGet the height of the checkpoint.\nThe height of the block.\nAll coinbase outputs not yet matured\nContains the IndexedTxGraph and associated types. Refer to …\nIndexer provides utilities for indexing transaction data.\nInserts block_id at its height within the chain.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nReturns the inner T.\nDetermines whether block of BlockId exists as an ancestor …\nReturns whether ChainPosition is confirmed or not.\nWhether the utxo is/was/will be spendable with chain tip.\nReturns whether the structure is considered empty.\nWhether the txout is considered mature.\nWhether this output is on a coinbase transaction.\nIterate from this checkpoint in descending height.\nThe LocalChain is a local implementation of ChainOracle.\nTransforms the TxUpdate to have anchors (A) of another …\nMerge another object of the same type onto self.\nConstruct a new base block at the front of a linked list.\nCreate a new script pubkey iterator from descriptor.\nCreate a new script pubkey iterator from descriptor and a …\nThe location of the TxOut.\nGet the previous checkpoint in the chain\nPuts another checkpoint onto the linked list representing …\nIterate checkpoints over a height range.\nSupport for persisting bdk_chain structures to SQLite …\nSeen at times for transactions. This records when a …\nThe txid and chain position of the transaction (if any) …\nHelper types for spk-based blockchain clients.\nTake the value, replacing it with the default value.\nReturns the inner hash (sha256, sh256d etc.).\nGet the whole balance visible to the wallet.\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nUnconfirmed UTXOs generated by a wallet tx\nGet sum of trusted_pending and confirmed coins.\nModule for structures that store and traverse transactions.\nPosition in the block on which the transaction appeared.\nThe TxOut.\nFloating txouts. These are TxOuts that exist but the whole …\nFull transactions. These are transactions that were …\nUnconfirmed UTXOs received from an external wallet\nThe Anchor.\nWhen the chain data is last seen in the mempool.\nWhether the chain data is anchored transitively by a child …\nA Bitcoin address.\nThe different types of addresses.\n0x1: Sign all outputs.\n0x1: Sign all outputs.\n0x81: Sign all outputs but only this input.\n0x81: Sign all outputs but only this input.\nAmount\nMinimum fee rate required to broadcast a transaction.\nConvenience alias for Denomination::Bitcoin.\nbits\nBTC\nMainnet Bitcoin.\nBitcoin block.\nA bitcoin block hash.\ncBTC\nEncoding of 256-bit target as 32-bit float.\nAn always-compressed Bitcoin ECDSA public key\nThe default max_fee_rate value used for extracting …\nFee rate used to compute dust amount.\n0x0: Used when not explicitly specified, defaults to …\nA set of denominations in which amounts can be expressed.\nThe sequence number that enables absolute lock time but …\nThe sequence number that enables replace-by-fee and …\nHashtype of an input’s signature, encoded in the last …\nRepresents fee rate.\nFilter hash, as defined in BIP-157\nFilter header, as defined in BIP-157\nKnown bech32 human-readable parts.\nHash of a transaction according to the legacy signature …\nThe maximum value of an amount.\nThe maximum value of an amount.\nMaximum possible value.\nMaximum possible value.\nThe maximum allowable sequence number.\nThe maximum possible target.\nThe maximum attainable target value on mainnet.\nThe proof of work limit on regtest.\nThe proof of work limit on signet.\nThe proof of work limit on testnet.\nThe maximum allowed weight for a block, see BIP 141 …\nThe maximum value allowed as an amount. Useful for sanity …\nThe maximum value allowed as an amount. Useful for sanity …\nMaximum transaction weight for Bitcoin Core 25.0.\nThe minimum value of an amount.\nThe minimum value of an amount.\nMinimum possible value (0 sat/kwu).\nMinimum possible value (0 wu).\nThe minimum transaction weight for a valid serialized …\nThe Bitcoin mainnet network.\nThe main Bitcoin network.\nData structure that represents a block header paired to a …\nuBTC\nmBTC\nmsat\nThis is used as a “null txout” in consensus signing …\nnBTC\nThe cryptocurrency network to act on.\nWhat kind of network we are on.\n0x2: Sign no outputs — anyone can choose the destination.\n0x2: Sign no outputs — anyone can choose the destination.\n0x82: Sign no outputs and only this input.\n0x82: Sign no outputs and only this input.\nExactly one bitcoin.\nExactly one bitcoin.\nExactly one satoshi.\nExactly one satoshi.\nA script Opcode.\nA reference to a transaction output.\nPay to pubkey hash.\nPay to script hash.\nPay to taproot.\nPay to witness pubkey hash.\nPay to witness script hash.\npBTC\nA Bitcoin ECDSA private key\nA Partially Signed Transaction.\nA hash of a public key.\nA Bitcoin ECDSA public key\nThe regtest network.\nBitcoin’s regtest network.\nConvenience alias for Denomination::Satoshi.\nThe number of bytes that an amount contributes to the size …\nsatoshi\nBitcoin script slice.\nAn owned, growable script.\nA hash of Bitcoin Script bytecode.\nHash of a transaction according to the segwit version 0 …\nBitcoin transaction input sequence number.\nSignedAmount\nBitcoin’s signet network.\n0x3: Sign the output whose index matches this input’s …\n0x3: Sign the output whose index matches this input’s …\n0x83: Sign one output and only this input (see Single for …\n0x83: Sign one output and only this input (see Single for …\nThe tag used for TapNodeHash\nTaproot-tagged hash with tag "TapLeaf".\nThe tag used for TapLeafHash\nTagged hash used in taproot trees.\nTaproot-tagged hash with tag "TapSighash".\nThe tag used for TapSighash\nHashtype of an input’s signature, encoded in the last …\nTaproot-tagged hash with tag "TapTweak".\nThe tag used for TapTweakHash\nA 256 bit integer representing target.\nSome kind of testnet network.\nBitcoin’s testnet network. (In future versions this will …\nBitcoin’s testnet4 network. (In future versions this …\nThe test networks, testnet (testnet3), testnet4, and …\nBitcoin transaction.\nBitcoin transaction input.\nA hash of the Merkle tree branch or root for transactions.\nBitcoin transaction output.\nA bitcoin transaction hash/transaction ID.\nInitial version of witness program. Used for P2WPKH and …\nVersion of witness program used for Taproot P2TR outputs.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nA variable-length unsigned integer.\nThe factor that non-witness serialization data is …\nSegWit version of a public key hash.\nSegWit version of a Bitcoin Script bytecode hash.\nRepresents block weight - the weight of a transaction or …\nThe Witness is the data used to unlock bitcoin since the …\nA hash corresponding to the witness structure commitment …\nA hash corresponding to the Merkle tree root for witness …\nThe segregated witness program.\nVersion of the segregated witness program.\nA 256 bit integer representing work.\nA bitcoin witness transaction ID.\nExtended key identifier as defined in BIP-32.\nAn x-only public key, used for verification of Taproot …\nThe zero amount.\nThe zero amount.\n0 sat/kwu.\n0 wu.\nZero value sequence.\nWhen parsing nBits, Bitcoin Core converts a negative …\nGet the absolute value of this SignedAmount.\nTweaks an XOnlyPublicKey by adding the generator …\nBitcoin addresses.\nGets the address type of the address.\nBitcoin amounts.\nReturns the script data as a byte slice.\nReturns the script data as a mutable byte slice.\nObtains a raw mutable pointer suitable for use with FFI …\nReturns a mutable reference to unsized script.\nObtains a raw const pointer suitable for use with FFI …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to the inner hash (sha256, sh256d …\nReturns a reference to unsized script.\nReturns a reference to the address as if it was unchecked.\nMarks, without any additional checks, network of this …\nReturns a reference to the checked address.\nAssumes the given 32 byte array as hidden TapNodeHash.\nReturns the base size of this input.\nReturns the base transaction size.\nBIP152 Compact Blocks\nBIP 158 Compact Block Filters for Light Clients.\nBIP32 implementation.\nReturns the block height, as encoded in the coinbase …\nReturns the block hash.\nBitcoin block data.\nCreates a new script builder\nCreates a new script builder\nReturns an iterator over script bytes.\nReturn the network’s chain hash (genesis block hash).\nChecks if merkle root of header matches merkle root of the …\nChecks if witness commitment in coinbase matches the …\nGet the absolute value of this SignedAmount. Returns None …\nChecked addition.\nChecked addition. Returns None if overflow occurred.\nChecked addition.\nChecked integer division.\nChecked integer division. Be aware that integer division …\nChecked division.\nChecked division.\nChecked multiplication.\nChecked multiplication. Returns None if overflow occurred.\nChecked multiplication.\nChecked multiplication.\nChecked weight multiplication.\nChecked remainder.\nChecked remainder. Returns None if overflow occurred.\nChecked subtraction.\nChecked subtraction. Returns None if overflow occurred.\nChecked subtraction.\nClassifies an Opcode into a broad class.\nClear the witness.\nLike cmp::Cmp but faster and with no guarantees across …\nReturns the coinbase transaction, if one is present.\nCombines this Psbt with other PSBT as described by BIP 174.\nWhether this public key should be serialized as compressed\nWhether this private key should be serialized as compressed\nComputes the transaction merkle root.\nComputes a “normalized TXID” which does not include …\nComputes the Txid.\nComputes the witness commitment for the block’s …\nComputes the segwit version of the transaction id.\nBitcoin consensus.\nCounts the sigops for this Script using accurate counting.\nCounts the sigops for this Script using legacy counting.\nThe default value of sequence is 0xffffffff.\nDeserialize a value from raw binary data.\nDeserialize a value from raw binary data read from a …\nComputes the popular “difficulty” measure for mining.\nComputes the popular “difficulty” measure for mining …\nCreate an object that implements fmt::Display dynamically …\nCreate an object that implements fmt::Display dynamically …\nCreate an object that implements fmt::Display using …\nCreate an object that implements fmt::Display using …\nReturns the minimum value an output with this script …\nECDSA Bitcoin signatures.\nReturns true if the sequence number enables absolute …\nReturns true if this input enables the absolute::LockTime …\nLike cmp::Eq but faster and with no guarantees across …\nContains error types and other error handling tools.\nExtract the matching txid’s represented by this partial …\nAn alias for extract_tx_fee_rate_limit.\nExtracts the Transaction from a Psbt by filling in the …\nPerform extract_tx_fee_rate_limit without the fee rate …\nExtracts the Transaction from a Psbt by filling in the …\nCalculates transaction fee.\nCalculates fee by multiplying this fee rate by weight, in …\nCalculates fee by multiplying this fee rate by weight, in …\nComputes the filter header from a filter hash and previous …\nReturns the first opcode of the script (if there is any).\nWrites the human-readable assembly representation of the …\nFormat the value of this Amount in the given denomination.\nFormat the value of this SignedAmount in the given …\nFormat the private key to WIF format.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 relative lock-time using time intervals where …\nCreates Work from a big-endian byte array.\nCreates Target from a big-endian byte array.\nCreate a MerkleBlock from a block, that contains proofs …\nConvert from a value expressing bitcoins to an Amount.\nConvert from a value expressing bitcoins to an SignedAmount…\nTreat byte slice as Script\nConverts byte vector into script.\nTreat mutable byte slice as Script\nCreates a Network from the chain hash (genesis block hash).\nComputes the Target value from a compact representation.\nCreates a sequence from a u32 value.\nCreates a EcdsaSighashType from a raw u32.\nCreates a CompactTarget from a consensus encoded u32.\nConstructs a TapSighashType from a raw u8.\nConverts a bitcoind -chain argument name to its equivalent …\nConvert this Amount in floating-point notation with a given\nConvert this SignedAmount in floating-point notation with …\nComputes the CompactTarget from a difficulty adjustment, …\nCreate a MerkleBlock from the block’s header and txids, …\nCreates a relative lock-time using block height.\nCreates a ScriptBuf from a hex string.\nCreates a Sequence from an prefixed hex string.\nCreates Work from a prefixed hex string.\nCreates Target from a prefixed hex string.\nCreates a CompactTarget from an prefixed hex string.\nConvert from a value expressing integer values of bitcoins …\nCreates a new BIP341 TapTweakHash from key and tweak. …\nReturns the XOnlyPublicKey (and it’s Parity) for keypair.\nConstructs Weight from kilo weight units returning None if …\nCreates Work from a little-endian byte array.\nCreates Target from a little-endian byte array.\nCreates a Network from the magic bytes.\nComputes the CompactTarget from a difficulty adjustment.\nComputes branch hash given two hashes of the nodes …\nConstructs Weight from non-witness size.\nComputes the public key as supposed to be used with this …\nComputes the public key as supposed to be used with this …\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreates this wrapper type from the inner hash type.\nCreate an Amount with satoshi precision and the given …\nCreate an SignedAmount with satoshi precision and the …\nConstructs FeeRate from satoshis per 1000 weight units.\nConstructs FeeRate from satoshis per virtual bytes.\nConstructs FeeRate from satoshis per virtual bytes without …\nConstructs an Address from an output script (scriptPubkey).\nComputes the leaf hash from components.\nComputes the TapNodeHash from a script and a leaf version.\nCreates a relative lock-time from seconds, converting the …\nCreates a relative lock-time from seconds, converting the …\nCreates a schnorr public key directly from a slice.\nCreates a Witness object from a slice of bytes slices …\nDeserialize a public key from a slice\nDeserialize a public key from a slice\nDeserialize a private key from a slice\nCreates a EcdsaSighashType from a raw u32.\nConvert from a str to Denomination.\nParse a decimal string as a value in the given …\nParse a decimal string as a value in the given …\nParses amounts with denomination suffix like they are …\nParses amounts with denomination suffix like they are …\nCreates a Sequence from an unprefixed hex string.\nCreates Work from an unprefixed hex string.\nCreates Target from an unprefixed hex string.\nCreates a CompactTarget from an unprefixed hex string.\nCreates a PSBT from an unsigned transaction.\nConstructs Weight from virtual bytes, returning None on …\nConstructs Weight from virtual bytes without an overflow …\nConstructs Weight from virtual bytes panicking on overflow.\nParse WIF encoded private key.\nConstructs Weight from witness size.\nCreates an address from an arbitrary witness program.\nDirectly constructs Weight from weight units.\nDirectly constructs Weight from usize weight units.\nConstructs new compressed ECDSA private key using the …\nBitcoin hash types.\nThe block header\nThe block header\nThe actual ECDSA key\nThe actual ECDSA key\nList of transaction inputs.\nThe corresponding key-value map for each input in the …\nIterates over the script instructions and their indices.\nIterates over the script instructions and their indices …\nIterates over the script instructions.\nIterates over the script instructions while enforcing …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 ScriptBuf into a boxed Script.\nConverts the script into a byte vector.\nConverts a Box<Script> into a ScriptBuf without copying or …\nMarks the network of this address as unchecked.\nReturns true if this Transaction’s absolute timelock is …\nChecks if this is a coinbase transaction.\nReturns whether the script is the empty script.\nReturns true if the witness contains no element.\nReturns true if the transaction itself opted in to be …\nReturns true if the sequence number indicates that the …\nReturns true if the sequence number encodes a block based …\nReturns true if this transactions nLockTime is enabled (…\nReturns true if this is real mainnet bitcoin.\nReturns true if block hash is less than or equal to this …\nChecks whether a script pubkey is a bare multisig output.\nReturns true if this SignedAmount is negative and false if …\nChecks if an OutPoint is “null”.\nCheck if this is an OP_RETURN output.\nChecks whether a script pubkey is a P2PK output.\nChecks whether a script pubkey is a P2PKH output.\nChecks whether a script pubkey is a P2SH output.\nChecks whether a script pubkey is a P2TR output.\nReturns true if this witness program is for a P2TR output.\nChecks whether a script pubkey is a P2WPKH output.\nReturns true if this witness program is for a P2WPKH …\nChecks whether a script pubkey is a P2WSH output.\nReturns true if this witness program is for a P2WPSH …\nReturns true if this SignedAmount is positive and false if …\nChecks whether a script is trivially known to have no …\nChecks whether a script is push only.\nReturns true if the transaction opted-in to BIP125 …\nReturns true if the given pubkey is directly related to …\nReturns true if the supplied xonly public key can be used …\nReturns true if the sequence has a relative lock-time.\nChecks whether or not the address is following Bitcoin …\nReturns true if the sequence number encodes a time …\nReturns the compressed-ness of the underlying secp256k1 …\nParsed addresses do not always have one network. The …\nChecks whether a script pubkey is a Segregated Witness …\nReturns a struct implementing Iterator.\nReturns an iterator for the funding UTXOs of the psbt\nBitcoin keys.\nReturns the last element in the witness, if any.\nThe weight of the TxIn when it’s included in a legacy …\nReturns the length in bytes of the script.\nReturns the number of elements this witness holds.\nBlock height or timestamp. Transaction cannot be included …\nReturns log2 of this work.\nReturn the network magic bytes, which should be encoded …\nReturns true if the address creates a particular script …\nComputes the maximum valid Target threshold allowed for a …\nComputes the maximum valid Target threshold allowed for a …\nComputes the maximum valid Target threshold allowed for a …\nBitcoin merkle tree functions.\nComputes the minimum valid Target threshold allowed for a …\nComputes the minimum valid Target threshold allowed for a …\nReturns the minimum value an output with this script …\nCreates a TxOut with given script and the smallest …\nReturns the minimum value an output with this script …\nCreates a TxOut with given script and the smallest …\nBitcoin network.\nThe network kind on which this key should be used\nCreates a new empty script.\nCreates a new empty script.\nCreates a new witness program, copying the content from …\nCreates a new OutPoint.\nCreates a new empty Witness.\nConstructs compressed ECDSA public key from the provided …\nConstructs compressed ECDSA private key from the provided …\nGenerates OP_RETURN-type of scriptPubkey for the given …\nGenerates P2PK-type of scriptPubkey.\nGenerates P2PKH-type of scriptPubkey.\nGenerates P2SH-type of scriptPubkey with a given hash of …\nGenerates P2TR for script spending path using an internal …\nGenerates P2TR for key spending path for a known …\nGenerates P2WPKH-type of scriptPubkey.\nGenerates P2WSH-type of scriptPubkey with a given hash of …\nConstructs uncompressed (legacy) ECDSA public key from the …\nConstructs uncompressed (legacy) ECDSA private key from …\nGenerates P2WSH-type of scriptPubkey with a given …\nReturn the nth element in the witness, if any\nComputes a “normalized TXID” which does not include …\nCreates a “null” OutPoint.\nList of transaction outputs.\nThe corresponding key-value map for each output in the …\nBitcoin p2p network types.\nReturns the public key if this script is P2PK with a valid …\nCreates a pay to (compressed) public key hash address from …\nCreates a pay to script hash P2SH address from a script.\nCreates a pay to script hash P2SH address from a script …\nCreates a pay to script address that embeds a witness pay …\nCreates a pay to script address that embeds a witness pay …\nCreates a pay to taproot address from an untweaked key.\nCreates a pay to taproot address from an untweaked key.\nCreates a witness required to do a key path spend of a …\nCreates a pay to taproot address from a pre-tweaked output …\nCreates a pay to taproot address from a pre-tweaked output …\nCreates a witness pay to public key address from a public …\nCreates a WitnessProgram from pk for a P2WPKH output.\nCreates a witness required to spend a P2WPKH output.\nReturns the script code used for spending a P2WPKH output …\nCreates the script code used for spending a P2WPKH output.\nReturns the script code used to spend a P2WPKH input.\nReturns the script code used to spend a P2WPKH input.\nCreates a witness pay to script hash address.\nCreates a WitnessProgram from script for a P2WSH output.\nReturns the associated network parameters.\nUnit parsing utilities.\nBitcoin policy.\nSubtraction that doesn’t allow negative SignedAmounts. …\nProof-of-work related integer types.\nThe reference to the previous output that is being used as …\nReturns the witness program.\nGlobal proprietary key-value pairs.\nPartially Signed Bitcoin Transactions.\nGets the pubkey hash for this address if this is a P2PKH …\nReturns bitcoin 160-bit hash of the public key\nReturns bitcoin 160-bit hash of the public key\nReturns the PublicKey for this XOnlyPublicKey.\nCreates a public key from this private key\nPush a new element on the witness, requires an allocation.\nPushes, as a new element on the witness, an ECDSA …\nAdd a single instruction to the script.\nLike push_instruction, but avoids calling reserve to not …\nAdds a single opcode to the script.\nAdds instructions to push some arbitrary data onto the …\nRead the public key from a reader\nRead the public key from a reader\nGet redeemScript following BIP16 rules regarding P2SH …\nChecks whether network of this address is as required.\nPre-allocates at least additional_len bytes if needed.\nPre-allocates exactly additional_len bytes if needed.\nScale by witness factor.\nAdds an OP_VERIFY to the script or replaces the last …\nGets the script hash for this address if this is a P2SH …\nReturns 160-bit hash of the script.\nGenerates a script pubkey spending to this address.\nThe script which must be satisfied for the output to be …\nReturns an iterator over lengths of script_pubkeys in the …\nThe script which pushes values on the stack which will …\nReturns the second-to-last element in the witness, if any.\nThe weight of the TxIn when it’s included in a segwit …\nThe sequence number, which suggests to miners which of two …\nSerializes the key as a byte-encoded x coordinate value …\nUser-facing serialization for Script.\nUser-facing serialization for Script.\nSerialize as raw binary data\nSerialize a value as bytes in hex.\nSerialize the PSBT into a writer.\nSignature hash implementation (used in transaction …\nReturns the sighash message to sign an ECDSA input along …\nAttempts to create all the required signatures for this …\nSignature\nReturns a number representing sign of this SignedAmount.\nReturns the total number of bytes that this output …\nReturns the number of bytes this witness contributes to a …\nReturns the number of bytes this varint contributes to a …\nReturns the spending utxo for this PSBT’s input at …\nTweaks an untweaked public key with corresponding public …\nBitcoin Taproot.\nGet the taproot annex following BIP341 rules.\nGet the taproot control block following BIP341 rules.\nGet Tapscript following BIP341 rules regarding accounting …\nComputes leaf hash of tapscript.\nReturns the third-to-last element in the witness, if any.\nGets the address data from this address.\nReturns the human-readable assembly representation of the …\nConverts Work to a big-endian byte array.\nConverts Target to a big-endian byte array.\nExpress this Amount as a floating-point value in Bitcoin.\nExpress this SignedAmount as a floating-point value in …\nReturns a copy of the script data.\nSerialize the public key to bytes\nSerializes the public key.\nSerialize the private key to bytes\nComputes the compact value from a Target representation.\nReturns the consensus encoded u32 representation of this …\nReturns the inner 32bit integer value of Sequence.\nConverts a Network to its equivalent bitcoind -chain …\nConverts this witness version to a GF32 field element.\nExpress this Amount as a floating-point value in the given …\nExpress this SignedAmount as a floating-point value in the …\nFormats the script as lower-case hex.\nConverts to kilo weight units rounding down.\nConverts Work to a little-endian byte array.\nConverts Target to a little-endian byte array.\nReturns integer version number representation for a given …\nComputes the P2SH output corresponding to this redeem …\nComputes P2TR output with a given internal key and a …\nComputes the P2WSH output corresponding to this …\nCreates a URI string bitcoin:address optimized to be …\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nReturns the inner hash (sha256, sh256d etc.).\nCreates a relative::LockTime from this Sequence number.\nGets the number of satoshis in this Amount.\nGets the number of satoshis in this SignedAmount.\nReturns raw fee rate.\nConverts to sat/vB rounding up.\nConverts to sat/vB rounding down.\nConverts a TapTweakHash into a Scalar ready for use with …\nConvert to a signed amount.\nSerialize the public key into a SortKey.\nGet a string number of this Amount in the given …\nGet a string number of this SignedAmount in the given …\nGet a formatted string of this Amount in the given …\nGet a formatted string of this SignedAmount in the given …\nConverts this Work to Target.\nConverts EcdsaSighashType to a u32 sighash flag.\nEncodes Opcode as a byte.\nConvert to an unsigned amount.\nConverts to vB rounding up.\nConverts to vB rounding down.\nConvenience method to create an array of byte-arrays from …\nGet WIF encoding of this private key.\nConverts this Target to Work.\nReturns raw weight units.\nCounts the total number of sigops.\nReturns the total block size.\nReturns the total number of bytes that this input …\nReturns the total transaction size.\nVerifies that a tweak produced by XOnlyPublicKey::add_tweak…\nReturns a reference to the input at input_index if it …\nReturns a reference to the output at output_index if it …\nList of transactions contained in the block\nComputes the Txid.\nThe referenced transaction’s txid.\nTransactions making up a partial merkle tree\nUnchecked addition.\nUnchecked addition.\nUnchecked subtraction.\nUnchecked subtraction.\nUnknown global key-value pairs.\nGet the absolute value of this SignedAmount returning …\nThe unsigned transaction, scriptSigs and witnesses for …\nThe value of the output, in satoshis.\nChecks that sig is a valid schnorr signature for msg using …\nChecks that sig is a valid ECDSA signature for msg using …\nChecks that sig is a valid ECDSA signature for msg using …\nReturns the witness program version.\nThe protocol version, is currently expected to be 1 or 2 …\nThe version number of this PSBT. If omitted, the version …\nThe index of the referenced output in its transaction’s …\nReturns the “virtual size” (vsize) of this transaction.\nReturns the weight of the block.\nThe weight of this output.\nReturns the weight of this transaction, as defined by …\nCreates a new empty script with pre-allocated capacity.\nWitness data: an array of byte-arrays. Note that this …\nGets the witness program for this address if this is a …\nComputes the merkle root of transactions hashed for …\nGet the p2wsh witness script following BIP141 rules.\nReturns witness version of the script, if any, assuming …\nReturns bitcoin 160-bit hash of the public key for witness …\nReturns bitcoin 160-bit hash of the public key for witness …\nWrite the public key into a writer\nWrite the public key into a writer\nReturns 256-bit hash of the script for P2WSH outputs.\nComputes the segwit version of the transaction id.\nA global map from extended public keys to the used key …\nA Bitcoin address.\nThe data encoded by an Address.\nThe different types of addresses.\nBase58 error.\nBech32 segwit decoding error.\nAddress size more than 520 bytes is not allowed.\nError while generating address from script.\nIndicates whether this NetworkValidation is NetworkChecked …\nInvalid base58 payload data length for legacy address.\nDecoded base58 data was an invalid length.\nInvalid legacy address prefix in base58 data payload.\nInvalid legacy address prefix in decoded base58 data.\nKnown bech32 human-readable parts.\nLegacy address is too long.\nLegacy base58 address was too long, max 50 characters.\nThe main Bitcoin network.\nMarker that address’s network has been successfully …\nMarker that address’s network has not yet been …\nMarker of status of address’s network validation. See …\nAddress’s network differs from required one.\nAddress’s network differs from required one.\nPay to pubkey hash.\nData encoded by a P2PKH address.\nPay to script hash.\nData encoded by a P2SH address.\nError while generating address from a p2sh script.\nPay to taproot.\nPay to witness pubkey hash.\nPay to witness script hash.\nAddress parsing error.\nThe regtest network.\nData encoded by a Segwit address.\nThe test networks, testnet (testnet3), testnet4, and …\nAddress type is either invalid or not supported in …\nTried to parse an unknown HRP.\nUnknown HRP error.\nScript is not a p2pkh, p2sh or witness program.\nA witness program error.\nA witness program error.\nA witness version construction error.\nA witness version conversion/parsing error.\nError code for the address module.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid payload length.\nReturns the invalid prefix.\nReturns the invalid legacy address length.\nThe pubkey hash used to encumber outputs to this address.\nThe script hash used to encumber outputs to this address.\nThe witness program used to encumber outputs to this …\nBase58 error.\nBech32 segwit decoding error.\nAddress size more than 520 bytes is not allowed.\nError while generating address from script.\nInvalid base58 payload data length for legacy address.\nDecoded base58 data was an invalid length.\nInvalid legacy address prefix in base58 data payload.\nInvalid legacy address prefix in decoded base58 data.\nLegacy address is too long.\nLegacy base58 address was too long, max 50 characters.\nAddress’s network differs from required one.\nAddress’s network differs from required one.\nError while generating address from a p2sh script.\nAddress parsing error.\nAddress type is either invalid or not supported in …\nTried to parse an unknown HRP.\nUnknown HRP error.\nScript is not a p2pkh, p2sh or witness program.\nA witness program error.\nA witness program error.\nA witness version construction error.\nA witness version conversion/parsing error.\nAmount\nbits\nBTC\ncBTC\nCalculate the sum over the iterator using checked …\nA set of denominations in which amounts can be expressed.\nA helper/builder that displays amount with specified …\nInput string was too large.\nInvalid character in input.\nuBTC\nmBTC\nmsat\nA digit was expected but not found.\nnBTC\nThe amount is too big or too small.\nAn error during amount parsing.\npBTC\nsatoshi\nSignedAmount\nAmount has higher precision than supported by the type.\nCalculate the sum over the iterator using checked …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThis module adds serde serialization and deserialization …\nMakes subsequent calls to Display::fmt display …\nThis trait is used only to avoid code duplication and …\nThis trait is only for internal Amount type …\nSerialize and deserialize Amount as JSON numbers …\nSerialize and deserialize Amount as real numbers …\nSerialize and deserialize Option<Amount> as JSON numbers …\nSerialize and deserialize Option<Amount> as real numbers …\nInvalid character while decoding.\nAn error occurred during base58 decoding (with checksum).\nChecksum was not correct.\nFound a invalid ASCII byte while decoding base58 string.\nA UTF-8–encoded, growable string.\nChecked data was too short.\nA contiguous growable array type, written as Vec<T>, short …\nReturns a reference to the underlying allocator.\nMoves all the elements of other into self, leaving other …\nReturns a byte slice of this String’s contents.\nReturns an unsafe mutable pointer to the vector’s …\nExtracts a mutable slice of the entire vector.\nConverts a String into a mutable string slice.\nReturns a mutable reference to the contents of this String.\nReturns a raw pointer to the vector’s buffer, or a …\nExtracts a slice containing the entire vector.\nExtracts a string slice containing the entire String.\nReturns the total number of elements the vector can hold …\nReturns this String’s capacity, in bytes.\nClears the vector, removing all values.\nTruncates this String, removing all contents.\nOverwrites the contents of self with a clone of the …\nClones the contents of source into self.\nDecodes a base58-encoded string into a byte vector.\nDecodes a base58check-encoded string into a byte vector …\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<T>.\nCreates an empty String.\nRemoves the specified range from the vector in bulk, …\nRemoves the specified range from the string in bulk, …\nEncodes data as a base58 string (see also …\nEncodes data as a base58 string including the checksum.\nEncodes a slice as base58, including the checksum, into a …\nError code for the base58 crate.\nClones and appends all elements in a slice to the Vec.\nCopies elements from src range to the end of the vector.\nCopies elements from src range to the end of the string.\nCreates an iterator which uses a closure to determine if …\nReturns the argument unchanged.\nReturns the argument unchanged.\nAllocate a Vec<T> and fill it by cloning s’s items.\nAllocate a Vec<T> and move s’s items into it.\nConverts a BinaryHeap<T> into a Vec<T>.\nConverts the given String to a vector Vec that holds …\nConvert a clone-on-write slice into a vector.\nAllocate a Vec<T> and fill it by cloning s’s items.\nTurn a VecDeque<T> into a Vec<T>.\nAllocate a Vec<T> and fill it by cloning s’s items.\nConverts a CString into a Vec<u8>.\nAllocate a Vec<u8> and fill it with a UTF-8 string.\nReturns the argument unchanged.\nAllocate a Vec<T> and fill it by cloning s’s items.\nConvert a boxed slice into a vector by transferring …\nConverts a &str into a String.\nAllocates an owned String from a single character.\nReturns the argument unchanged.\nConverts a &String into a String.\nConverts a &mut str into a String.\nConverts the given boxed str slice to a String. It is …\nConverts a clone-on-write string to an owned instance of …\nCreates a Vec<T> directly from a pointer, a length, and a …\nCreates a new String from a pointer, a length and a …\nCreates a Vec<T, A> directly from a pointer, a length, 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 an element at position index within the vector, …\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 the vector into Box<[T]>.\nConverts this String into a Box<str>.\nConverts a String into a byte vector.\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 String into its raw components: …\nDecomposes a Vec<T> into its raw components: …\nReturns the ASCII byte that is not a valid base58 …\nReturns true if the vector contains no elements.\nReturns true if this String has a length of zero, and false…\nConsumes and leaks the Vec, returning a mutable reference …\nConsumes and leaks the String, returning a mutable …\nReturns the number of elements in the vector, also …\nReturns the length of this String, in bytes, not chars or …\nConstructs a new, empty Vec<T>.\nCreates a new empty String.\nConstructs a new, empty Vec<T, A>.\nRemoves the last element from a vector and returns it, or …\nRemoves the last character from the string buffer and …\nRemoves and returns the last element in a vector if the …\nAppends an element to the back of a collection.\nAppends the given char to the end of this String.\nAppends a given string slice onto the end of this String.\nAppends an element if there is sufficient spare capacity, …\nRemoves and returns the element at position index within …\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 more elements to …\nReserves capacity for at least additional bytes more than …\nReserves the minimum capacity for at least additional more …\nReserves the minimum capacity for at least additional …\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 characters 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 this String with a lower bound.\nShrinks the capacity of the vector as much as possible.\nShrinks the capacity of this String to match its length.\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.\nSplits the string into two at the given byte index.\nRemoves an element from the vector and returns it.\nShortens the vector, keeping the first len elements and …\nShortens this String to the specified length.\nTries to reserve capacity for at least additional more …\nTries to reserve capacity for at least additional bytes …\nTries to reserve the minimum capacity for at least …\nTries to reserve the minimum capacity for at least …\nConstructs a new, empty Vec<T> with at least the specified …\nCreates a new empty String 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 …\nCreates a new empty String with at least the specified …\nConstructs a new, empty Vec<T, A> with at least the …\nInvalid character while decoding.\nAn error occurred during base58 decoding (with checksum).\nChecksum was not correct.\nChecksum was not correct.\nFound a invalid ASCII byte while decoding base58 string.\nChecked data was too short.\nThe decode base58 data was too short (require at least 4 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the incorrect checksum along with the expected …\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid base58 string length (require at least …\nThe config type used by this engine\nErrors that can occur while decoding.\nA DecodeError occurred\nThe decode estimate used by this engine\nErrors that can occur while decoding into a slice.\nErrors that can occur while encoding into a slice.\nAn Engine provides low-level encoding and decoding …\nAn invalid byte was found in the input. The offset and …\nThe last non-padding input symbol’s encoded 6 bits have …\nThe length of the input is invalid. A typical cause of …\nThe nature of the padding was not as configured: absent or …\nThe provided slice is too small.\nThe provided slice may be too small.\nProvides Alphabet and constants for alphabets commonly …\nReturns the config for this engine.\nDecode base64 using the STANDARD engine.\nDecode the input into a new Vec.\nDecode from string reference as octets using the specified …\nDecode the input into the provided output slice.\nDecode from string reference as octets.\nDecode the input into the provided output slice.\nDecode the input into the provided output slice.\nDecode the input into the supplied buffer.\nReturns a conservative estimate of the decoded size of …\nEnables base64’d output anywhere you might use a Display …\nEncode arbitrary octets as base64 using the STANDARD engine…\nEncode arbitrary octets as base64 using the provided Engine…\nEncode arbitrary octets as base64 using the provided Engine…\nEncode arbitrary octets as base64 into a supplied slice.\nEncode arbitrary octets as base64 into a supplied String.\nEncode arbitrary octets as base64 into a supplied slice. …\nEncode arbitrary octets as base64 into a supplied String. …\nCalculate the base64 encoded length for a given input …\nProvides the Engine abstraction and out of the box …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nPreconfigured engines for common use cases.\nImplementations of io::Read to transparently decode base64.\nImplementations of io::Write to transparently handle …\nAn alphabet defines the 64 ASCII characters (symbols) used …\nThe bcrypt alphabet.\nThe alphabet used in BinHex 4.0 files.\nThe crypt(3) alphabet (with . and / as the first two …\nAll bytes must be unique\nThe alphabet used in IMAP-modified UTF-7 (with + and ,).\nAlphabets must be 64 ASCII bytes\nPossible errors when constructing an Alphabet from a str.\n= cannot be used\nThe standard alphabet (with + and /) specified in RFC 4648.\nThe URL-safe alphabet (with - and _) specified in RFC 4648.\nAll bytes must be printable (in the range [32, 126]).\nCreate a &str from the symbols in the Alphabet\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCreate an Alphabet from a string of 64 unique printable …\nA convenience wrapper for base64’ing bytes into a format …\nReturns the argument unchanged.\nCalls U::from(self).\nCreate a Base64Display with the provided engine.\nThe minimal level of configuration that engines must …\nThe config type used by this engine\nThe decode estimate used by an engine implementation. …\nThe decode estimate used by this engine\nMetadata about the result of a decode operation\nControls how pad bytes are handled when decoding.\nAn Engine provides low-level encoding and decoding …\nA general-purpose base64 engine.\nContains configuration parameters for base64 encoding and …\nCanonical padding is allowed, but any fewer padding bytes …\nPadding must be canonical (0, 1, or 2 = as needed to …\nPadding must be absent – for when you want predictable …\nReturns the config for this engine.\nDecode the input into a new Vec.\nDecode the input into the provided output slice.\nDecode the input into the provided output slice.\nDecode the input into the supplied buffer.\nReturns a conservative (err on the side of too big) …\nDelegates to GeneralPurposeConfig::new.\nEncode arbitrary octets as base64 using the provided Engine…\nReturns true if padding should be added after the encoded …\nEncode arbitrary octets as base64 into a supplied slice. …\nEncode arbitrary octets as base64 into a supplied String. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nProvides the GeneralPurpose engine and associated config …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a GeneralPurpose engine from an Alphabet.\nCreate a new config with padding = true, …\nCreate a new config based on self with an updated …\nCreate a new config based on self with an updated …\nCreate a new config based on self with an updated padding …\nA general-purpose base64 engine.\nContains configuration parameters for base64 encoding and …\nDon’t add padding when encoding, and require no padding …\nInclude padding bytes when encoding, and require that they …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::STANDARD …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nA GeneralPurpose engine using the alphabet::URL_SAFE …\nThe config type used by this engine\nThe decode estimate used by this engine\nAn Engine provides low-level encoding and decoding …\nReturns the config for this engine.\nDecode the input into a new Vec.\nDecode the input into the provided output slice.\nDecode the input into the provided output slice.\nDecode the input into the supplied buffer.\nEncode arbitrary octets as base64 using the provided Engine…\nEncode arbitrary octets as base64 into a supplied slice. …\nEncode arbitrary octets as base64 into a supplied String. …\nA Read implementation that decodes base64 data read from …\nReturns the argument unchanged.\nCalls U::from(self).\nUnwraps this DecoderReader, returning the base reader …\nCreate a new decoder that will read from the provided …\nDecode input from the wrapped reader.\nA Write implementation that base64-encodes data using the …\nA Write implementation that base64 encodes data before …\nAn abstraction around consuming strs produced by base64 …\nConsume the base64 encoded data in buf\nEncode all remaining buffered data and write it, including …\nBecause this is usually treated as OK to call multiple …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a EncoderStringWriter that will append to the …\nCalls U::from(self).\nCalls U::from(self).\nUnwraps this EncoderWriter, returning the base writer it …\nEncode all remaining buffered data, including any trailing …\nCreate a new encoder that will write to the provided …\nCreate a EncoderStringWriter that will encode into a new …\nEncode input and then write to the delegate writer.\nNumeric value maps to bech32 character: 29 == “a”.\nThe bech32 checksum algorithm, defined in BIP-173.\nThe bech32m checksum algorithm, defined in BIP-350.\nExtension trait for byte iterators which provides an …\nNumeric value maps to bech32 character: 24 == “c”.\nThe number of characters in the checksum.\nThe length of the code.\nTrait defining a particular checksum.\nNo valid bech32 or bech32m checksum.\nNumeric value maps to bech32 character: 13 == “d”.\nAn error while decoding a bech32 string.\nNumeric value maps to bech32 character: 25 == “e”.\nAn error while encoding a bech32 string.\nAn error while encoding a bech32 string.\nNumeric value maps to bech32 character: 9 == “f”.\nAn element in GF(32), the finite field containing elements …\nExtension trait for field element iterators.\nEncode to formatter failed.\nNumeric value maps to bech32 character: 8 == “g”.\nThe coefficients of the generator polynomial, except the …\nNumeric value maps to bech32 character: 23 == “h”.\nThe human-readable part (human readable prefix before the …\nNumeric value maps to bech32 character: 18 == “j”.\nNumeric value maps to bech32 character: 22 == “k”.\nNumeric value maps to bech32 character: 31 == “l”.\nNumeric value maps to bech32 character: 27 == “m”.\nAn unsigned integer type capable of holding a packed …\nNumeric value maps to bech32 character: 19 == “n”.\nThe “null checksum” used on bech32 strings for which …\nNumeric value maps to bech32 character: 1 == “p”.\nParsing failed.\nNumeric value maps to bech32 character: 0 == “q”.\nNumeric value maps to bech32 character: 3 == “r”.\nNumeric value maps to bech32 character: 16 == “s”.\nNumeric value maps to bech32 character: 11 == “t”.\nThe residue, modulo the generator polynomial, that a valid …\nEncoding HRP and data into a bech32 string exceeds maximum …\nEncoding HRP and data into a bech32 string exceeds maximum …\nNumeric value maps to bech32 character: 28 == “u”.\nNumeric value maps to bech32 character: 12 == “v”.\nNumeric value maps to bech32 character: 14 == “w”.\nEncode to writer failed.\nNumeric value maps to bech32 character: 6 == “x”.\nNumeric value maps to bech32 character: 4 == “y”.\nNumeric value maps to bech32 character: 2 == “z”.\nNumeric value maps to bech32 character: 15 == “0”.\nNumeric value maps to bech32 character: 10 == “2”.\nNumeric value maps to bech32 character: 17 == “3”.\nNumeric value maps to bech32 character: 21 == “4”.\nNumeric value maps to bech32 character: 20 == “5”.\nNumeric value maps to bech32 character: 26 == “6”.\nNumeric value maps to bech32 character: 30 == “7”.\nNumeric value maps to bech32 character: 7 == “8”.\nNumeric value maps to bech32 character: 5 == “9”.\nReturns this human-readable part as bytes.\nReturns this human-readable part as str.\nCreates a byte iterator over the ASCII byte values (ASCII …\nAdapts the byte iterator to output GF32 field elements …\nCreates a character iterator over the ASCII characters of …\nDecodes a bech32 encoded string.\nEncodes data as a lowercase bech32 encoded string.\nEncodes data as a lowercase bech32 encoded string.\nEncodes data to a writer (fmt::Write) as a lowercase …\nEncodes data to a writer (io::Write) as a lowercase bech32 …\nEncodes data to a writer (fmt::Write) as a lowercase …\nEncodes data to a writer (io::Write) as a lowercase bech32 …\nEncodes data as an uppercase bech32 encoded string.\nEncodes data to a writer (fmt::Write) as a uppercase …\nEncodes data to a writer (io::Write) as a uppercase bech32 …\nChecks that encoding hrp and data creates a code that is …\nAdapts the Fe32 iterator to output bytes instead.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 field element from a single bech32 character.\nCreates a field element from a single bech32 character.\nRe-exports the hrp types from primitives::hrp to make …\nCalls U::from(self).\nCalls U::from(self).\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 HRP is valid on the Bitcoin network …\nReturns true if this HRP is valid on the Bitcoin regtest …\nReturns true if this HRP is valid on the Bitcoin signet …\nReturns true if this HRP is valid on the Bitcoin testnet …\nReturns true if this HRP is valid according to the bips.\nIterator over all field elements, in alphabetical order.\nReturns the length (number of characters) of the …\nCreates a lowercase iterator over the byte values (ASCII …\nCreates a lowercase character iterator over the ASCII …\nParses the human-readable part checking it is valid as …\nParses the human-readable part (see Hrp::parse for full …\nProvides the internal nuts and bolts that enable bech32 …\nSanity checks that the various constants of the trait are …\nSegregated Witness API - enables typical usage for …\nConverts the field element to a lowercase bech32 character.\nReturns this human-readable part as a lowercase string.\nConverts the field element to a 5-bit u8, with bits …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nTries to create an Fe32 type from a signed source number …\nAdapts the Fe32 iterator to encode the field elements into …\nThe human-readable part used by the Bitcoin mainnet …\nThe human-readable part used when running a Bitcoin …\nThe human-readable part (human readable prefix before the …\nThe human-readable part used by the Bitcoin testnet …\nThe bech32 checksum algorithm, defined in BIP-173.\nThe bech32m checksum algorithm, defined in BIP-350.\nThe “null checksum” used on bech32 strings for which …\nDegree-2 BCH code checksum.\nDecoding of bech32 encoded strings as specified by BIP-173 …\nBech32 address encoding.\nGF32 - Galois Field over 32 elements.\nProvides an Hrp type that represents the human-readable …\nIterator Adaptors.\nSegregated Witness functionality - useful for enforcing …\nThe number of characters in the checksum.\nThe length of the code.\nTrait defining a particular checksum.\nA checksum engine, which can be used to compute or verify …\nThe coefficients of the generator polynomial, except the …\nIterator that yields the field elements that are input …\nAn unsigned integer type capable of holding a packed …\nThe one constant, for which stdlib provides no existing …\nTrait describing an integer type which can be used as a “…\nA placeholder type used as part of the NoChecksum “…\nThe residue, modulo the generator polynomial, that a valid …\nThe number of fe32s that can fit into the type; computed …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nAdds a single gf32 element to the checksum engine.\nFeeds hrp into the checksum engine.\nInputs the target residue of the checksum.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nMultiply the polynomial by x, drop its highest coefficient …\nCreates an iterator that yields the field elements of hrp …\nConstructs a new checksum engine with no data input.\nReturns for the current checksum residue.\nSanity checks that the various constants of the trait are …\nConvert an iterator of Results into FallibleIterator by …\nExtracts the coefficient of the x^n from the packed …\nIterator adaptor that maps an iterator of valid bech32 …\nAn iterator over a parsed HRP string data as bytes.\nAn error with the characters of the input string.\nCharacter errors in a bech32 encoded string.\nAn HRP string that has been parsed and had the checksum …\nAn error while constructing a CheckedHrpstring type.\nInvalid checksum.\nInvalid checksum.\nErrors in the checksum of a bech32 encoded string.\nString exceeds maximum allowed length.\nEncoding HRP and data into a bech32 string exceeds the …\nAn iterator over a parsed HRP string data as field …\nThe human-readable part is invalid.\nSome part of the string contains an invalid character.\nThe checksummed string is not a valid length.\nThe checksum residue is not valid for the data.\nInvalid witness version (must be 0-16 inclusive).\nString does not contain the separator character.\nThe whole string must be of one case.\nNo data found after removing the checksum.\nThe data payload is padded with non-zero bits.\nNo characters after the separator.\nInvalid padding on the witness data.\nError validating the padding bits on the witness data.\nError while parsing the encoded address string.\nEncoding HRP, witver, and program into an address exceeds …\nAn valid length HRP string that has been parsed, had the …\nAn error while constructing a SegwitHrpstring type.\nString exceeds maximum allowed length.\nThe data payload has too many bits of padding.\nError while parsing the encoded address string.\nAn HRP string that has been parsed but not yet had the …\nErrors when parsing a bech32 encoded string.\nInvalid witness length.\nReturns an iterator that yields the data part of the …\nReturns an iterator that yields the data part, excluding …\nThe checksum specific code length.\nReturns the data part as ASCII bytes i.e., everything …\nReturns a partial slice of the data part, as ASCII bytes, …\nReturns a partial slice of the data part, as ASCII bytes, …\nThe length of the string if encoded with checksum.\nReturns an iterator that yields the data part of 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.\nValidates that data has a valid checksum for the Ck …\nReturns true if the HRP is “bc” or “tb”.\nReturns the human-readable part.\nReturns the human-readable part.\nReturns the human-readable part.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nParses an bech32 encode string and constructs a …\nParses and validates an HRP string, without treating the …\nParses an HRP string, treating the first data character as …\nParses an HRP string, treating the first data character as …\nRemoves the checksum for the Ck algorithm and returns an …\nAttempts to remove the first byte of the data part, …\nAttempts to remove the first byte of the data part, …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nValidates that data has a valid checksum for the Ck …\nValidates that data has a valid checksum for the Ck …\nConverts this type to a SegwitHrpstring after validating …\nValidates the segwit padding rules.\nValidates the segwit witness length rules.\nReturns the segwit witness version if there is one.\nReturns the segwit witness version if there is one.\nReturns the witness version.\nIterator adaptor which takes a stream of ASCII field …\nIterator adaptor which takes a stream of field elements, …\nThe Encoder builds iterators that can be used to encode …\nIterator adaptor for a checksummed iterator that inputs …\nIterator adaptor that just prepends a single character to …\nReturns an iterator that yields the bech32 encoded address …\nReturns an iterator that yields the bech32 encoded address …\nReturns an iterator that yields the field elements that go …\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).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nCreates a WitnessVersionIter.\nAdapts the Fe32Iter iterator to yield characters …\nAdapts the CharIter iterator to yield bytes representing …\nCreates a Fe32Iter which yields all the field elements …\nConstructs a new bech32 encoder.\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nAdds witness_version to the encoder (as first byte of …\nAn element in GF(32), the finite field containing elements …\nA galois field error when converting from a character.\nTried to interpret a character as a GF32 element but it is …\nTried to interpret a byte as a GF32 element but its …\nTried to interpret an integer as a GF32 element but it …\nTried to interpret a character as a GF32 element but it is …\nA galois field error when converting from an integer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThe human-readable part used by the Bitcoin mainnet …\nThe human-readable part used when running a Bitcoin …\nIterator over bytes (ASCII values) of the human-readable …\nIterator over ASCII characters of the human-readable part.\nThe human-readable part is empty.\nErrors encountered while checking the human-readable part …\nThe human-readable part (human readable prefix before the …\nByte value not within acceptable US-ASCII range.\nIterator over lowercase bytes (ASCII characters) of the …\nIterator over lowercase ASCII characters of the …\nThe human-readable part cannot mix upper and lower case.\nFound a non-ASCII character.\nThe human-readable part used by the Bitcoin testnet …\nThe human-readable part is too long.\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).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nExtension trait for byte iterators which provides an …\nIterator adaptor that converts bytes to GF32 elements.\nIterator adaptor for field-element-yielding iterator, …\nExtension trait for field element iterators.\nIterator adaptor that converts GF32 elements to bytes.\nAdapts the byte iterator to output GF32 field elements …\nAdapts the Fe32 iterator to output bytes instead.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nCreates a new checksummed iterator which adapts a data …\nCreates a new checksummed iterator which adapts a data …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nAdapts the Fe32 iterator to encode the field elements into …\nThe segwit v0 witness is not 20 or 32 bytes long.\nField element does not represent a valid witness version.\nThe maximum enforced string length of a segwit address.\nThe witness data is too long.\nThe witness data is too short.\nThe field element representing segwit version 0.\nThe field element representing segwit version 1 (taproot).\nWitness program invalid because of incorrect length.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nReturns true if length represents a valid witness program …\nReturns true if given field element represents a valid …\nValidates the segwit witness program length rules for …\nChecks that the given field element represents a valid …\nAn error while decoding a segwit address.\nAn error while constructing a SegwitHrpstring type.\nWriting to formatter failed.\nEncoding HRP, witver, and program into a bech32 string …\nThe field element representing segwit version 0.\nThe field element representing segwit version 1 (taproot).\nInvalid witness length.\nInvalid witness version (must be 0-16 inclusive).\nDecodes a segwit address.\nEncodes a segwit address.\nEncodes a segwit address to a writer (fmt::Write) using …\nEncodes a segwit address to a writer (io::Write) using …\nEncodes a segwit address to a writer (fmt::Write) using …\nEncodes a segwit address to a writer (io::Write) using …\nEncodes a segwit address to a writer (fmt::Write) using …\nEncodes a segwit address to a io::Write writer using …\nEncodes a segwit version 0 address.\nEncodes a segwit version 1 address.\nReturns the length of the address after encoding HRP, …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nA BlockTransactions structure is used to provide some of …\nA BlockTransactionsRequest structure is used to list …\nA BIP-152 error\nA structure to relay a block header, short IDs, and a …\nThe prefill slice provided was invalid.\nA PrefilledTransaction structure is used in …\nShort transaction IDs are used to represent a transaction …\nA transaction index is requested that is out of range from …\nAn unknown version number was used.\nReturns a reference the underlying bytes.\nConverts the object to a mutable raw pointer.\nConverts the object to a raw pointer.\nThe blockhash of the block which the transactions being …\nThe blockhash of the block which the transactions being …\nCalculate the SipHash24 keys used to calculate short IDs.\nPanics\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a new HeaderAndShortIds from a full block.\nCreates Self from a hex string.\nConstruct a BlockTransactions from a …\nThe header of the block being provided.\nThe index of the transaction in the block.\nThe indexes of the transactions being requested in 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).\nReturns whether the object, as an array, is empty. Always …\nReturns the length of the object as an array.\nA nonce for use in short transaction ID calculations.\nUsed to provide the coinbase transaction and a select few …\nThe short transaction IDs calculated from the transactions …\nReturns the underlying bytes.\nThe transactions provided.\nThe actual transaction.\nCalculate the short ID with the given (w)txid and using …\nBitwise stream reader.\nBitwise stream writer.\nA block filter, as described by BIP 158.\nReads and interprets a block filter.\nCompiles and writes a block filter.\nErrors for blockfilter.\nFilter hash, as defined in BIP-157\nFilter header, as defined in BIP-157\nGolomb-Rice encoded filter reader.\nGolomb-Rice encoded filter writer.\nIO error reading or writing binary serialization of the …\nMissing UTXO, cannot calculate script filter.\nAdds an arbitrary element to filter.\nAdds data to the filter.\nAdds consumed output scripts of a block to filter.\nAdds output scripts of the block to filter (excluding …\nGolomb encoded filter\nComputes this filter’s ID in a chain of filters (see BIP …\nWrites the block filter.\nWrites the filter to the wrapped writer.\nflush bits not yet written.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nReturns true if all queries match against this …\nReturns true if all queries match against this …\nReturns true if all queries match against this BlockFilter.\nReturns true if any query matches against this …\nReturns true if any query matches against this …\nReturns true if any query matches against this BlockFilter.\nCreates a new BlockFilterWriter from block.\nCreates a new BlockFilterReader from block_hash.\nCreates a new GcsFilterReader with specific seed to …\nCreates a new GcsFilterWriter wrapping a generic writer, …\nCreates a new BitStreamReader that reads bitwise from a …\nCreates a new BitStreamWriter that writes bitwise to a …\nCreates a new filter from pre-computed data.\nComputes a SCRIPT_FILTER that contains spent and output …\nReads nbit bits, returning the bits in a u64 starting with …\nWrites nbits bits from data.\nBase58 encoding error\nA pk->pk derivation was attempted on a hardened key\nA chain code\nA child number for a derived key\nA BIP-32 derivation path.\nAn iterator over children of a DerivationPath.\nA BIP32 error\nThe old name for xpriv, extended public key.\nThe old name for xpub, extended public key.\nThe old name for xpriv, extended public key (with a …\nThe old name for xpub, extended public key (with a …\nA fingerprint\nHardened key\nHexadecimal decoding error\nTrait that allows possibly failable conversion from a type …\nBase58 decoded data was an invalid length.\nDecoded base58 data was an invalid length.\nA child number was provided that was out of range\nInvalid childnumber format.\nInvalid derivation path format.\nPublicKey hex should be 66 or 130 digits long.\nFull information on the used extended public key: …\nNon-hardened key\nA secp256k1 error occurred\nUnknown version magic bytes\nEncoded extended key data has wrong length\nExtended key identifier as defined in BIP-32.\nExtended private key\nExtended public key\nReturns a reference the underlying bytes.\nReturns a reference the underlying bytes.\nConverts the object to a mutable raw pointer.\nConverts the object to a mutable raw pointer.\nConverts the object to a raw pointer.\nConverts the object to a raw pointer.\nChain code\nChain code\nChain code\nChain code\nChain code\nChain code\nCreate a new DerivationPath that is a child of this one.\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nChild number of the key used to derive from parent (0 for …\nGet an Iterator over the children of this DerivationPath …\nPublic->Public child key derivation\nCompute the scalar tweak added to this key to get a child …\nDecoding extended private key from binary data according …\nDecoding extended public key from binary data according to …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nHow many derivations this key is from the master (which is …\nAttempts to derive an extended private key from a path.\nAttempts to derive an extended public key from a path.\nExtended private key binary encoding according to BIP 32\nExtended public key binary encoding according to BIP 32\nConcatenate self with path and return the resulting new …\nReturns the first four bytes of the identifier\nReturns the first four bytes of the identifier\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a Hardened from an index, returns an error if the …\nCreates Self from a hex string.\nCreates Self from a hex string.\nCreate a Normal from an index, returns an error if the …\nDerives a public key from a private key\nGet an Iterator over the hardened children of this …\nReturns the HASH160 of the public key belonging to the …\nReturns the HASH160 of the chaincode\nReturns the child number that is a single increment from …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert into a DerivationPath that is a child of this one.\nConverts a given type into a DerivationPath with possible …\nConvert an iterator of anything into FallibleIterator by …\nReturns the invalid payload length.\nReturns whether the object, as an array, is empty. Always …\nReturns whether the object, as an array, is empty. Always …\nReturns true if the derivation path is empty\nReturns true if the child number is a Hardened value.\nReturns whether derivation path represents master key …\nReturns true if the child number is a Normal value.\nReturns the length of the object as an array.\nReturns the length of the object as an array.\nReturns length of the derivation path\nReturns derivation path for a master key (i.e. empty …\nThe network kind this key is to be used on\nThe network kind this key is to be used on\nThe network this key is to be used on\nThe network this key is to be used on\nThe network this key is to be used on\nThe network kind this key is to be used on\nConstruct a new master key from a seed value\nGet an Iterator over the unhardened children of this …\nFingerprint of the parent key\nFingerprint of the parent key\nFingerprint of the parent key (0 for master)\nFingerprint of the parent key (0 for master)\nFingerprint of the parent key (0 for master)\nFingerprint of the parent key\nPrivate key\nPrivate key\nPrivate key\nPublic key\nPublic key\nPublic key\nStart a new DerivationPathIterator at the given child.\nReturns the underlying bytes.\nReturns the underlying bytes.\nConstructs BIP340 keypair for Schnorr signatures and …\nConstructs ECDSA compressed private key matching internal …\nConstructs ECDSA compressed public key matching internal …\nReturns the derivation path as a vector of u32 integers. …\nConstructs BIP340 x-only public key for BIP-340 signatures …\nConvert an iterator of Results into FallibleIterator by …\nKey index, within [0, 2^31 - 1]\nKey index, within [0, 2^31 - 1]\nRepresents fee rate.\nRepresents block weight - the weight of a transaction or …\nBitcoin blocks.\nBlockdata constants.\nImplements FeeRate and assoctiated features.\nProvides absolute and relative locktimes.\nBitcoin script opcodes.\nBitcoin scripts.\nBitcoin transactions.\nImplements Weight and associated features.\nWitness\nThe header hash is not below the target.\nThe target field of a block header did not match the …\nAn error when looking up a BIP34 block height.\nBitcoin block.\nA bitcoin block hash.\nBitcoin block header.\nBIP-9 compatible version number that does not signal for …\nThe BIP34 push was negative.\nNo push was present where the BIP34 push was expected.\nThe original Bitcoin Block v1.\nThe number of bytes that the block header contributes to …\nBIP-34 Block v2.\nA hash of the Merkle tree branch or root for transactions.\nThe BIP34 push was larger than 8 bytes.\nThe block does not support BIP34 yet.\nA block validation error.\nBitcoin block version number.\nA hash corresponding to the witness structure commitment …\nA hash corresponding to the Merkle tree root for witness …\nThe target value below which the blockhash must lie.\nReturns the block hash.\nComputes the popular “difficulty” measure for mining.\nComputes the popular “difficulty” measure for mining …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a Version from a signed 32 bit integer value.\nThe block header\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nChecks whether the version number is signalling a soft …\nThe root hash of the merkle tree of transactions in the …\nThe nonce, selected to obtain a low enough blockhash.\nReference to the previous block in the chain.\nComputes the target (range [0, T] inclusive) that a …\nThe timestamp of the block, as claimed by the miner.\nReturns the inner i32 value.\nList of transactions contained in the block\nChecks that the proof-of-work for the block is valid, …\nBlock version, now repurposed for soft fork signalling.\nReturns the total work of the block.\nChainHash for mainnet bitcoin.\nNumber of blocks needed for an output from a coinbase …\nThe uniquely identifying hash of the target blockchain.\nHow many blocks between diffchanges.\nHow much time on average should occur between diffchanges.\nThe maximum allowed number of signature check operations …\nMaximum allowed value for an integer in Script.\nThe maximum allowed script size.\nMainnet (bitcoin) pubkey address prefix.\nTest (tesnet, signet, regtest) pubkey address prefix.\nChainHash for regtest bitcoin.\nMainnet (bitcoin) script address prefix.\nTest (tesnet, signet, regtest) script address prefix.\nChainHash for signet bitcoin.\nHow may blocks between halvings.\nHow many seconds between blocks we expect on average.\nChainHash for testnet3 bitcoin.\nChainHash for testnet3 bitcoin.\nChainHash for testnet4 bitcoin.\nThe factor that non-witness serialization data is …\nReturns a reference the underlying bytes.\nConverts the object to a mutable raw pointer.\nConverts the object to a raw pointer.\nReturns the argument unchanged.\nConverts genesis block hash into ChainHash.\nCreates Self from a hex string.\nConstructs and returns the genesis block.\nCalls U::from(self).\nReturns whether the object, as an array, is empty. Always …\nReturns the length of the object as an array.\nReturns the underlying bytes.\nReturns the hash of the network genesis block for use as a …\nReturns the hash of the network genesis block for use as a …\nRepresents fee rate.\nProvides type LockTime that implements the logic around …\nProvides type LockTime that implements the logic around …\nA block height lock time value.\nAn error that occurs when converting a u32 to a lock time …\nAn absolute block height, guaranteed to always contain a …\nThe Threshold for deciding whether a lock time value is a …\nAn absolute lock time value, representing either a block …\nThe maximum absolute block height.\nThe maximum absolute block time (Sun Feb 07 2106 06:28:15 …\nThe minimum absolute block height (0), the genesis block.\nThe minimum absolute block time (Tue Nov 05 1985 00:53:20 …\nError returned when parsing block height fails.\nError returned when parsing block time fails.\nThe number of bytes that the locktime contributes to the …\nA UNIX timestamp lock time value.\nA UNIX timestamp, seconds since epoch, guaranteed to …\nAbsolute block height 0, the genesis block.\nIf crate::Transaction::lock_time is set to zero it is …\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 new block height.\nConstructs a new block time.\nConstructs a LockTime from an nLockTime value or the …\nConstructs a LockTime from n, expecting n to be a valid …\nCreates a Height from a hex string.\nCreates a Time from a hex string.\nCreates a LockTime from an prefixed hex string.\nConstructs a LockTime from n, expecting n to be a valid …\nCreates a LockTime from an unprefixed hex string.\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 lock time value is a block height.\nReturns true if this lock time value is a block time (UNIX …\nReturns true if satisfaction of other lock time implies …\nReturns true if both lock times use the same unit i.e., …\nReturns true if this timelock constraint is satisfied by …\nConverts this Height to its inner u32 value.\nConverts this Time to its inner u32 value.\nReturns the inner u32 value. This is the value used when …\nA block height lock time value.\nError returned when a sequence number is parsed as a lock …\nA relative lock time lock-by-blockheight value.\nTried to satisfy a lock-by-blocktime lock using a height …\nTried to satisfy a lock-by-blockheight lock using a time …\nA relative lock time value, representing either a block …\nThe maximum relative block height.\nThe maximum relative block time (33,554,432 seconds or …\nThe minimum relative block height (0), can be included in …\nThe minimum relative block time (0), can be included in …\nThe number of bytes that the locktime contributes to the …\nA relative lock time lock-by-blocktime value.\nA 512 second time interval value.\nInput time in seconds was too large to be encoded to a 16 …\nRelative block height 0, can be included in any block.\nRelative block time 0, can be included in any block.\nA relative locktime of 0 is always valid, and is assumed …\nAccessor for the u32 whose “disable” flag was set, …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a Time using time intervals where each interval is …\nConstructs a LockTime from n, expecting n to be a count of …\nConstructs a LockTime from an nSequence value or the …\nCreate a Height using a count of blocks.\nConstructs a LockTime from n, expecting n to be a 16-bit …\nCreate a Time from seconds, converting the seconds into …\nCreate a LockTime from seconds, converting the seconds …\nCreate a Time from seconds, converting the seconds into …\nCreate a LockTime from seconds, converting the seconds …\nConstructs a LockTime from the sequence number of a …\nAttempted to satisfy a lock-by-blocktime lock with this …\nThe inner height value of the lock-by-blockheight lock.\nCalls U::from(self).\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 lock time value is in units of block …\nReturns true if this lock time value is in units of time.\nReturns true if satisfaction of other lock time implies …\nReturns true if satisfaction of the sequence number …\nReturns true if both lock times use the same unit i.e., …\nReturns true if this [relative::LockTime] is satisfied by …\nReturns true if this [relative::LockTime] is satisfied by …\nReturns true if this [relative::LockTime] is satisfied by …\nCreates a new TimeOverflowError using seconds.\nThe inner time value of the lock-by-blocktime lock.\nAttempted to satisfy a lock-by-blockheight lock with this …\nReturns the u32 value used to encode this locktime in an …\nReturns the u32 value used to encode this locktime in an …\nReturns the u32 value used to encode this locktime in an …\nEncodes the locktime as a sequence number.\nReturns the inner u16 value.\nReturns the inner u16 value.\nBroad categories of opcodes with similar behavior.\nClassification context for the opcode.\nFails the script even if not executed.\nOpcode used in legacy context.\nDoes nothing.\nPush an empty array onto the stack.\nEmpty stack is also FALSE.\nPreviously called OP_NOP2.\nPreviously called OP_NOP3.\nNumber 1 is also TRUE.\nA script Opcode.\nAny opcode not covered above.\nPushes the given number of bytes onto the stack.\nPushes the given number onto the stack.\nFails the script if executed.\nSucceeds the script even if not executed.\nOpcode used in tapscript context.\nEnables wildcard imports to bring into scope all opcodes …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nMap 0 to 0 and everything else to 1, in place.\nIncrement the top stack element in place.\nDecrement the top stack element in place.\nFail the script unconditionally, does not even need to be …\nDrops the top two stack items.\nDuplicates the top two stack items as AB -> ABAB.\nFail the script unconditionally, does not even need to be …\nCopies the two stack items of items two spaces back to the …\nMoves the two stack items four spaces back to the front, …\nSwaps the top two pairs, as ABCD -> CDAB.\nDuplicates the two three stack items as ABC -> ABCABC.\nAbsolute value the top stack item in place.\nPop two stack items and push their sum.\nFail the script unconditionally, does not even need to be …\nPop the top two stack items and push 1 if both are …\nPop the top two stack items and push 1 if either is …\nFail the script unconditionally, does not even need to be …\nPop N, N pubkeys, M, M signatures, a dummy (due to bug in …\nLike the above but return success/failure.\nhttps://en.bitcoin.it/wiki/OP_CHECKSIG pushing 1/0 for …\nOP_CHECKSIGADD post tapscript.\nhttps://en.bitcoin.it/wiki/OP_CHECKSIG returning …\n…\nIgnore this and everything preceding when deciding what to …\n…\nPush the current number of stack items onto the stack.\nFail the script unconditionally, does not even need to be …\nDrops the top stack item.\nDuplicates the top stack item.\nExecute statements if those after the previous OP_IF were …\nPop and execute the next statements if a zero element was …\nPushes 1 if the inputs are exactly equal, 0 otherwise.\nReturns success if the inputs are exactly equal, failure …\nPop one element from the alt stack onto the main stack.\nPop the top two items; push 1 if the second is greater …\nPop the top two items; push 1 if the second is >= the top, …\nPop the top stack item and push its RIPEMD(SHA256) hash.\nPop the top stack item and push its SHA256(SHA256) hash.\nPop and execute the next statements if a nonzero element …\nDuplicate the top stack element unless it is zero.\nSynonym for OP_RETURN.\nFail the script unconditionally, does not even need to be …\nFail the script unconditionally, does not even need to be …\nPop the top two items; push 1 if the second is less than …\nPop the top two items; push 1 if the second is <= the top, …\nFail the script unconditionally, does not even need to be …\nPop the top two items; push the larger.\nPop the top two items; push the smaller.\nFail the script unconditionally, does not even need to be …\nFail the script unconditionally, does not even need to be …\nMultiply the top stack item by -1 in place.\nDrops the second-to-top stack item.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nDoes nothing.\nMap 0 to 1 and everything else to 0, in place.\nPop and execute the next statements if a zero element was …\nPop the top two stack items and push 1 if both are …\nPop the top two stack items and return success if both are …\nPop the top two stack items and push 0 if both are …\nFail the script unconditionally, does not even need to be …\nCopies the second-to-top stack item, as xA -> AxA.\nPop the top stack element as N. Copy the Nth stack element …\nPush an empty array onto the stack.\nPush the next byte as an array onto the stack.\nPush the next 10 bytes as an array onto the stack.\nPush the next 11 bytes as an array onto the stack.\nPush the next 12 bytes as an array onto the stack.\nPush the next 13 bytes as an array onto the stack.\nPush the next 14 bytes as an array onto the stack.\nPush the next 15 bytes as an array onto the stack.\nPush the next 16 bytes as an array onto the stack.\nPush the next 17 bytes as an array onto the stack.\nPush the next 18 bytes as an array onto the stack.\nPush the next 19 bytes as an array onto the stack.\nPush the next 2 bytes as an array onto the stack.\nPush the next 20 bytes as an array onto the stack.\nPush the next 21 bytes as an array onto the stack.\nPush the next 22 bytes as an array onto the stack.\nPush the next 23 bytes as an array onto the stack.\nPush the next 24 bytes as an array onto the stack.\nPush the next 25 bytes as an array onto the stack.\nPush the next 26 bytes as an array onto the stack.\nPush the next 27 bytes as an array onto the stack.\nPush the next 28 bytes as an array onto the stack.\nPush the next 29 bytes as an array onto the stack.\nPush the next 3 bytes as an array onto the stack.\nPush the next 30 bytes as an array onto the stack.\nPush the next 31 bytes as an array onto the stack.\nPush the next 32 bytes as an array onto the stack.\nPush the next 33 bytes as an array onto the stack.\nPush the next 34 bytes as an array onto the stack.\nPush the next 35 bytes as an array onto the stack.\nPush the next 36 bytes as an array onto the stack.\nPush the next 37 bytes as an array onto the stack.\nPush the next 38 bytes as an array onto the stack.\nPush the next 39 bytes as an array onto the stack.\nPush the next 4 bytes as an array onto the stack.\nPush the next 40 bytes as an array onto the stack.\nPush the next 41 bytes as an array onto the stack.\nPush the next 42 bytes as an array onto the stack.\nPush the next 43 bytes as an array onto the stack.\nPush the next 44 bytes as an array onto the stack.\nPush the next 45 bytes as an array onto the stack.\nPush the next 46 bytes as an array onto the stack.\nPush the next 47 bytes as an array onto the stack.\nPush the next 48 bytes as an array onto the stack.\nPush the next 49 bytes as an array onto the stack.\nPush the next 5 bytes as an array onto the stack.\nPush the next 50 bytes as an array onto the stack.\nPush the next 51 bytes as an array onto the stack.\nPush the next 52 bytes as an array onto the stack.\nPush the next 53 bytes as an array onto the stack.\nPush the next 54 bytes as an array onto the stack.\nPush the next 55 bytes as an array onto the stack.\nPush the next 56 bytes as an array onto the stack.\nPush the next 57 bytes as an array onto the stack.\nPush the next 58 bytes as an array onto the stack.\nPush the next 59 bytes as an array onto the stack.\nPush the next 6 bytes as an array onto the stack.\nPush the next 60 bytes as an array onto the stack.\nPush the next 61 bytes as an array onto the stack.\nPush the next 62 bytes as an array onto the stack.\nPush the next 63 bytes as an array onto the stack.\nPush the next 64 bytes as an array onto the stack.\nPush the next 65 bytes as an array onto the stack.\nPush the next 66 bytes as an array onto the stack.\nPush the next 67 bytes as an array onto the stack.\nPush the next 68 bytes as an array onto the stack.\nPush the next 69 bytes as an array onto the stack.\nPush the next 7 bytes as an array onto the stack.\nPush the next 70 bytes as an array onto the stack.\nPush the next 71 bytes as an array onto the stack.\nPush the next 72 bytes as an array onto the stack.\nPush the next 73 bytes as an array onto the stack.\nPush the next 74 bytes as an array onto the stack.\nPush the next 75 bytes as an array onto the stack.\nPush the next 8 bytes as an array onto the stack.\nPush the next 9 bytes as an array onto the stack.\nRead the next byte as N; push the next N bytes as an array …\nRead the next 2 bytes as N; push the next N bytes as an …\nRead the next 4 bytes as N; push the next N bytes as an …\nPush the array 0x01 onto the stack.\nPush the array 0x0a onto the stack.\nPush the array 0x0b onto the stack.\nPush the array 0x0c onto the stack.\nPush the array 0x0d onto the stack.\nPush the array 0x0e onto the stack.\nPush the array 0x0f onto the stack.\nPush the array 0x10 onto the stack.\nPush the array 0x02 onto the stack.\nPush the array 0x03 onto the stack.\nPush the array 0x04 onto the stack.\nPush the array 0x05 onto the stack.\nPush the array 0x06 onto the stack.\nPush the array 0x07 onto the stack.\nPush the array 0x08 onto the stack.\nPush the array 0x09 onto the stack.\nPush the array 0x81 onto the stack.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nFail the script immediately. (Must be executed.).\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nSynonym for OP_RETURN.\nFail the script unconditionally, does not even need to be …\nPop the top stack item and push its RIPEMD160 hash.\nPop the top stack element as N. Move the Nth stack element …\nRotate the top three stack items, as [top next1 next2] -> […\nFail the script unconditionally, does not even need to be …\nPop the top stack item and push its SHA1 hash.\nPop the top stack item and push its SHA256 hash.\nPushes the length of the top stack item onto the stack.\nPop two stack items and push the second minus the top.\nFail the script unconditionally, does not even need to be …\nSwap the top two stack items.\nPop one element from the main stack onto the alt stack.\nCopy the top stack item to before the second item, as [top …\nSynonym for OP_RETURN.\nFail the script unconditionally, does not even need to be …\nIf the top value is zero or the stack is empty, fail; …\nFail the script unconditionally, does not even need to be …\nPop the top three items; if the top is >= the second and < …\nFail the script unconditionally, does not even need to be …\nAn Object which can be used to construct a script piece by …\nIterator over bytes of a script\nSome opcode expected a parameter but it was missing or …\nWays that a script might fail. Not everything is split up …\nA “parsed opcode” which allows iterating over a Script …\nIterator over script instructions with their positions.\nIterator over a script returning parsed opcodes.\nSomething did a non-minimal push; for more information see …\nTried to read an array off the stack as a number when it …\nSome non-push opcode.\nByte slices that can be in Bitcoin script.\nPush a bunch of data.\nOwned, growable counterpart to PushBytes.\nError returned on attempt to create too large PushBytes.\nReports information about failed conversion into PushBytes.\nBitcoin script slice.\nAn owned, growable script.\nA hash of Bitcoin Script bytecode.\nCan not serialize the spending transaction.\nCan not find the spent output.\nSegWit version of a Bitcoin Script bytecode hash.\nReturns script bytes\nReturns the underlying bytes.\nReturns the underlying mutbale bytes.\nExtracts mutable PushBytes slice\nExtracts PushBytes slice\nReturns the internal script\nViews the remaining script as a slice.\nViews the remaining script as a slice.\nReturns the number of bytes the buffer can contain without …\nRemove all bytes from buffer without affecting capacity.\nCreates an empty PushBytes.\nTry appending a slice to PushBytesBuf\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nHow many bytes the input had.\nCalls U::from(self).\nCalls U::from(self).\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 Builder into script bytes\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConverts the Builder into ScriptBuf.\nChecks whether the script is the empty script.\nReturns true if the buffer contains zero bytes.\nReturns true if the buffer contains zero bytes.\nReturns the length in bytes of the script.\nReturns the number of bytes in buffer.\nReturns the number of bytes in buffer.\nCreates a new empty script.\nCreates a new empty PushBytesBuf.\nReturns the opcode if the instruction is not a data push.\nRemove the last byte from buffer if any.\nTry pushing a single byte.\nReturns the pushed bytes if the instruction is a data push.\nAdds instructions to push an integer onto the stack.\nAdds instructions to push a public key onto the stack.\nAdds instructions to push an absolute lock time onto the …\nAdds a single opcode to the script.\nAdds instructions to push a sequence number onto the stack.\nAdds instructions to push some arbitrary data onto the …\nAdds an OP_VERIFY to the script or replaces the last …\nAdds instructions to push an XOnly public key onto the …\nDecodes a boolean.\nDecodes an integer in script(minimal CScriptNum) format.\nDecodes an integer in script format without non-minimal …\nRemove the byte at index and return it.\nReserve capacity for additional_capacity bytes.\nReturns the number interpretted by the script parser if it …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nRemove bytes from buffer past len.\nCreates a new empty PushBytesBuf with reserved capacity.\nThe segregated witness program as defined by BIP141.\nThe segregated witness version byte as defined by BIP141.\nEncodes an integer in script(minimal CScriptNum) format.\nWitness program error.\nThe witness program must be between 2 and 40 bytes in …\nA v0 witness program must be either of length 20 or 32.\nThe maximum byte size of a segregated witness program.\nThe minimum byte size of a segregated witness program.\nThe segregated witness program.\nReturns the argument unchanged.\nCalls U::from(self).\nCannot create a witness version from non-zero data push.\nError parsing WitnessVersion from a string.\nString contained an invalid witness version number.\nCannot not convert OP to a witness version.\nError attempting to create a WitnessVersion from an …\nError attempting to create a WitnessVersion from an …\nUnable to parse integer from string.\nInitial version of witness program. Used for P2WPKH and …\nVersion of witness program used for Taproot P2TR outputs.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nFuture (unsupported) version of witness program.\nVersion of the segregated witness program.\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 invalid non-witness version integer.\nError in general format.\nError attempting to do an out of bounds access on a vector.\nWeight prediction of an individual input.\nError attempting to do an out of bounds access on the …\nThe original Bitcoin transaction version (pre-BIP-68).\nA reference to a transaction output.\nError attempting to do an out of bounds access on the …\nInput weight prediction corresponding to spending of a …\nInput weight prediction corresponding to spending of a …\nInput weight prediction corresponding to spending of …\nInput weight prediction corresponding to spending of …\nInput weight prediction corresponding to spending of …\nAn error in parsing an OutPoint.\nBitcoin transaction input sequence number.\nThe second Bitcoin transaction version (post-BIP-68).\nSize exceeds max.\nBitcoin transaction.\nBitcoin transaction input.\nBitcoin transaction output.\nA bitcoin transaction hash/transaction ID.\nError in TXID part.\nThe transaction version.\nError in vout part.\nVout part is not strictly numeric without leading zeroes.\nA bitcoin witness transaction ID.\nComputes the value of an output accounting for the cost of …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nComputes the prediction for a single input in const …\nInput weight prediction corresponding to spending of a …\nInput weight prediction corresponding to spending of …\nAttempted index access.\nList of transaction inputs.\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 transaction version number is …\nLength of the vector where access was attempted.\nBlock height or timestamp. Transaction cannot be included …\nComputes the prediction for a single input.\nCreates a non-standard transaction version.\nList of transaction outputs.\nPredicts the weight of a to-be-constructed transaction.\nPredicts the weight of a to-be-constructed transaction in …\nThe reference to the previous output that is being used as …\nThe script which must be satisfied for the output to be …\nThe script which pushes values on the stack which will …\nThe sequence number, which suggests to miners which of two …\nThe referenced transaction’s txid.\nThe value of the output, in satoshis.\nThe protocol version, is currently expected to be 1 or 2 …\nThe index of the referenced output in its transaction’s …\nTallies the total weight added to a transaction by an …\nWitness data: an array of byte-arrays. Note that this …\nThe factor that non-witness serialization data is …\nRepresents block weight - the weight of a transaction or …\nAn iterator returning individual witness elements.\nThe Witness is the data used to unlock bitcoin since the …\nReturns the argument unchanged.\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nThe mainnet parameters (alias for Params::MAINNET).\nInvalid consensus encoding.\nData which can be encoded in a consensus-consistent way.\nError when consensus decoding from an [IterReader].\nData which can be encoded in a consensus-consistent way.\nThe mainnet parameters.\nOther decoding error.\nParameters that influence chain consensus.\nThe regtest parameters.\nExtensions of Read to decode data as per Bitcoin consensus.\nThe signet parameters.\nThe testnet3 parameters.\nThe testnet3 parameters.\nThe testnet4 parameters.\nAttempted to decode an object from an iterator that …\nExtensions of Write to encode data as per Bitcoin …\nDetermines whether minimal difficulty may be used for …\nTime when BIP16 becomes active.\nBlock height at which BIP34 becomes active.\nBlock height at which BIP65 becomes active.\nBlock height at which BIP66 becomes active.\nDecode an object with a well-defined format.\nDecode Self from a size-limited reader.\nEncodes an object with a well-defined format.\nDeserializes an object from a vector, will error if said …\nDeserializes an object from a vector, but will not report …\nCalculates the number of blocks between difficulty …\nOutputs a boolean.\nOutputs a 16-bit signed integer.\nOutputs a 32-bit signed integer.\nOutputs a 64-bit signed integer.\nOutputs an 8-bit signed integer.\nOutputs a byte slice.\nOutputs a 16-bit unsigned integer.\nOutputs a 32-bit unsigned integer.\nOutputs a 64-bit unsigned integer.\nOutputs an 8-bit unsigned integer.\nBitcoin consensus-encodable types.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThe maximum attainable target value for these params.\nNumber of blocks with the same set of rules.\nNetwork for which parameters are valid.\nCreates parameters set for the given network.\nDetermines whether retargeting is disabled for this …\nBitcoin consensus parameters.\nProof of work limit value. It contains the lowest possible …\nExpected amount of time to mine one block.\nDifficulty recalculation interval.\nReads a boolean.\nReads a 16-bit signed integer.\nReads a 32-bit signed integer.\nReads a 64-bit signed integer.\nReads an 8-bit signed integer.\nReads a byte slice.\nReads a 16-bit unsigned integer.\nReads a 32-bit unsigned integer.\nReads a 64-bit unsigned integer.\nReads an 8-bit unsigned integer.\nMinimum blocks including miner confirmation of the total …\nSerde serialization via consensus encoding\nEncodes an object into a vector.\nData and a 4-byte checksum.\nData which can be encoded in a consensus-consistent way.\nDecoding error.\nData which can be encoded in a consensus-consistent way.\nEncoding error.\nHex deserialization error.\nChecksum was invalid.\nAnd I/O error.\nMaximum size, in bytes, of a vector we are allowed to …\nVarInt was encoded in a non-minimal way.\nPurported hex string had odd length.\nTried to allocate an oversized vector.\nParsing error.\nExtensions of Read to decode data as per Bitcoin consensus.\nUnsupported Segwit flag.\nA variable-length unsigned integer.\nExtensions of Write to encode data as per Bitcoin …\nReturns the checksum of the data.\nDecode an object with a well-defined format.\nDecode Self from a size-limited reader.\nEncodes an object with a well-defined format.\nReturns a reference to the raw data without the checksum.\nDeserializes an object from a vector, will error if said …\nDeserialize any decodable type from a hex string, will …\nDeserializes an object from a vector, but will not report …\nOutputs a boolean.\nOutputs a 16-bit signed integer.\nOutputs a 32-bit signed integer.\nOutputs a 64-bit signed integer.\nOutputs an 8-bit signed integer.\nOutputs a byte slice.\nOutputs a 16-bit unsigned integer.\nOutputs a 32-bit unsigned integer.\nOutputs a 64-bit unsigned integer.\nOutputs an 8-bit unsigned integer.\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 raw data without the checksum.\nCreates a new CheckedData computing the checksum of given …\nReads a boolean.\nReads a 16-bit signed integer.\nReads a 32-bit signed integer.\nReads a 64-bit signed integer.\nReads an 8-bit signed integer.\nReads a byte slice.\nReads a 16-bit unsigned integer.\nReads a 32-bit unsigned integer.\nReads a 64-bit unsigned integer.\nReads an 8-bit unsigned integer.\nEncodes an object into a vector.\nEncodes an object into a hex-encoded string.\nThe invalid checksum.\nThe expected checksum.\nThe maximum capacity.\nThe capacity requested.\nThe mainnet parameters.\nParameters that influence chain consensus.\nThe regtest parameters.\nThe signet parameters.\nThe testnet3 parameters.\nThe testnet3 parameters.\nThe testnet4 parameters.\nDetermines whether minimal difficulty may be used for …\nTime when BIP16 becomes active.\nBlock height at which BIP34 becomes active.\nBlock height at which BIP65 becomes active.\nBlock height at which BIP66 becomes active.\nThe maximum attainable target value for these params.\nNumber of blocks with the same set of rules.\nNetwork for which parameters are valid.\nDetermines whether retargeting is disabled for this …\nProof of work limit value. It contains the lowest possible …\nExpected amount of time to mine one block.\nDifficulty recalculation interval.\nMinimum blocks including miner confirmation of the total …\nProvides an instance of string-to-byte decoder.\nProvides an instance of byte-to-string encoder.\nError returned when decoding fails.\nThe decoder state.\nTransforms given bytes and writes to the writer.\nThe encoder state.\nHex-encoding strategy\nError returned when decoder can’t be created.\nConverts error into a type implementing serde::de::Error\nHelper for #[serde(with = "")].\nDeserializes the value as consensus-encoded\nTransform the provided slice and write to the writer.\nWrite data in buffer (if any) to the writer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs the decoder from string.\nImplements hex encoding.") \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-1-.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-1-.js index b679bc4658..54b7407ef9 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-1-.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-1-.js @@ -1 +1 @@ -searchState.loadedDescShard("bdk_chain", 1, "Write data in buffer (if any) to the writer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs the decoder from string.\nImplements hex encoding.\nCalls U::from(self).\nCalls U::from(self).\nPerforms the conversion.\nSerializes the value as consensus-encoded\nMarker for upper/lower case type-level flags (“…\nError returned when a hex string contains invalid …\nError returned when a hex string decoder can’t be …\nHex decoder state.\nHex byte encoder.\nMarker for using lower-case hex encoding.\nMarker for using upper-case hex encoding.\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).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nSignature was empty.\nAn ECDSA signature-related error.\nHex decoding error.\nA secp256k1 error.\nHolds signature serialized in-line (not in Vec).\nNon-standard sighash type.\nAn ECDSA signature with the corresponding hash type.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nDeserializes from slice following the standardness rules …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns an iterator over bytes of the signature.\nSerializes an ECDSA signature (inner secp256k1 signature …\nSerializes an ECDSA signature (inner secp256k1 signature …\nConstructs an ECDSA Bitcoin signature for …\nThe corresponding hash type.\nThe underlying ECDSA Signature.\nSerializes an ECDSA signature (inner secp256k1 signature …\nWrites this serialized signature to a writer.\nHex string contains prefix.\nError when hex string contains a prefix (e.g. 0x).\nHex string is missing prefix.\nError when hex string is missing a prefix (e.g. 0x).\nError parsing integer from hex string.\nError parsing integer from string.\nError with rich context returned when a string can’t be …\nError returned when parsing integer from an supposedly …\nError returned when parsing integer from an supposedly …\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).\nA bitcoin block hash.\nFilter hash, as defined in BIP-157\nFilter header, as defined in BIP-157\nA hash of the Merkle tree branch or root for transactions.\nA bitcoin transaction hash/transaction ID.\nA hash corresponding to the witness structure commitment …\nA hash corresponding to the Merkle tree root for witness …\nA bitcoin witness transaction ID.\nLength of the hash’s internal block size, in bytes.\nThe byte array that represents the hash internally.\nFlag indicating whether user-visible serializations of …\nA hashing engine which bytes can be serialized into. It is …\nAttempted to create a hash from an invalid length slice.\nTrait which applies to hashes of all types.\nA hashing engine which bytes can be serialized into.\nA hash computed from a RFC 2104 HMAC. Parameterized by the …\nPair of underlying hash engines, used for the inner and …\nLength of the hash, in bytes.\nByte array representing the internal state of the hash …\nReturns an all zero hash.\nReturns a reference to the underlying byte array.\nAdds slicing traits implementations to a given type $ty\nUseful comparison functions.\nConstructs a new engine.\nConstructs a hash from the underlying byte array.\nProduces a hash from the current state of a given engine.\nCopies a byte slice into a hash object.\nHashes some bytes.\nHASH160 (SHA256 then RIPEMD160) implementation.\nHashes all the byte slices retrieved from the iterator …\nCreates a new newtype around a Hash type.\nAdds hexadecimal formatting implementation of a trait $imp …\nHash-based Message Authentication Code (HMAC).\nAdd data to the hash engine.\nOutputs the midstate of the hash engine. This function …\nReturn the number of bytes already …\nRIPEMD160 implementation.\nImplements Serialize and Deserialize for a type $t which …\nMacros for serde trait implementations, and supporting …\nSHA1 implementation.\nSHA256 implementation.\nSHA256d implementation (double SHA256).\nSHA256t implementation (tagged SHA256).\nMacro used to define a newtype tagged hash.\nSHA384 implementation.\nSHA512 implementation.\nSHA512_256 implementation.\nSipHash 2-4 implementation.\nReturns the underlying byte array.\nCompare two slices for equality in fixed time. Panics if …\nOutput of the Bitcoin HASH160 hash function. …\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nIterator over bytes which encodes the bytes and yields hex …\nPossible case of hex.\nThe type providing fmt::Display implementation.\nExtension trait for types that can be displayed as hex.\nError type returned while parsing hex string.\nTrait for objects that can be deserialized from hex …\nConvenience alias for HexToBytesIter<HexDigitsIter<'a>>.\nHex decoding error.\nHex decoding error.\nIterator yielding bytes decoded from an iterator of pairs …\nNon-hexadecimal character.\nNon-hexadecimal character.\nInvalid hex character.\nTried to parse fixed-length hash from a string with the …\nProduce lower-case chars ([0-9a-f]).\nPurported hex string had odd length.\nPurported hex string had odd length.\nProduce upper-case chars ([0-9A-F]).\nAppends hex-encoded content to an existing String.\nDisplay Self as a continuous sequence of ASCII hex chars.\nImplements a buffered encoder.\nHelpers for displaying bytes as hex strings.\nError code for the hex-conservative crate.\nFormat known-length array as hex.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nProduces an object from a hex string.\nConstructs a custom hex decoding iterator from another …\nHints how much bytes to reserve when creating a String.\nAdds core::fmt trait implementations to type $ty.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nReturns the invalid character byte.\nReturns the odd length of the input string.\nConstructs a new HexToBytesIter from a string slice.\nConstructs a new BytesToHexIter from a byte iterator.\nHex encoding and decoding.\nRe-exports of the common crate traits.\nQuick and dirty macro for parsing hex in tests.\nCreate a hex-encoded string.\nCreate a lower-hex-encoded string.\nCreate an upper-hex-encoded string.\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nFormats error.\nHex-encodes bytes into the provided buffer.\nReturns the written bytes as a hex str.\nResets the buffer to become empty.\nReturns the argument unchanged.\nCalls U::from(self).\nReturns true if no more bytes can be written into the …\nCreates an empty BufEncoder.\nEncodes byte as hex in given case and appends it to the …\nEncodes bytes as hex in given case and appends them to the …\nEncodes as many bytes as fit into the buffer as hex and …\nHow many bytes can be written to this buffer.\nThe type providing fmt::Display implementation.\nDisplays byte array as hex.\nDisplays byte slice as hex.\nExtension trait for types that can be displayed as hex.\nAppends hex-encoded content to an existing String.\nDisplay Self as a continuous sequence of ASCII hex chars.\nFormat known-length array as hex.\nReturns the argument unchanged.\nReturns the argument unchanged.\nHints how much bytes to reserve when creating a String.\nAdds core::fmt trait implementations to type $ty.\nCalls U::from(self).\nCalls U::from(self).\nCreate a hex-encoded string.\nCreate a lower-hex-encoded string.\nCreate an upper-hex-encoded string.\nHex decoding error.\nHex decoding error.\nNon-hexadecimal character.\nNon-hexadecimal character.\nInvalid hex character.\nTried to parse fixed-length hash from a string with the …\nTried to parse fixed-length hash from a string with the …\nPurported hex string had odd length.\nPurported hex string had odd length.\nThe expected length.\nReturns the argument unchanged.\nCalls U::from(self).\nThe invalid length.\nError type returned while parsing hex string.\nTrait for objects that can be deserialized from hex …\nHex decoding error.\nHex decoding error.\nNon-hexadecimal character.\nNon-hexadecimal character.\nTried to parse fixed-length hash from a string with the …\nPurported hex string had odd length.\nProduces an object from a hex string.\nThe type providing fmt::Display implementation.\nExtension trait for types that can be displayed as hex.\nError type returned while parsing hex string.\nTrait for objects that can be deserialized from hex …\nAppends hex-encoded content to an existing String.\nDisplay Self as a continuous sequence of ASCII hex chars.\nProduces an object from a hex string.\nHints how much bytes to reserve when creating a String.\nCreate a hex-encoded string.\nCreate a lower-hex-encoded string.\nCreate an upper-hex-encoded string.\nA hash computed from a RFC 2104 HMAC. Parameterized by the …\nPair of underlying hash engines, used for the inner and …\nPair of underlying hash midstates which represent the …\nReturns the argument unchanged.\nMidstate of the inner hash engine\nCalls U::from(self).\nMidstate of the outer hash engine\nOutput of the RIPEMD160 hash function.\nEngine to compute RIPEMD160 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nA data structure that can be deserialized from any data …\nA data format that can deserialize any data structure …\nThe error type that can be returned if some error occurs …\nThe error type when some error occurs during serialization.\nThe output type produced by this Serializer during …\nA data structure that can be serialized into any data …\nType returned from serialize_map for serializing the …\nType returned from serialize_seq for serializing the …\nType returned from serialize_struct for serializing the …\nType returned from serialize_struct_variant for …\nType returned from serialize_tuple for serializing the …\nType returned from serialize_tuple_struct for serializing …\nType returned from serialize_tuple_variant for serializing …\nA data format that can serialize any data structure …\nCollect an iterator as a map.\nCollect an iterator as a sequence.\nSerialize a string produced by an implementation of Display…\nGeneric data structure deserialization framework.\nDeserialize this value from the given Serde deserializer.\nRequire the Deserializer to figure out how to drive the …\nHint that the Deserialize type is expecting a bool value.\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a char value.\nHint that the Deserialize type is expecting an enum value …\nHint that the Deserialize type is expecting a f32 value.\nHint that the Deserialize type is expecting a f64 value.\nHint that the Deserialize type is expecting an i128 value.\nHint that the Deserialize type is expecting an i16 value.\nHint that the Deserialize type is expecting an i32 value.\nHint that the Deserialize type is expecting an i64 value.\nHint that the Deserialize type is expecting an i8 value.\nHint that the Deserialize type is expecting the name of a …\nHint that the Deserialize type needs to deserialize a …\nHint that the Deserialize type is expecting a map of …\nHint that the Deserialize type is expecting a newtype …\nHint that the Deserialize type is expecting an optional …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a struct with …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a tuple struct …\nHint that the Deserialize type is expecting an u128 value.\nHint that the Deserialize type is expecting a u16 value.\nHint that the Deserialize type is expecting a u32 value.\nHint that the Deserialize type is expecting a u64 value.\nHint that the Deserialize type is expecting a u8 value.\nHint that the Deserialize type is expecting a unit value.\nHint that the Deserialize type is expecting a unit struct …\nHelper macro when implementing the Deserializer part of a …\nDetermine whether Deserialize implementations should …\nDetermine whether Serialize implementations should …\nGeneric data structure serialization framework.\nSerialize this value into the given Serde serializer.\nSerialize a bool value.\nSerialize a chunk of raw byte data.\nSerialize a character.\nSerialize an f32 value.\nSerialize an f64 value.\nSerialize an i128 value.\nSerialize an i16 value.\nSerialize an i32 value.\nSerialize an i64 value.\nSerialize an i8 value.\nBegin to serialize a map. This call must be followed by …\nSerialize a newtype struct like struct Millimeters(u8).\nSerialize a newtype variant like E::N in enum E { N(u8) }.\nSerialize a None value.\nBegin to serialize a variably sized sequence. This call …\nSerialize a Some(T) value.\nSerialize a &str.\nBegin to serialize a struct like …\nBegin to serialize a struct variant like E::S in …\nBegin to serialize a statically sized sequence whose …\nBegin to serialize a tuple struct like …\nBegin to serialize a tuple variant like E::T in …\nSerialize a u128 value.\nSerialize a u16 value.\nSerialize a u32 value.\nSerialize a u64 value.\nSerialize a u8 value.\nSerialize a () value.\nSerialize a unit struct like struct Unit or PhantomData<T>.\nSerialize a unit variant like E::A in enum E { A, B }.\nThe input contained a boolean value that was not expected.\nThe input contained a &[u8] or Vec<u8> that was not …\nThe input contained a char that was not expected.\nA data structure that can be deserialized from any data …\nA data structure that can be deserialized without …\nDeserializeSeed is the stateful form of the Deserialize …\nA data format that can deserialize any data structure …\nThe type of the deserializer being converted into.\nThe input contained an enum that was not expected.\nProvides a Visitor access to the data of an enum in the …\nThe Error trait allows Deserialize implementations to …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nExpected represents an explanation of what data a Visitor …\nThe input contained a floating point f32 or f64 that was …\nAn efficient way of discarding data from a deserializer.\nConverts an existing value into a Deserializer from which …\nThe input contained a map that was not expected.\nProvides a Visitor access to each entry of a map in the …\nThe input contained a newtype struct that was not expected.\nThe input contained a newtype variant that was not …\nThe input contained an Option<T> that was not expected.\nA message stating what uncategorized thing the input …\nThe input contained a sequence that was not expected.\nProvides a Visitor access to each element of a sequence in …\nThe input contained a signed integer i8, i16, i32 or i64 …\nError is a trait representing the basic expectations for …\nThe input contained a &str or String that was not expected.\nThe input contained a struct variant that was not expected.\nThe input contained a tuple variant that was not expected.\nUnexpected represents an unexpected invocation of any one …\nThe input contained a unit () that was not expected.\nThe input contained a unit variant that was not expected.\nThe input contained an unsigned integer u8, u16, u32 or u64…\nThe type produced by using this seed.\nThe value produced by this visitor.\nThe Visitor that will be used to deserialize the content …\nVariantAccess is a visitor that is created by the …\nThis trait represents a visitor that walks through a …\nRaised when there is general error when deserializing a …\nEquivalent to the more common Deserialize::deserialize …\nDeserialize this value from the given Serde deserializer.\nRequire the Deserializer to figure out how to drive the …\nHint that the Deserialize type is expecting a bool value.\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a char value.\nHint that the Deserialize type is expecting an enum value …\nHint that the Deserialize type is expecting a f32 value.\nHint that the Deserialize type is expecting a f64 value.\nHint that the Deserialize type is expecting an i128 value.\nHint that the Deserialize type is expecting an i16 value.\nHint that the Deserialize type is expecting an i32 value.\nHint that the Deserialize type is expecting an i64 value.\nHint that the Deserialize type is expecting an i8 value.\nHint that the Deserialize type is expecting the name of a …\nHint that the Deserialize type needs to deserialize a …\nHint that the Deserialize type is expecting a map of …\nHint that the Deserialize type is expecting a newtype …\nHint that the Deserialize type is expecting an optional …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a struct with …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a tuple struct …\nHint that the Deserialize type is expecting an u128 value.\nHint that the Deserialize type is expecting a u16 value.\nHint that the Deserialize type is expecting a u32 value.\nHint that the Deserialize type is expecting a u64 value.\nHint that the Deserialize type is expecting a u8 value.\nHint that the Deserialize type is expecting a unit value.\nHint that the Deserialize type is expecting a unit struct …\nRaised when a Deserialize struct type received more than …\nFormat a message stating what data this Visitor expects to …\nFormat an explanation of what data was being expected. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nConvert this value into a deserializer.\nRaised when deserializing a sequence or map and the input …\nRaised when a Deserialize receives a type different from …\nRaised when a Deserialize receives a value of the right …\nDetermine whether Deserialize implementations should …\nRaised when a Deserialize struct type expected to receive …\nCalled when deserializing a variant with a single value.\nCalled when deserializing a variant with a single value.\nThis returns Ok(Some(value)) for the next value in the …\nThis returns Ok(Some(value)) for the next value in the …\nThis returns Ok(Some((key, value))) for the next …\nThis returns Ok(Some((key, value))) for the next …\nThis returns Ok(Some(key)) for the next key in the map, or …\nThis returns Ok(Some(key)) for the next key in the map, or …\nThis returns a Ok(value) for the next value in the map.\nThis returns a Ok(value) for the next value in the map.\nProvides type based access to context intended for error …\nReturns the number of elements remaining in the sequence, …\nReturns the number of entries remaining in the map, if …\nThe lower-level source of this error, if any.\nCalled when deserializing a struct-like variant.\nCalled when deserializing a tuple-like variant.\nCalled when deserializing a variant with no values.\nRaised when a Deserialize struct type received a field …\nRaised when a Deserialize enum type received a variant …\nBuilding blocks for deserializing basic values using the …\nvariant is called to identify which variant to deserialize.\nvariant is called to identify which variant to deserialize.\nThe input contains a boolean.\nThe input contains a byte array that lives at least as …\nThe input contains a string that lives at least as long as …\nThe input contains a byte array and ownership of the byte …\nThe input contains a byte array. The lifetime of the byte …\nThe input contains a char.\nThe input contains an enum.\nThe input contains an f32.\nThe input contains an f64.\nThe input contains a i128.\nThe input contains an i16.\nThe input contains an i32.\nThe input contains an i64.\nThe input contains an i8.\nThe input contains a key-value map.\nThe input contains a newtype struct.\nThe input contains an optional that is absent.\nThe input contains a sequence of elements.\nThe input contains an optional that is present.\nThe input contains a string. The lifetime of the string is …\nThe input contains a string and ownership of the string is …\nThe input contains a u128.\nThe input contains a u16.\nThe input contains a u32.\nThe input contains a u64.\nThe input contains a u8.\nThe input contains a unit ().\nA deserializer holding a bool.\nA deserializer holding a &[u8] with a lifetime tied to …\nA deserializer holding a &str with a lifetime tied to …\nA deserializer holding a &[u8]. Always calls …\nA deserializer holding a char.\nA deserializer holding a Cow<str>.\nA deserializer holding an EnumAccess.\nA minimal representation of all possible errors that can …\nA deserializer holding an f32.\nA deserializer holding an f64.\nA deserializer holding an i128.\nA deserializer holding an i16.\nA deserializer holding an i32.\nA deserializer holding an i64.\nA deserializer holding an i8.\nA deserializer holding an isize.\nA deserializer holding a MapAccess.\nA deserializer that iterates over a map.\nA deserializer holding a SeqAccess.\nA deserializer that iterates over a sequence.\nA deserializer holding a &str.\nA deserializer holding a String.\nA deserializer holding a u128.\nA deserializer holding a u16.\nA deserializer holding a u32.\nA deserializer holding a u64.\nA deserializer holding a u8.\nA deserializer holding a ().\nA deserializer holding a usize.\nCheck for remaining elements after passing a …\nCheck for remaining elements after passing 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.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new borrowed deserializer from the given string.\nCreate a new deserializer from the given bytes.\nCreate a new borrowed deserializer from the given borrowed …\nConstruct a new MapDeserializer<I, E>.\nConstruct a new SeqDeserializer<I, E>.\nConstruct a new SeqAccessDeserializer<A>.\nConstruct a new MapAccessDeserializer<A>.\nConstruct a new EnumAccessDeserializer<A>.\nTrait used by Serialize implementations to generically …\nThe error type when some error occurs during serialization.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nHelper type for implementing a Serializer that does not …\nThe output type produced by this Serializer during …\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nA data structure that can be serialized into any data …\nReturned from Serializer::serialize_map.\nType returned from serialize_map for serializing the …\nReturned from Serializer::serialize_seq.\nType returned from serialize_seq for serializing the …\nReturned from Serializer::serialize_struct.\nType returned from serialize_struct for serializing the …\nReturned from Serializer::serialize_struct_variant.\nType returned from serialize_struct_variant for …\nReturned from Serializer::serialize_tuple.\nType returned from serialize_tuple for serializing the …\nReturned from Serializer::serialize_tuple_struct.\nType returned from serialize_tuple_struct for serializing …\nReturned from Serializer::serialize_tuple_variant.\nType returned from serialize_tuple_variant for serializing …\nA data format that can serialize any data structure …\nError is a trait representing the basic expectations for …\nCollect an iterator as a map.\nCollect an iterator as a sequence.\nSerialize a string produced by an implementation of Display…\nUsed when a Serialize implementation encounters any error …\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.\nReturns some reference to the inner value if it is of type …\nForwards to the method defined on the type dyn Error.\nFinish serializing a sequence.\nFinish serializing a tuple.\nFinish serializing a tuple struct.\nFinish serializing a tuple variant.\nFinish serializing a map.\nFinish serializing a struct.\nFinish serializing a struct variant.\nReturns the argument unchanged.\nCalls U::from(self).\nForwards to the method defined on the type dyn Error.\nReturns true if the inner type is the same as T.\nForwards to the method defined on the type dyn Error.\nDetermine whether Serialize implementations should …\nProvides type based access to context intended for error …\nSerialize this value into the given Serde serializer.\nSerialize a bool value.\nSerialize a chunk of raw byte data.\nSerialize a character.\nSerialize a sequence element.\nSerialize a tuple element.\nSerialize a map entry consisting of a key and a value.\nSerialize an f32 value.\nSerialize an f64 value.\nSerialize a tuple struct field.\nSerialize a tuple variant field.\nSerialize a struct field.\nSerialize a struct variant field.\nSerialize an i128 value.\nSerialize an i16 value.\nSerialize an i32 value.\nSerialize an i64 value.\nSerialize an i8 value.\nSerialize a map key.\nBegin to serialize a map. This call must be followed by …\nSerialize a newtype struct like struct Millimeters(u8).\nSerialize a newtype variant like E::N in enum E { N(u8) }.\nSerialize a None value.\nBegin to serialize a variably sized sequence. This call …\nSerialize a Some(T) value.\nSerialize a &str.\nBegin to serialize a struct like …\nBegin to serialize a struct variant like E::S in …\nBegin to serialize a statically sized sequence whose …\nBegin to serialize a tuple struct like …\nBegin to serialize a tuple variant like E::T in …\nSerialize a u128 value.\nSerialize a u16 value.\nSerialize a u32 value.\nSerialize a u64 value.\nSerialize a u8 value.\nSerialize a () value.\nSerialize a unit struct like struct Unit or PhantomData<T>.\nSerialize a unit variant like E::A in enum E { A, B }.\nSerialize a map value.\nIndicate that a struct field has been skipped.\nIndicate that a struct variant field has been skipped.\nThe lower-level source of this error, if any.\nReturns an iterator starting with the current error and …\nFunctions used by serde impls of all hashes.\nSize, in bits, of the hash.\nDefault serialization/deserialization methods.\nDo serde deserialization.\nHelper function to turn a deserialized slice into the …\nDo serde serialization.\nOutput of the SHA1 hash function.\nEngine to compute SHA1 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SHA256 hash function.\nEngine to compute SHA256 hash function.\nOutput of the SHA256 hash function.\nComputes hash from bytes in const context.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a new Midstate from the inner value.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCreate a new HashEngine from a Midstate.\nCopies a byte slice into the Midstate object.\nIterate the sha256 algorithm to turn a sha256 hash into a …\nCreates midstate for tagged hashes.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nUnwraps the Midstate and returns the underlying byte array.\nOutput of the SHA256d hash function.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nOutput of the SHA256t hash function.\nTrait representing a tag that can be used as a context for …\nReturns a hash engine that is pre-tagged and is ready to …\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nOutput of the SHA384 hash function.\nEngine to compute SHA384 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SHA512 hash function.\nEngine to compute SHA512 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SHA512/256 hash function.\nEngine to compute SHA512/256 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SipHash24 hash function.\nEngine to compute the SipHash24 hash function.\nInternal state of the HashEngine.\nReturns the (little endian) 64-bit integer representation …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nProduces a hash as u64 from the current state of a given …\nCreates a hash from its (little endian) 64-bit integer …\nHashes the given data directly to u64 with an engine with …\nHashes the given data with an engine with the provided …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRetrieves the keys of this engine.\nCreates a new SipHash24 engine.\nCreates a new SipHash24 engine with keys.\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.\nThe operation failed because a pipe was closed.\nA trait describing an input stream that uses an internal …\nThe connection was aborted (terminated) by the remote …\nThe connection was refused by the remote server.\nThe connection was reset by the remote server.\nWraps an in memory reader providing the position function.\nContains the error value\nThe io crate error type.\nA minimal subset of std::io::ErrorKind which is used for …\nA bridging wrapper providing the IO traits for types that …\nThis operation was interrupted.\nData not valid for the operation were encountered.\nA parameter was incorrect.\nThe network operation failed because it was not connected …\nAn entity was not found, often a file.\nContains the success value\nA custom error that does not fall under any other I/O …\nThe operation lacked the necessary privileges to complete.\nA generic trait describing an input stream. See …\nResult type returned by functions in this crate.\nA sink to which all writes succeed. See std::io::Sink for …\nReader adapter which limits the bytes read from an …\nThe I/O operation’s timeout expired, causing it to be …\nA bridging wrapper providing the std traits for types that …\nAn error returned when an operation could not be completed …\nThe operation needs to block to complete, but the blocking …\nA generic trait describing an output stream. See …\nAn error returned when an operation could not be completed …\nMarks the buffered data up to amount as consumed.\nReturns data read from this reader, filling the internal …\nFlushes this output stream, ensuring that all …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nWraps a std IO type to implement the traits from this …\nWraps a mutable reference to std IO type to implement the …\nReturns a reference to this error.\nBecause we cannot provide a blanket implementation of …\nReturns a reference to the wrapped value.\nReturns a reference to the wrapped value.\nReturns a reference to the inner buffer.\nReturns a mutable reference to the wrapped value.\nReturns a mutable reference to the wrapped value.\nCalls U::from(self).\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 wrapped value.\nReturns the wrapped value.\nReturns the inner buffer.\nReturns the error kind for this error.\nWraps an IO type.\nWraps an IO type.\nCreates a Cursor by wrapping inner.\nCreates a new I/O error.\nWraps a boxed IO type.\nWraps a boxed IO type.\nWraps a mutable reference to IO type.\nWraps a mutable reference to IO type.\nReturns the position read up to thus far.\nReads bytes from source into buf.\nReads bytes from source until buf is full.\nReads all bytes until EOF from the underlying reader into …\nAttempts to read up to limit bytes from the reader, …\nSets the internal position.\nReturns a sink to which all writes succeed. See …\nCreates an adapter which will read at most limit bytes.\nWrites buf into this writer, returning how many bytes were …\nAttempts to write an entire buffer into this writer.\nA base58 decoding error.\nAn always-compressed Bitcoin ECDSA public key\nError originated while parsing string.\nEven parity.\nError returned while generating key from slice.\nError generated from WIF key format.\nhex to array conversion error.\nBase58 decoded data contained an invalid address version …\nInvalid address version in decoded base58 data.\nBase58 decoded data was an invalid length.\nDecoded base58 data was an invalid length.\nHex decoding error.\nPublicKey hex should be 66 or 130 digits long.\nInvalid key prefix error.\nInvalid Length of the slice.\nOpaque data structure that holds a keypair consisting of a …\nOdd parity.\nRepresents the parity passed between FFI function calls.\nError returned when parsing a CompressedPublicKey from a …\nError returned while constructing public key from string.\nA Bitcoin ECDSA private key\nA hash of a public key.\nA Bitcoin ECDSA public key\nThe secp256k1 engine, used to execute all signature …\nA Secp256k1 error.\nA secp256k1 error.\nSecp256k1 Error.\nAn opaque return type for PublicKey::to_sort_key\nA trait for tweaking BIP340 key types (x-only public keys …\nTweaked key type with optional auxiliary information\nTweaked key type\nTweaked BIP-340 key pair\nTweaked BIP-340 X-coord-only public key\nSegwit public keys must always be compressed.\nUntweaked BIP-340 key pair\nUntweaked BIP-340 X-coord-only public key\nMarker trait for indicating that an instance of Secp256k1 …\nSegWit version of a public key hash.\nAn x-only public key, used for verification of Taproot …\nTweaks a keypair by first converting the public key to an …\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw const pointer suitable for use with FFI …\nLike cmp::Cmp but faster and with no guarantees across …\nWhether this public key should be serialized as compressed\nWhether this private key should be serialized as compressed\nGetter for the raw pointer to the underlying secp256k1 …\nDirectly converts an UntweakedPublicKey to a …\nCreates a new TweakedPublicKey from a XOnlyPublicKey. No …\nCreates a new TweakedKeypair from a Keypair. No tweak is …\nFormats the explicit byte value of the secret key kept …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 Parity from a signed integer.\nReturns the TweakedPublicKey for keypair.\nCreates a context from a raw context.\nCreates a context from a raw context that can only be used …\nCreates a context from a raw context that can only be used …\nCreates a Keypair directly from a secret key slice.\nCreates a Keypair directly from a secret key string.\nCreates a Keypair directly from a Secp256k1 secret key.\nConstructs a Parity from a byte.\nLets you create a context in a generic manner …\nGenerates a random keypair. Convenience function for …\nThe actual ECDSA key\nThe actual ECDSA key\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 version.\nReturns the invalid payload length.\nThe network kind on which this key should be used\nCreates a new Secp256k1 context with all capabilities.\nGenerates a new random secret key.\nAttempts to erase the secret within the underlying array.\nUses the ffi secp256k1_context_preallocated_size to check …\nUses the ffi secp256k1_context_preallocated_size to check …\nReturns the required memory for a preallocated context …\nUses the ffi secp256k1_context_preallocated_size to check …\nLets you create a context with a preallocated buffer in a …\nCreates a new Secp256k1 context with all capabilities.\nCreates a new Secp256k1 context that can only be used for …\nCreates a new Secp256k1 context that can only be used for …\nReturns the PublicKey for this Keypair.\nReturns the TweakedPublicKey and its Parity for this …\n(Re)randomizes the Secp256k1 context for extra sidechannel …\nDetermines the public key for which sig is a valid …\nReturns the secret bytes for this key pair.\nReturns the SecretKey for this Keypair.\n(Re)randomizes the Secp256k1 context for extra sidechannel …\nSerialize the key as a byte-encoded pair of values. In …\nConstructs a signature for msg using the secret key sk and …\nConstructs a signature for msg using the secret key sk, …\nConstructs a signature for msg using the secret key sk, …\nConstructs a signature for msg using the secret key sk and …\nConstructs a signature for msg using the secret key sk and …\nConstructs a signature for msg using the secret key sk and …\nCreates a schnorr signature internally using the …\nCreates a schnorr signature without using any auxiliary …\nCreates a schnorr signature using the given auxiliary …\nCreates a schnorr signature using the given random number …\nCreates a new Secp256k1 context that can only be used for …\nTweaks an untweaked key with corresponding public key …\nTweaks private and public keys within an untweaked Keypair …\nConverts parity into an integer value.\nReturns the underlying public key.\nReturns the underlying key pair.\nConverts parity into an integer (byte) value.\nCreates a new Secp256k1 context that can only be used for …\nChecks that sig is a valid ECDSA signature for msg using …\nVerifies a schnorr signature.\nReturns the XOnlyPublicKey (and it’s Parity) for this …\nOverflowed the bits array\nOverflowed the hashes array\nThe left and right branches should never be identical\nData structure that represents a block header paired to a …\nAn error when verifying the merkle block.\nMerkle root in the header doesn’t match to the root …\nPartial merkle tree contains no transactions.\nNot all bits were consumed\nNot all hashes were consumed\nThere must be at least one bit per node in the partial …\nData structure that represents a partial merkle tree.\nThere are too many hashes\nThere are too many transactions.\nReturns the node-is-parent-of-matched-txid bits of the …\nCalculates the merkle root of an iterator of hashes.\nCalculates the merkle root of a list of hashes, inline (in …\nExtract the matching txid’s represented by this partial …\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a partial merkle tree The txids are the …\nReturns the transaction ids and internal hashes of the …\nThe block header\nCalls U::from(self).\nCalls U::from(self).\nReturns the total number of transactions in the block.\nTransactions making up a partial merkle tree\nMainnet Bitcoin.\nThe Bitcoin mainnet network.\nThe cryptocurrency network to act on.\nWhat kind of network we are on.\nAn error in parsing network string.\nBitcoin’s regtest network.\nBitcoin’s signet network.\nSome kind of testnet network.\nBitcoin’s testnet network. (In future versions this will …\nBitcoin’s testnet4 network. (In future versions this …\nError in parsing network from chain hash.\nModule for serialization/deserialization of network …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nA message which can be sent on the Bitcoin network\nBitcoin mainnet network magic bytes.\nBLOOM means the node is capable and willing to handle …\nCOMPACT_FILTERS means the node will service basic block …\nGETUTXO means the node is capable of responding to the …\nNetwork magic bytes to identify the cryptocurrency network …\nNETWORK means that the node is capable of serving the …\nNETWORK_LIMITED means the same as NODE_NETWORK with the …\nNONE means no services supported.\nP2P_V2 indicates that the node supports the P2P v2 …\nVersion of the protocol as appearing in network message …\nAn error in parsing magic bytes.\nBitcoin regtest network magic bytes.\nBitcoin signet network magic bytes.\nFlags to indicate which network services a node supports.\nBitcoin testnet3 network magic bytes.\nBitcoin testnet3 network magic bytes.\nBitcoin testnet4 network magic bytes.\nError in creating a Network from Magic bytes.\nWITNESS indicates that a node can be asked for blocks and …\nAdd ServiceFlags together.\nBitcoin network addresses.\nNetwork byte-order ipv6 address, or ipv4-mapped ipv6 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate network magic from bytes.\nReturns the magic bytes for the network defined by params.\nCheck whether ServiceFlags are included in this one.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nBitcoin network messages.\nBitcoin blockdata network messages.\nBitcoin Connection Bloom filtering network messages.\nBIP152 Compact Blocks network messages\nBitcoin Client Side Block Filtering network messages.\nBitcoin network-related network messages.\nCreate an address message for a socket\nNetwork port\nRemove ServiceFlags from this.\nServices provided by the peer whose address this is\nExtract socket address from an Address message. This will …\nGet network magic bytes.\nGets the integer representation of this ServiceFlags.\nSupported networks for use in BIP155 addrv2 message\nAddress received from BIP155 addrv2 message\nA message which can be sent on the Bitcoin network\nCJDNS\nI2P\nIPV4\nIPV6\nTORV2\nTORV3\nUnknown\nNetwork ID + Network Address\nNetwork byte-order ipv6 address, or ipv4-mapped ipv6 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nNetwork port\nNetwork port, 0 if not applicable\nServices provided by the peer whose address this is\nService bits\nExtract socket address from an AddrV2Message message. This …\nTime that this node was last seen as connected to the …\naddr\naddrv2\nalert\nblock\nBIP152 blocktxn\nBIP157 cfcheckpt\nBIP157 cfheaders\nBIP157 cfilter\nBIP152 cmpctblock\nSerializer for command string\nError returned when a command string is invalid.\nfeefilter\nBIP 37 filteradd\nBIP 37 filterclear\nBIP 37 filterload\ngetaddr\nBIP152 getblocktxn\ngetblocks\nBIP157 getcfcheckpt\nBIP157 getcfheaders\nBIP157 getcfilters\ngetdata\ngetheaders\nheaders\ninv\nThe maximum number of super::message_blockdata::Inventory …\nMaximum size, in bytes, of an encoded message This by …\nmempool\nmerkleblock\nA Network message payload. Proper documentation is …\nnotfound\nping\npong\nA Network message\nreject\nsendaddrv2\nBIP152 sendcmpct\nsendheaders\ntx\nAny other message.\nverack\nversion\nwtxidrelay\nReturn the message command as a static string reference.\nReturn the message command as a static string reference.\nReturn the CommandString for the message command.\nReturn the CommandString for the message command.\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).\nConsumes the RawNetworkMessage instance and returns the …\nMagic bytes to identify the network these messages are …\nCreates a RawNetworkMessage\nThe actual message data\nConverts &'static str to CommandString\nThe command of this message.\nThe payload of this message.\nBlock\nCompact Block\nError — these inventories can be ignored\nThe getblocks message\nThe getheaders message\nAn inventory item.\nTransaction\nUnknown inventory type\nWitness Transaction by Wtxid\nWitness Block\nWitness Transaction\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nLocator hashes — ordered newest to oldest. The remote …\nLocator hashes — ordered newest to oldest. The remote …\nReturn the item value represented as a SHA256-d hash.\nConstruct a new getblocks message\nConstruct a new getheaders message\nReferences the block to stop at, or zero to just fetch the …\nReferences the header to stop at, or zero to just fetch …\nThe protocol version\nThe protocol version\nThe hash of the inventory item\nThe inventory item type.\nAlways update the filter with outpoints.\nBloom filter update flags\nfilteradd message updates the current filter with new data\nfilterload message sets the current bloom filter\nNever update the filter with outpoints.\nOnly update the filter with outpoints if it is P2PK or P2MS\nThe data element to add to the current filter.\nThe filter itself\nControls how matched items are added to the filter\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nThe number of hash functions to use\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nA random value\nblocktxn message\ncmpctblock message\ngetblocktxn message\nsendcmpct message\nThe Compact Block.\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).\nRequest to be send compact blocks.\nThe requested block transactions.\nThe block transactions request.\nCompact Blocks protocol version number.\ncfcheckpt message\ncfheaders message\ncfilter message\ngetcfcheckpt message\ngetcfheaders message\ngetcfilters message\nBlock hash of the Bitcoin block for which the filter is …\nThe serialized compact filter for this block\nThe filter hashes for each block in the requested range\nThe filter headers at intervals of 1,000\nFilter type for which headers are requested\nByte identifying the type of filter being returned\nByte identifying the type of filter being returned\nFilter type for which headers are requested\nFilter type for which headers are requested\nFilter type for which headers are requested\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).\nThe filter header preceding the first block in the …\nThe height of the first block in the requested range\nThe height of the first block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\ncheckpoint\nduplicate message\nan output is below dust limit\ninsufficient fee\ninvalid message\nmalformed message\nnonstandard transaction\nobsolete message\nReject message might be sent by peers rejecting one of our …\nmessage rejection reason as a code\nSome simple messages The version message\nreason of rejection as code\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nreference to rejected item\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nmessage type rejected\nConstructs a new version message with relay set to false\nA random nonce used to detect loops in the network\nreason of rejectection\nThe network address of the peer receiving the message\nWhether the receiving peer should relay messages to the …\nThe network address of the peer sending the message\nA bitmask describing the services supported by this node\nThe height of the maximum-work blockchain that the peer is …\nThe time at which the version message was sent\nA string describing the peer’s software\nThe P2P network protocol version\nError with rich context returned when a string can’t be …\nReturns the argument unchanged.\nReturns the input that was attempted to be parsed.\nCalls U::from(self).\nThe number of bytes equivalent per signature operation. …\nThe minimum incremental feerate (despite the name), in …\nDefault number of hours for an unconfirmed transaction to …\nMinimum feerate, in sats per virtual kilobyte, for a …\nThe minimum feerate, in sats per kilo-virtualbyte, for …\nMaximum number of sigops in a standard tx.\nMaximum weight of a transaction for it to be relayed by …\nMinimum non-witness size for a standard transaction (1 …\nThe virtual transaction size, as computed by default by …\nEncoding of 256-bit target as 32-bit float.\nA 256 bit integer representing target.\nA 256 bit integer representing work.\nThe FeeRate is too high\nAn output of type: pay-to-pubkey or pay-to-pubkey-hash.\nError in PSBT Base64 encoding.\nRequest a private key using BIP-32 fingerprint and …\nA bip32 error.\nConflicting data during combine procedure: global extended …\nSerialization error in bitcoin consensus-encoded structures\nKeys within key-value map should never be duplicated.\nKeys used to sign an ECDSA input.\nThe Elliptic Curve Digital Signature Algorithm (see …\nWays that a Partially Signed Transaction might fail.\nAn error occurred while getting the key.\nThis error is returned when extracting a Transaction from …\nInteger overflow in fee calculation\nTrait to get a private key from a key request, key is then …\nErrors when getting a key.\nInput index out of bounds.\nInput index out of bounds (actual index, maximum index …\nA key-value map for an input of the corresponding index in …\nThe index is out of bounds for the psbt.inputs vector.\nParsing error indicating invalid control block\nParsing error indicating invalid ECDSA signatures\nInvalid hash when parsing slice.\nKnown keys must be according to spec.\nParsing error indicating invalid leaf version\nMagic bytes for a PSBT must be the ASCII for “psbt” …\nThe pre-image must hash to the corresponding psbt hash\nNon-proprietary key type found when proprietary key was …\nParsing error indicating invalid public keys\nParsing error indicating invalid secp256k1 public keys\nThe separator for a PSBT must be 0xff.\nInvalid Sighash type.\nParsing error indicating invalid taproot signatures\nParsing error indicating invalid xonly public keys\nI/O error.\nUnable to find key.\nData required to call GetKey to get the private key to …\nSigning algorithm and key type does not match.\nMissing input utxo.\nOne or more of the inputs lacks value information …\nMissing Redeem script.\nMissing spending utxo.\nMissing both the witness and non-witness utxo.\nMissing witness script.\nA PSBT must have an unsigned transaction.\nNegative fee\nSignals that there are no more key-value pairs in a …\nUnable to parse as a standard sighash type.\nAttempted to ECDSA sign an non-ECDSA input.\nThe GetKey operation is not supported for this key request.\nThe scriptPubkey is not a P2WPKH script.\nA key-value map for an output of the corresponding index …\nThe various output types supported by the Bitcoin network.\nSighash computation error (p2wpkh input).\nPSBT data is not consumed entirely\nA Partially Signed Transaction.\nError in internal PSBT data structure.\nError encountered during PSBT decoding from Base64 string.\nA Signature hash type for the corresponding input.\nReturned when output index is out of bounds in relation to …\nRequest a private key using the associated public key.\nKeys used to sign a Taproot input.\nThe Schnorr signature algorithm (see wikipedia).\nSighash computation error (segwit v0 input).\nInput value is less than Output Value, and the Transaction …\nA pay-to-script-hash output excluding wrapped segwit …\nA nested segwit output, pay-to-witness-pubkey-hash nested …\nA nested segwit output, pay-to-witness-script-hash nested …\nErrors encountered while calculating the sighash message.\nSigning algorithms supported by the Bitcoin network.\nMap of input index -> the error encountered while …\nA list of keys used to sign an input.\nMap of input index -> signing key for that input (see …\nTaproot tree deserilaization error\nParsing error indicating a taproot error\nSighash computation error (taproot input).\nA taproot output (P2TR).\nThe index is out of bounds for the psbt.unsigned_tx.input …\nAttempting to combine with a PSBT describing a different …\nUnable to determine the output type.\nThe scriptSigs for the unsigned transaction must be empty.\nThe scriptWitnesses for the unsigned transaction must be …\nSigning request currently unsupported.\nError related to PSBT version\nA pay-to-witness-pubkey-hash output (P2WPKH).\nAttempt to sign an input with the wrong signing algorithm.\nA pay-to-witness-script-hash output (P2WSH).\nError related to an xpub key\nA map from public keys needed to spend this output to their\nA map from public keys needed to sign this input to their …\nCombines this Output with other Output (as described by …\nCombines this Input with other Input (as described by BIP …\nReturns the EcdsaSighashType if the PsbtSighashType can be …\nObtains the EcdsaSighashType for this input if one is …\nThe finalized, fully-constructed scriptSig with signatures …\nThe finalized, fully-constructed scriptWitness with …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 PsbtSighashType from a raw u32.\nAttempts to get the private key for key_request.\nHSAH160 hash to preimage map.\nHAS256 hash to preimage map.\nThe corresponding key-value map for each input in 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).\nCalls U::from(self).\nThe non-witness transaction this input spends from. Should …\nThe corresponding key-value map for each output in the …\nA map from public keys to their corresponding signature as …\nProprietary key-value pairs for this output.\nGlobal proprietary key-value pairs.\nProprietary key-value pairs for this input.\nRaw PSBT key-value pairs.\nThe redeem script for this output.\nThe redeem script for this input.\nRIPEMD160 hash to preimage map.\nPSBT serialization.\nSHA256 hash to preimage map.\nThe sighash type to be used for this input. Signatures for …\nThe signing algorithm used to sign this output type.\nThe internal pubkey.\nTaproot Internal key.\nMap of tap root x only keys to origin info and leaf hashes …\nMap of tap root x only keys to origin info and leaf hashes …\nSerialized taproot signature with sighash type for key …\nTaproot Merkle root.\nMap of <xonlypubkey>|<leafhash> with signature.\nMap of Control blocks to Script version pair.\nTaproot Output tree.\nReturns the TapSighashType if the PsbtSighashType can be …\nObtains the TapSighashType for this input if one is …\nConverts PsbtSighashType to a raw u32 sighash flag.\nUnknown key-value pairs for this output.\nUnknown global key-value pairs.\nUnknown key-value pairs for this input.\nThe unsigned transaction, scriptSigs and witnesses for …\nThe version number of this PSBT. If omitted, the version …\nThe witness script for this output.\nThe witness script for this input.\nThe transaction output this input spends from. Should only …\nA global map from extended public keys to the used key …\nActual\nExpected\nHash value\nHash-type\nPre-image\nThe FeeRate\nThe original Psbt is returned untouched.\nThe extracted Transaction (use this to ignore the error)\nThe extracted Transaction (use this to ignore the error)\nAttempted index access.\nAttempted index access.\nLength of the PBST inputs vector.\nLength of the PBST’s unsigned transaction input vector.\nA PSBT key in its raw byte form.\nA PSBT key-value pair in its raw byte form. …\nProprietary keys (i.e. keys starting with 0xFC byte) with …\nDefault implementation for proprietary key subtyping\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nAdditional key bytes (like serialized public key data etc)\nThe key of this key-value pair.\nThe key itself in raw byte form. …\nProprietary type prefix used for grouping together keys …\nCustom proprietary subtype\nConstructs full Key corresponding to this proprietary key …\nConstructs a ProprietaryKey from a Key.\nThe type of this PSBT key.\nThe value data of this key-value pair in raw byte form. …\nRepresents the set of all capabilities.\nRepresents the set of all capabilities (preallocated …\nA trait for all kinds of contexts that lets you define the …\nA constant description of the context.\nThe main error type for this library.\nEven parity.\nFlags for the ffi.\nSignature failed verification.\nBad EllSwift value\nBad sized message (“messages” are actually fixed-sized …\nError returned when conversion from an integer to Parity …\nThe only valid parity values are 0 or 1.\nBad public key.\nBad set of public keys.\nBad recovery id.\nBad secret key.\nBad shared secret.\nBad signature.\nTried to add/multiply by an invalid tweak.\nOpaque data structure that holds a keypair consisting of a …\nMaximum valid value: curve_order - 1\nA (hashed) message input to an ECDSA signature.\nDidn’t pass enough memory to context creation with …\nScalar representing 1\nOdd parity.\nRepresents the parity passed between FFI function calls.\nTrait marking that a particular context object internally …\nPublic key - used to verify ECDSA signatures and to do …\nPositive 256-bit integer guaranteed to be less than the …\nThe secp256k1 engine, used to execute all signature …\nSecret key - a 256-bit key used to create ECDSA and …\nRepresents the set of capabilities needed for signing.\nRepresents the set of capabilities needed for signing …\nMarker trait for indicating that an instance of Secp256k1 …\nTrait describing something that promises to be a 32-byte …\nMarker trait for indicating that an instance of Secp256k1 …\nRepresents the set of capabilities needed for verification.\nRepresents the set of capabilities needed for verification …\nAn x-only public key, used for verification of Taproot …\nScalar representing 0\nTweaks a PublicKey by adding tweak * G modulo the curve …\nTweaks a SecretKey by adding tweak modulo the curve order.\nObtains a const pointer suitable for use with FFI …\nObtains a mutable pointer suitable for use with FFI …\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw const pointer suitable for use with FFI …\nGets a reference to the underlying array.\nGets a reference to the underlying array\nLike cmp::Cmp but faster and with no guarantees across …\nAdds a second key to this one, returning the sum.\nAdds the keys in the provided slice together, returning …\nConstants related to the API and the underlying curve.\nA function to deallocate the memory when the context is …\nFormats the explicit byte value of the secret key kept …\nSupport for shared secret computations.\nStructs and functionality related to the ECDSA signature …\nThis module provides an implementation of ElligatorSwift …\nThis implementation is designed to be constant time to …\nLike cmp::Eq but faster and with no guarantees across …\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 32-byte hash directly to a secret key without …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a 32-byte hash directly to a message without …\nReturns the argument unchanged.\nTries to deserialize from big endian bytes\nCreates a Message from a digest.\nCreates a Message from a 32 byte slice digest.\nCreates a new public key from an ElligatorSwift.\nCreates a new secret key using data from BIP-340 Keypair.\nCreates a new compressed public key using data from …\nTries to deserialize from little endian bytes\nCreates a new public key from a SecretKey.\nConverts a SECRET_KEY_SIZE-byte slice to a secret key.\nCreates a public key directly from a slice.\nCreates a Message from a 32 byte slice digest.\nCreates a PublicKey using the key material from pk …\nDeprecated reexport of the bitcoin-hashes crate.\nImplement methods and traits for types that contain an …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 object into a 32-byte array\nReturns the Keypair for this SecretKey.\nTweaks a SecretKey by multiplying by tweak modulo the …\nTweaks a PublicKey by multiplying by tweak modulo the …\nNegates the secret key.\nNegates the public key.\nGenerates a new random secret key.\nAttempts to erase the contents of the underlying array.\nAttempts to erase the contents of the underlying array.\nReturns the PublicKey for this SecretKey.\nGenerates a random scalar\nGenerates a random scalar using supplied RNG\nProvides Scalar and related types.\nSupport for schnorr signatures.\nReturns the secret key as a byte value.\nSerializes the key as a byte-encoded pair of values. In …\nSerializes the key as a byte-encoded pair of values, in …\nSerializes to big endian bytes\nSerializes to little endian bytes\nChecks that sig is a valid ECDSA signature for msg using …\nReturns the XOnlyPublicKey (and it’s Parity) for this …\nReturns the XOnlyPublicKey (and it’s Parity) for this …\nThe maximum size of a compact signature.\nThe order of the secp256k1 curve.\nThe size of a full ElligatorSwift encoding.\nThe Prime for the secp256k1 field element.\nThe X coordinate of the generator.\nThe Y coordinate of the generator.\nThe size of a key pair.\nThe maximum size of a signature.\nThe size (in bytes) of a message.\nThe value one as big-endian array of bytes.\nThe size (in bytes) of a serialized public key.\nThe size of a schnorr public key.\nThe size of a schnorr signature.\nThe size (in bytes) of a secret key.\nThe size (in bytes) of an serialized uncompressed public …\nThe value zero as an array of bytes.\nEnables two parties to create a shared secret without …\nFormats the explicit byte value of the shared secret kept …\nReturns the argument unchanged.\nCreates a shared secret from bytes array.\nCreates a shared secret from bytes slice.\nCalls U::from(self).\nCreates a new shared secret from a pubkey and secret key.\nAttempts to erase the contents of the underlying array.\nReturns the shared secret as a byte value.\nCreates a shared point from public key and secret key.\nAn ECDSA signature with a recovery ID for pubkey recovery.\nA tag used for recovering the public key from a compact …\nA DER serialized Signature\nAn ECDSA signature\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw pointer suitable for use with FFI functions.\nObtains a raw pointer suitable for use with FFI functions\nGet the capacity of the underlying data buffer.\nLike cmp::Cmp but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a compact-encoded byte slice to a signature. This …\nConverts a 64-byte compact-encoded byte slice to a …\nConverts a DER-encoded byte slice to a signature\nConverts a “lax DER”-encoded byte slice to a …\nAllows library users to create valid recovery IDs from i32.\nCreate a SerializedSignature from a Signature. (this DER …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCheck if the space is zero.\nGet the len of the used data.\nNormalizes a signature to a “low S” form. In ECDSA, …\nSerializes the recoverable signature in compact format.\nSerializes the signature in compact format\nSerializes the signature in DER format\nImplements SerializedSignature and related types.\nAllows library users to convert recovery IDs to i32.\nConvert the serialized signature into the Signature struct.\nConverts a recoverable signature to a non-recoverable one …\nOwned iterator over the bytes of SerializedSignature\nA DER serialized Signature\nReturns the remaining bytes as a slice.\nReturns the argument unchanged.\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nWe are the initiator of the ECDH\nWe are the responder of the ECDH\nElligatorSwift is an encoding of a uniformly chosen point …\nRepresents which party we are in the ECDH, A is the …\nThe result of ElligatorSwift::shared_secret, which is a …\nReturns the secret bytes as a reference to an array.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an ElligatorSwift object from a 64-byte array.\nComputes the ElligatorSwift encoding for a valid public key\nCreates the Elligator Swift encoding from a secret key, …\nCreates shared secret from bytes.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new ElligatorSwift object from a 64-byte array.\nComputes a shared secret only known by Alice and Bob. This …\nComputes a shared secret, just like shared_secret, but …\nReturns the 64-byte array representation of this …\nReturns the secret bytes as an array.\nA trait for producing pointers that will always be valid …\nA Secp256k1 context, containing various precomputed values …\nHash function to use to post-process an ECDH point to get …\nLibrary-internal representation of a ElligatorSwift …\nA hash function used by ellswift_ecdh to hash the final …\nA nonce generation function. Ordinary users of the library …\nNo value.\nNo value.\nNo value.\nNo value.\nLibrary-internal representation of a Secp256k1 public key\nFlag for keys to indicate compressed serialization format\nFlag for keys to indicate uncompressed serialization format\nFlag for context to enable no precomputation\nFlag for context to enable signing precomputation\nFlag for context to enable verification precomputation\nSame as secp256k1_nonce function with the exception of …\nData structure that contains additional arguments for …\nLibrary-internal representation of a Secp256k1 signature\nSome value of type T.\nSome value of type T.\nSome value of type T.\nSome value of type T.\nGets a reference to the underlying array\nGets a reference to the underlying array\nGets a reference to the underlying array\nGets a reference to the underlying array\nGets a reference to the underlying array\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a new public key usable for the FFI interface from …\nCreate a new signature usable for the FFI interface from …\nCreate a new x-only public key usable for the FFI …\nCreate a new keypair usable for the FFI interface from raw …\nImplement methods and traits for types that contain an …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new SchnorrSigExtraParams properly initialized.\nCreates an “uninitialized” FFI public key which is …\nCreates an “uninitialized” FFI signature which is …\nCreates an “uninitialized” FFI x-only public key which …\nCreates an “uninitialized” FFI keypair which is zeroed …\nAttempts to erase the contents of the underlying array.\nDoes a best attempt at secure erasure using Rust …\nFFI of the recovery module\nA reimplementation of the C function …\nThis function is an override for the C function, this is …\nThis function is an override for the C function, this is …\nA reimplementation of the C function …\nA reimplementation of the C function …\nDefault ECDH hash function\nDefault ECDH hash function for BIP324 key establishment\nReturns the underlying FFI opaque representation of the …\nReturns the underlying FFI opaque representation of the …\nReturns the underlying FFI opaque representation of the …\nReturns the underlying FFI opaque representation of the …\nLibrary-internal representation of a Secp256k1 signature + …\nGets a reference to the underlying array\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nCalls U::from(self).\nCreate a new (zeroed) signature usable for the FFI …\nA type that is as aligned as the biggest alignment for …\nA static zeroed out AlignedType for use in static …\nThis might not match C’s c_char exactly. The way we use …\nEquivalent to C’s void type when used as a pointer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nLength of the hash’s internal block size, in bytes.\nThe byte array that represents the hash internally.\nFlag indicating whether user-visible serializations of …\nA hashing engine which bytes can be serialized into. It is …\nAttempted to create a hash from an invalid length slice.\nTrait which applies to hashes of all types.\nA hashing engine which bytes can be serialized into.\nA hash computed from a RFC 2104 HMAC. Parameterized by the …\nPair of underlying hash engines, used for the inner and …\nLength of the hash, in bytes.\nByte array representing the internal state of the hash …\nReturns an all zero hash.\nReturns a reference to the underlying byte array.\nAdds slicing traits implementations to a given type $ty\nConstructs a new engine.\nReturns the expected slice length.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs a hash from the underlying byte array.\nProduces a hash from the current state of a given engine.\nA special constructor giving direct access to the …\nCopies a byte slice into a hash object.\nHashes some bytes.\nHashes all the byte slices retrieved from the iterator …\nCreates a new newtype around a Hash type.\nAdds hexadecimal formatting implementation of a trait $imp …\nAdd data to the hash engine.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid slice length.\nOutputs the midstate of the hash engine. This function …\nReturn the number of bytes already …\nConstructs a new keyed HMAC from key.\nImplements Serialize and Deserialize for a type $t which …\nMacro used to define a newtype tagged hash.\nReturns the underlying byte array.\nCodes at or above this point can be used by users to …\nA marker trait used to indicate that an RngCore or …\nError type of random number generators\nTypes which may be filled with random data\nCodes below this point represent OS Errors (i.e. positive …\nAn automatically-implemented extension trait on RngCore …\nThe core of a random number generator.\nSeed type, which is restricted to types …\nA random number generator that can be explicitly seeded.\nRetrieve the error code, if any.\nGenerating random samples from probability distributions\nFill any type implementing Fill with random data\nFill dest with random data.\nReturns the argument unchanged.\nCreates a new instance of the RNG seeded via getrandom.\nCreate a new PRNG seeded from another Rng.\nCreate a new PRNG using the given seed.\nReturn a random value supporting the Standard distribution.\nReturn a bool with a probability p of being true.\nGenerate a random value in the given range.\nReturn a bool with a probability of numerator/denominator …\nReference the inner error (std only)\nCalls U::from(self).\nConstruct from any type supporting std::error::Error\nReturn the next random u32.\nReturn the next random u64.\nConvenience re-export of common members\nGenerates a random value using the thread-local random …\nExtract the raw OS error code (if this error came from the …\nRandom number generators and adapters\nSample a new value, using the given distribution.\nCreate an iterator that generates values using the given …\nCreate a new PRNG using a u64 seed.\nSequence-related functionality\nUnwrap the inner error (std only)\nRetrieve the lazily-initialized thread-local random number …\nFill self with random data\nFill any type implementing Fill with random data\nFill dest entirely with random data.\nAll items in the provided weight collection are zero.\nSample a u8, uniformly distributed over ASCII letters and …\nThe Bernoulli distribution.\nError type returned from Bernoulli::new.\nAn iterator that generates random values of T with …\nA distribution of values of type S derived from the …\nString sampler\nTypes (distributions) that can be used to create a random …\np < 0 or p > 1.\nA weight is either less than zero, greater than the …\nThe provided weight collection contains no items.\nA distribution to sample floating point numbers uniformly …\nA distribution to sample floating point numbers uniformly …\nA distribution to sample items uniformly from a slice.\nA generic random value distribution, implemented for many …\nToo many weights are provided (length greater than u32::MAX…\nSample values uniformly between two bounds.\nError type returned from WeightedIndex::new.\nA distribution using weighted sampling of discrete items\nAppend len random chars to string\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a new Bernoulli with the probability of success …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nCreate a distribution of values of ‘S’ by mapping the …\nConstruct a new Bernoulli with the given probability of …\nCreate a new Slice instance which samples uniformly from …\nCreates a new a WeightedIndex Distribution using the values\nCreate a new Uniform instance which samples uniformly from …\nCreate a new Uniform instance which samples uniformly from …\nGenerate a random value of T, using rng as the source of …\nCreate an iterator that generates random values of T, …\nGenerate a String of len random chars\nConvert an iterator of Results into FallibleIterator by …\nA distribution uniformly sampling numbers within a given …\nUpdate a subset of weights, without changing the number of …\nWeighted index sampling\nHelper trait similar to Borrow but implemented only for …\nRange that supports generating a single sample efficiently.\nHelper trait for creating objects using the correct …\nThe UniformSampler implementation supporting type X.\nSample values uniformly between two bounds.\nThe back-end implementing UniformSampler for char.\nThe back-end implementing UniformSampler for Duration.\nThe back-end implementing UniformSampler for …\nThe back-end implementing UniformSampler for integer types.\nHelper trait handling actual uniform sampling.\nThe type sampled by this implementation.\nImmutably borrows from an owned value. See Borrow::borrow\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).\nCheck whether the range is empty.\nConstruct self, with inclusive lower bound and exclusive …\nConstruct self, with inclusive bounds [low, high].\nSample a value.\nGenerate a sample from the given range.\nSample a single value uniformly from a range with …\nSample a single value uniformly from a range with …\nAll items in the provided weight collection are zero.\nA weight is either less than zero, greater than the …\nThe provided weight collection contains no items.\nToo many weights are provided (length greater than u32::MAX…\nError type returned from WeightedIndex::new.\nA distribution using weighted sampling of discrete items\nReturns the argument unchanged.\nCalls U::from(self).\nA marker trait used to indicate that an RngCore or …\nTypes (distributions) that can be used to create a random …\nThe element type.\nExtension trait on iterators, providing random sampling …\nAn automatically-implemented extension trait on RngCore …\nThe core of a random number generator.\nSeed type, which is restricted to types …\nA random number generator that can be explicitly seeded.\nExtension trait on slices, providing random mutation and …\nThe standard RNG. The PRNG algorithm in StdRng is chosen …\nA reference to the thread-local generator\nReturns a reference to one random element of the slice, or …\nChoose one element at random from the iterator.\nChooses amount elements from the slice at random, without …\nCollects amount values at random from the iterator into a …\nCollects values at random from the iterator into a …\nSimilar to choose_multiple, but where the likelihood of …\nReturns a mutable reference to one random element of the …\nChoose one element at random from the iterator.\nSimilar to choose, but where the likelihood of each …\nSimilar to choose_mut, but where the likelihood of each …\nFill any type implementing Fill with random data\nFill dest with random data.\nCreates a new instance of the RNG seeded via getrandom.\nCreate a new PRNG seeded from another Rng.\nCreate a new PRNG using the given seed.\nReturn a random value supporting the Standard distribution.\nReturn a bool with a probability p of being true.\nGenerate a random value in the given range.\nReturn a bool with a probability of numerator/denominator …\nCreate a distribution of values of ‘S’ by mapping the …\nReturn the next random u32.\nReturn the next random u64.\nShuffle a slice in place, but exit early.\nGenerates a random value using the thread-local random …\nGenerate a random value of T, using rng as the source of …\nSample a new value, using the given distribution.\nCreate an iterator that generates random values of T, …\nCreate an iterator that generates values using the given …\nCreate a new PRNG using a u64 seed.\nShuffle a mutable slice in place.\nRetrieve the lazily-initialized thread-local random number …\nFill any type implementing Fill with random data\nFill dest entirely with random data.\nA random number generator that retrieves randomness from …\nThe standard RNG. The PRNG algorithm in StdRng is chosen …\nA reference to the thread-local generator\nWrappers / adapters forming RNGs\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nMock random number generator\nReadRng error type\nAn RNG that reads random bytes straight from any type …\nA wrapper around any PRNG that implements BlockRngCore, …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new ReadRng from a Read.\nCreate a new ReseedingRng from an existing PRNG, combined …\nReseed the internal PRNG.\nA simple implementation of RngCore for testing purposes.\nReturns the argument unchanged.\nCalls U::from(self).\nCreate a StepRng, yielding an arithmetic sequence starting …\nThe element type.\nExtension trait on iterators, providing random sampling …\nAn iterator over multiple slice elements.\nExtension trait on slices, providing random mutation and …\nReturns a reference to one random element of the slice, or …\nChoose one element at random from the iterator.\nChooses amount elements from the slice at random, without …\nCollects amount values at random from the iterator into a …\nCollects values at random from the iterator into a …\nSimilar to choose_multiple, but where the likelihood of …\nReturns a mutable reference to one random element of the …\nChoose one element at random from the iterator.\nSimilar to choose, but where the likelihood of each …\nSimilar to choose_mut, but where the likelihood of each …\nReturns the argument unchanged.\nLow-level API for sampling indices\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nShuffle a slice in place, but exit early.\nShuffle a mutable slice in place.\nConvert an iterator of Results into FallibleIterator by …\nA vector of indices.\nReturn type of IndexVec::into_iter.\nReturn type of IndexVec::iter.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturn the value at the given index.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert into an iterator over the indices as a sequence of …\nReturn result as a Vec<usize>. Conversion may or may not …\nReturns true if the length is 0.\nIterate over the indices as a sequence of usize values\nReturns the number of indices\nRandomly sample exactly amount distinct indices from …\nRandomly sample exactly amount distinct indices from …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nError returned when the value of scalar is invalid - …\nPositive 256-bit integer guaranteed to be less than the …\nReturns the argument unchanged.\nCalls U::from(self).\nRepresents a schnorr signature.\nGets a reference to the underlying array\nReturns the argument unchanged.\nCreates a Signature directly from a slice.\nCalls U::from(self).\nReturns a signature as a byte array.\nWhen SIGHASH_ANYONECANPAY is not provided, or when the …\n0x1: Sign all outputs.\n0x1: Sign all outputs.\n0x81: Sign all outputs but only this input.\n0x81: Sign all outputs but only this input.\nThe Annex struct is a slice wrapper enforcing first byte …\nAnnex must be at least one byte long and the first bytes …\n0x0: Used when not explicitly specified, defaults to …\nHashtype of an input’s signature, encoded in the last …\nThe annex is empty.\nResult of SighashCache::legacy_encode_signing_data_to.\nIncorrect prefix byte in the annex.\nIndex out of bounds when accessing transaction input …\nInvalid index when accessing a Prevouts::All kind.\nInvalid index when accessing a Prevouts::One kind.\nInvalid Sighash type.\nInteger is not a consensus valid sighash type.\nCan happen only when using *_encode_signing_* methods with …\nHash of a transaction according to the legacy signature …\nThis type is consensus valid but an input including it …\n0x2: Sign no outputs — anyone can choose the destination.\n0x2: Sign no outputs — anyone can choose the destination.\n0x82: Sign no outputs and only this input.\n0x82: Sign no outputs and only this input.\nScript is not a witness program for a p2wpkh output.\nOne variant allows provision of the single prevout needed. …\nError computing a P2WPKH sighash.\nContains outputs of previous transactions. In the case …\nPrevouts index error.\nPrevouts index related errors.\nPrevouts kind error.\nA single prevout was been provided but all prevouts are …\nPrevouts size error.\nThe number of supplied prevouts differs from the number of …\nInformation related to the script path spending.\nHash of a transaction according to the segwit version 0 …\nError computing the sighash.\nAn argument to the called sighash function was invalid.\nEfficiently calculates signature hash message for legacy, …\nInput data is an instance of SIGHASH_SINGLE bug\nError returned for failure during parsing one of the …\nError returned when writing signing data fails.\n0x3: Sign the output whose index matches this input’s …\n0x3: Sign the output whose index matches this input’s …\nUsing SIGHASH_SINGLE requires an output at the same index …\nUsing SIGHASH_SINGLE requires an output at the same index …\n0x83: Sign one output and only this input (see Single for …\n0x83: Sign one output and only this input (see Single for …\nTaproot-tagged hash with tag "TapSighash".\nThe tag used for TapSighash\nHashtype of an input’s signature, encoded in the last …\nError computing a taproot sighash.\nOperation performed normally.\nReturns the Annex bytes data (including first byte 0x50).\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nInput index.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nDestroys the cache and recovers the stored transaction.\nChecks for SIGHASH_SINGLE bug returning error if the …\nComputes the leaf hash for this ScriptPath.\nEncodes the legacy signing data from which a signature …\nComputes a legacy signature hash for a given input index …\nMaps a Result<T, E> to Result<T, F> by applying a function …\nConstructs a new SighashCache from an unsigned transaction.\nCreates a new ScriptPath structure.\nCreates a new Annex struct checking the first byte is 0x50.\nLength of the output vector.\nComputes the BIP143 sighash to spend a p2wpkh transaction …\nComputes the BIP143 sighash to spend a p2wsh transaction …\nEncodes the BIP143 signing data for any flag type into a …\nEncodes the BIP341 signing data for any flag type into a …\nComputes the BIP341 sighash for a key spend.\nComputes the BIP341 sighash for a script spend.\nComputes the BIP341 sighash for any flag type.\nReturns the reference to the cached transaction.\nThe unrecognized string we attempted to parse.\nCreates a new ScriptPath structure using default leaf …\nAllows modification of witnesses.\nThe prefix for signed messages using Bitcoin’s message …\nInvalid base64 encoding.\nThe signature is invalidly constructed.\nSignature is expected to be 65 bytes.\nA signature on a Bitcoin Signed Message.\nAn error used for dealing with Bitcoin Signed Messages.\nUnsupported Address Type\nWhether or not this signature was created with a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nConvert a signature from base64 encoding.\nCreate from a byte slice.\nCalls U::from(self).\nCalls U::from(self).\nVerify that the signature signs the message and was signed …\nCreate a new MessageSignature.\nAttempt to recover a public key from the signature and the …\nSerialize to bytes.\nThe inner recoverable signature.\nHash message for signature using Bitcoin’s message …\nConvert to base64 encoding.\nControl block data structure used in Tapscript …\nCalled finalize on a empty tree.\nEmpty tap tree.\nFuture leaf version.\nInner type representing future (non-tapscript) leaf …\nHidden Node with the given leaf hash\nError happening when TapTree is constructed from a NodeInfo\nIndicates an attempt to construct a tap tree from a …\nIndicates an attempt to construct a tap tree from a …\nError happening when TapTree is constructed from a …\nInvalid control block size.\nInvalid taproot internal key.\nInvalid taproot internal key.\nProof size must be a multiple of 32.\nMerkle tree depth must not be more than 128.\nMerkle tree depth must not be more than 128.\nInvalid taproot signature size\nThe last bit of tapleaf version must be zero.\nStore information about taproot leaf node.\nIterator for a taproot script tree, operating in DFS order …\nThe leaf version for tapleafs.\nRepresents the node information in taproot tree. In …\nNodes must be added specified in DFS walk order.\nIndicates an attempt to construct a tap tree from a …\nTwo nodes at depth 0 are not allowed.\nA known script\nScript leaf node in a taproot tree along with the merkle …\nIterator for a taproot script tree, operating in DFS order …\nA secp256k1 error.\nAn error constructing a taproot::Signature from a byte …\nInvalid signature hash type.\nA BIP340-341 serialized taproot signature with the …\nTaproot annex prefix.\nTapscript control base size.\nMaximum depth of a taproot tree script spend path.\nTapscript control max size.\nSize of a taproot control node.\nTapleaf mask for getting the leaf version from first byte …\nTapscript leaf version.\nThe tag used for TapNodeHash\nLeaf node in a taproot tree. Can be either hidden or known.\nTaproot-tagged hash with tag "TapLeaf".\nThe tag used for TapLeafHash\nTagged hash used in taproot trees.\nBIP-342 tapscript.\nTaproot Tree representing a complete binary tree without …\nTaproot-tagged hash with tag "TapTweak".\nThe tag used for TapTweakHash\nBuilder for building taproot iteratively. Users can …\nDetailed error type for taproot builder.\nDetailed error type for taproot utilities.\nThe merkle proof for inclusion of a tree in a taptree hash.\nRepresents taproot spending information.\nAdds a hidden/omitted node at depth to the builder. Errors …\nAdds a leaf script at depth to the builder with default …\nAdds a leaf script at depth to the builder with script …\nObtains the hidden leaf hash if the leaf is hidden.\nReturns a reference to the slice of hashes.\nObtains a reference to script and version if the leaf is …\nReturns a reference to the slice of hashes.\nCombines two NodeInfo to create a new parent.\nConstructs a ControlBlock for particular script with the …\nDecodes bytes from control block.\nDecodes bytes representing a ControlBlock.\nReturns the depth of this script leaf in the tap tree.\nSerializes to a writer.\nSerializes to a writer.\nCreates a TaprootSpendInfo with the given internal key.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 LeafVersion from consensus byte representation.\nObtains a script leaf from the leaf node if the leaf is …\nComputes the TaprootSpendInfo from internal_key and node.\nDeserialize from slice\nChecks if the builder has hidden nodes.\nReturns the internal key for this TaprootSpendInfo.\nThe internal key.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 error into the original incomplete TaprootBuilder …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nReturns the inner list of hashes.\nConverts error into the original incomplete NodeInfo …\nGets the inner NodeInfo of this tree root.\nReturns the list of hashes stored in a Vec.\nChecks if this merkle proof is empty.\nChecks if the builder has finalized building a tree.\nReturns a reference to the leaf of this ScriptLeaf.\nComputes a leaf hash for this ScriptLeaf if the leaf is …\nCreates an iterator over all leaves (including hidden …\nReturns leaf version of the script if the leaf is known.\nThe tapleaf version.\nReturns the number of nodes in this merkle proof.\nContains TaprootMerkleBranch and its associated types.\nReturns reference to the merkle proof (hashing partners) …\nObtains a reference to the merkle proof of the leaf.\nThe merkle proof of a script associated with this leaf.\nReturns the merkle root for this TaprootSpendInfo.\nCreates a new instance of TaprootBuilder.\nCreates an new ScriptLeaf from hash and no merkle branch.\nCreates a new NodeInfo with omitted/hidden info.\nCreates a new key spend with internal_key and merkle_root. …\nCreates a new leaf NodeInfo with given ScriptBuf and …\nCreates an new ScriptLeaf from script and ver and no …\nReturns the root TapNodeHash of this node info.\nComputes the TapNodeHash for this ScriptLeaf. This returns …\nGets the reference to inner NodeInfo of this tree root.\nReturns the output key (the key used in script pubkey) for …\nReturns the parity of the output key. See also …\nThe parity of the output key (NOT THE INTERNAL KEY WHICH …\nReturns the root TapNodeHash of this tree.\nReturns reference to the leaf script if the leaf is known.\nObtains a reference to the script inside the leaf.\nReturns [TapTreeIter<'_>] iterator for a taproot script …\nReturns a reference to the internal script map.\nSerializes the signature (without heap allocation)\nSerializes self as bytes.\nSerializes the control block.\nSerializes the signature to writer.\nImplements SerializedSignature and related types.\nThe corresponding hash type.\nThe underlying schnorr signature.\nReturns the size of control block. Faster and more …\nReturns the TapTweakHash for this TaprootSpendInfo i.e., …\nReturns the consensus representation of this …\nReturns the consensus representation of this LeafVersion.\nSerialize Signature\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nCreates a merkle proof from list of hashes.\nCreates a merkle proof from list of hashes.\nCreates a merkle proof from list of hashes.\nConstructs TapTree from a TaprootBuilder if it is complete …\nConstructs TapTree from a NodeInfo if it is complete …\nConverts the builder into a NodeInfo if the builder is a …\nConverts the builder into a TapTree if the builder is a …\nVerifies that a control block is correct proof for a given …\nObtains the version of the script leaf.\nCreates a new instance of TaprootBuilder with a capacity …\nCreates a new TaprootSpendInfo from a list of scripts …\nCreates a new TaprootSpendInfo from a list of scripts …\nIterator over node hashes within Taproot merkle branch.\nThe merkle proof for inclusion of a tree in a taptree hash.\nReturns the remaining items of this iterator as a mutable …\nReturns the remaining items of this iterator as a slice.\nReturns the argument unchanged.\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nOwned iterator over the bytes of SerializedSignature\nA serialized Taproot Signature\nReturns the remaining bytes as a slice.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a SerializedSignature from a Signature. (this …\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nGet the len of the used data.\nConvert the serialized signature into the Signature struct.\nConvert an iterator of Results into FallibleIterator by …\nWrites this serialized signature to a writer.\nRepresents changes to an IndexedTxGraph.\nThe IndexedTxGraph combines a TxGraph and an Indexer …\nBatch insert all transactions of the given block of height.\nBatch insert all transactions of the given block of height…\nApplies the ChangeSet to the IndexedTxGraph.\nApply an update directly.\nApply the given update with an optional seen_at timestamp.\nBatch insert transactions, filtering out those that are …\nBatch insert unconfirmed transactions, filtering out those …\nBatch insert unconfirmed transactions.\nReturns the argument unchanged.\nReturns the argument unchanged.\nGet a reference of the internal transaction graph.\nTransaction index.\nIndexer changeset.\nDetermines the ChangeSet between self and an empty …\nInsert an anchor for a given transaction.\nInsert a unix timestamp of when a transaction is seen in …\nInsert and index a transaction into the graph.\nInsert a floating txout of given outpoint.\nCalls U::from(self).\nCalls U::from(self).\nConstruct a new IndexedTxGraph with a given index.\nTxGraph changeset.\nThe resultant “changeset” when new transaction data is …\nUtilities for indexing transaction data.\nApply changeset to itself.\nScans a transaction for relevant outpoints, which are …\nScan and index the given outpoint and txout.\nDetermines the ChangeSet between self and an empty Indexer.\nDetermines whether the transaction should be included in …\nKeychainTxOutIndex controls how script pubkeys are …\nSpkTxOutIndex is an index storing TxOuts that have a …\nRepresents updates to the derivation index of a …\nThe default lookahead for a KeychainTxOutIndex\nThe descriptor has already been assigned to a keychain so …\nTrait to extend FullScanRequestBuilder.\nError returned from KeychainTxOutIndex::insert_descriptor\nThe keychain is already assigned to a descriptor so you can…\nKeychainTxOutIndex controls how script pubkeys are …\nName for table that stores last revealed indices per …\nSchema name for the changeset.\nTrait to extend SyncRequestBuilder.\nGet unbounded spk iterators for all keychains.\nApplies the ChangeSet<K> to the KeychainTxOutIndex<K>\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct KeychainTxOutIndex from sqlite database and …\nGets the descriptor associated with the keychain. Returns …\nReturns the keychain and keychain index associated with …\nInitialize sqlite tables for persisting KeychainTxOutIndex.\nInsert a descriptor with a keychain associated to it.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns whether the changeset are empty.\nReturns whether the spk under the keychain’s index has …\nIterate over all OutPoints that have TxOuts with script …\nIterate over OutPoints that have script pubkeys derived …\nReturn all keychains and their corresponding descriptors.\nContains for each descriptor_id the last revealed index of …\nGet the last derivation index revealed for keychain. …\nGet the last derivation index that is revealed for each …\nReturns the highest derivation index of the keychain where …\nReturns the highest derivation index of each keychain that …\nGet the lookahead setting.\nStore lookahead scripts until target_index (inclusive).\nMarks the script pubkey at index as used even though the …\nMerge another ChangeSet into self.\nComputes the net value that this transaction gives to the …\nConstruct a KeychainTxOutIndex with the given lookahead.\nGet the next derivation index for keychain. The next index …\nGets the next unused script pubkey in the keychain. I.e., …\nGet the set of indexed outpoints, corresponding to tracked …\nPersist changeset to the sqlite database.\nAttempts to reveal the next script pubkey for keychain.\nReveals script pubkeys of the keychain’s descriptor up …\nConvenience method to call Self::reveal_to_target on …\nIterate over revealed spks of the given keychain with …\nIterate over revealed spks of keychains in range\nAdd Scripts that are revealed by the indexer of the given …\nComputes the total value transfer effect tx has on the …\nReturn the script that exists under the given keychain’s …\nAdd spk iterators for each keychain tracked in indexer.\nReturn the TxOut of outpoint if it has been indexed, and …\nIterate over known txouts that spend to tracked script …\nFinds all txouts on a transaction that has previously been …\nGet an unbounded spk iterator over a given keychain. …\nUndoes the effect of mark_used. Returns whether the index …\nIterate over revealed, but unused, spks of the given …\nIterate over revealed, but unused, spks of all keychains.\nAdd Scripts that are revealed by the indexer but currently …\nThe descriptor you have attempted to reassign\nThe keychain that the descriptor is already assigned to\nThe descriptor that the keychain is already assigned to\nThe keychain that you have attempted to reassign\nAn index storing TxOuts that have a script pubkey that …\nThe script pubkeys that are being tracked by the index.\nReturns the argument unchanged.\nReturns the index associated with the script pubkey.\nAdds a script pubkey to scan for. Returns false and does …\nCalls U::from(self).\nWhether any of the inputs of this transaction spend a …\nReturns whether the script pubkey at index has been used …\nMarks the script pubkey at index as used even though it …\nComputes the net value transfer effect of tx on the script …\nGet a reference to the set of indexed outpoints.\nIterates over all the outputs with script pubkeys in an …\nScans a transaction’s outputs for matching script …\nScan a single TxOut for a matching script pubkey and …\nComputes the total value transfer effect tx has on the …\nReturns the script that has been inserted at the index.\nReturns the txout and script pubkey index of the TxOut at …\nIterate over all known txouts that spend to tracked script …\nFinds all txouts on a transaction that has previously been …\nUndoes the effect of mark_used. Returns whether the index …\nIterates over all unused script pubkeys in an index range.\nRepresents a failure when trying to insert/remove a …\nThe error type for LocalChain::apply_header_connected_to.\nName of sqlite table that stores blocks of LocalChain.\nOccurs when the update cannot connect with the original …\nOccurs when an update does not have a common checkpoint …\nThe ChangeSet represents changes to LocalChain.\nA checkpoint is a node of a reference-counted linked list …\nIterates over checkpoints backwards.\nOccurs when connected_to block conflicts with either the …\nThis is a local implementation of ChainOracle.\nAn error which occurs when a LocalChain is constructed …\nSchema name for the changeset.\nApply the given changeset.\nUpdate the chain with a given Header connecting it with …\nUpdate the chain with a given Header at height which you …\nApplies the given update to the chain.\nChanges to the LocalChain blocks.\nRemoves blocks from (and inclusive of) the given block_id.\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 LocalChain from a BTreeMap of height to …\nConstruct a LocalChain from an initial changeset.\nConstruct LocalChain from genesis hash.\nConstruct a LocalChain from sqlite database.\nConstruct a LocalChain from a given checkpoint tip.\nGet the genesis hash.\nGet checkpoint at given height (if it exists).\nThe checkpoint’s height.\nInitialize sqlite tables for persisting …\nDerives an initial ChangeSet, meaning that it can be …\nInsert a BlockId.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nIterate over checkpoints in descending height order.\nThe original checkpoint’s block hash which cannot be …\nPersist changeset to the sqlite database.\nIterate checkpoints over a height range.\nGet the highest checkpoint.\nThe suggested checkpoint to include to connect the two …\nThe attempted update to the original_block hash.\nTable name for schemas.\nRuns logic that initializes/migrates the table schemas.\nData required to perform a spk-based blockchain client …\nBuilds a FullScanRequest.\nData returned from a spk-based blockchain client full scan.\nOutpoint sync item.\nScript pubkey sync item.\nAn item reported to the inspect closure of SyncRequest.\nThe progress of SyncRequest.\nData required to perform a spk-based blockchain client …\nBuilds a SyncRequest.\nData returned from a spk-based blockchain client sync.\nTxid sync item.\nBuild the SyncRequest.\nBuild the FullScanRequest.\nStart building a SyncRequest.\nStart building a FullScanRequest.\nSet the initial chain tip for the sync request.\nGet the chain tip CheckPoint of this request (if any).\nSet the initial chain tip for the full scan request.\nGet the chain tip CheckPoint of this request (if any).\nChanges to the chain discovered during the scan.\nChanges to the chain discovered during the scan.\nTotal consumed items of the request.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nSet the closure that will inspect every sync item visited.\nSet the closure that will inspect every sync item visited.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nIterate over OutPoints contained in this request.\nIterate over ScriptBufs contained in this request.\nIterate over indexed ScriptBufs contained in this request …\nIterate over Txids contained in this request.\nList all keychains contained in this request.\nLast active indices for the corresponding keychains (K). …\nAdvances the sync request and returns the next OutPoint.\nAdvances the sync request and returns the next ScriptBuf.\nAdvances the full scan request and returns the next …\nAdvances the sync request and returns the next Txid.\nAdd OutPoints that will be synced against.\nOutpoints consumed by the request.\nOutpoints remaining in the request.\nGet the SyncProgress of this request.\nTotal remaining items of the request.\nAdd Scripts that will be synced against.\nScript pubkeys consumed by the request.\nSet the spk iterator for a given keychain.\nScript pubkeys remaining in the request.\nAdd Scripts coupled with associated indexes that will be …\nTotal items, consumed and remaining, of the request.\nTotal outpoints, consumed and remaining, of the request.\nTotal script pubkeys, consumed and remaining, of the …\nTotal txids, consumed and remaining, of the request.\nRelevant transaction data discovered during the scan.\nRelevant transaction data discovered during the scan.\nAdd Txids that will be synced against.\nTxids consumed by the request.\nTxids remaining in the request.\nName of table that stores Anchors.\nErrors returned by TxGraph::calculate_fee.\nA transaction that is included in the chain, or is still …\nThe ChangeSet represents changes to a TxGraph.\nMissing TxOut for one or more of the inputs of the tx\nWhen the transaction is invalid according to the graph it …\nSchema name for tx_graph::ChangeSet.\nName of table that stores floating txouts.\nName of table that stores full transactions and last_seen …\nAn iterator that traverses ancestors of a given root …\nAn iterator that traverses transaction descendants.\nA graph of transactions and spends.\nA transaction node in the TxGraph.\nData object used to communicate updates about relevant …\nGet all transaction anchors known by TxGraph.\nIterate over all tx outputs known by TxGraph.\nIterates over the heights of that the new transaction …\nTransaction anchors. Anchors tells us a position in the …\nThe blocks that the transaction is “anchored” in.\nAdded anchors.\nApplies ChangeSet to TxGraph.\nExtends this graph with the given update.\nExtends this graph with the given update alongside an …\nGet the total balance of outpoints that are in chain of …\nBatch insert unconfirmed transactions.\nCalculates the fee of a given transaction. Returns …\nHow the transaction is observed as (confirmed or …\nGiven a transaction, return an iterator of txids that …\nGet a filtered list of outputs from the given outpoints …\nGet a filtered list of unspent outputs (UTXOs) from the …\nIterate over floating txouts known by TxGraph.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a TxGraph from an sqlite database.\nIterate over all full transactions in the graph.\nGet the position of the transaction in chain with tip …\nGet the txid of the spending transaction and where the …\nGet a transaction by txid. This only returns Some for full …\nGet a transaction node by txid. This only returns Some for …\nObtains a single tx output (if any) at the specified …\nInitialize sqlite tables.\nDetermines the ChangeSet between self and an empty TxGraph.\nInserts the given anchor into TxGraph.\nInserts the given seen_at for txid into TxGraph.\nInserts the given transaction into TxGraph.\nInserts the given TxOut at OutPoint.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nWhether the graph has any transactions or outputs in it.\nAdded last-seen unix timestamps of transactions.\nThe last-seen unix timestamp of the transaction as …\nList graph transactions that are in chain with chain_tip.\nTransform the TxGraph to have Anchors of another type.") \ No newline at end of file +searchState.loadedDescShard("bdk_chain", 1, "Calls U::from(self).\nCalls U::from(self).\nPerforms the conversion.\nSerializes the value as consensus-encoded\nMarker for upper/lower case type-level flags (“…\nError returned when a hex string contains invalid …\nError returned when a hex string decoder can’t be …\nHex decoder state.\nHex byte encoder.\nMarker for using lower-case hex encoding.\nMarker for using upper-case hex encoding.\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).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nSignature was empty.\nAn ECDSA signature-related error.\nHex decoding error.\nA secp256k1 error.\nHolds signature serialized in-line (not in Vec).\nNon-standard sighash type.\nAn ECDSA signature with the corresponding hash type.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nDeserializes from slice following the standardness rules …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns an iterator over bytes of the signature.\nSerializes an ECDSA signature (inner secp256k1 signature …\nSerializes an ECDSA signature (inner secp256k1 signature …\nConstructs an ECDSA Bitcoin signature for …\nThe corresponding hash type.\nThe underlying ECDSA Signature.\nSerializes an ECDSA signature (inner secp256k1 signature …\nWrites this serialized signature to a writer.\nHex string contains prefix.\nError when hex string contains a prefix (e.g. 0x).\nHex string is missing prefix.\nError when hex string is missing a prefix (e.g. 0x).\nError parsing integer from hex string.\nError parsing integer from string.\nError with rich context returned when a string can’t be …\nError returned when parsing integer from an supposedly …\nError returned when parsing integer from an supposedly …\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).\nA bitcoin block hash.\nFilter hash, as defined in BIP-157\nFilter header, as defined in BIP-157\nA hash of the Merkle tree branch or root for transactions.\nA bitcoin transaction hash/transaction ID.\nA hash corresponding to the witness structure commitment …\nA hash corresponding to the Merkle tree root for witness …\nA bitcoin witness transaction ID.\nLength of the hash’s internal block size, in bytes.\nThe byte array that represents the hash internally.\nFlag indicating whether user-visible serializations of …\nA hashing engine which bytes can be serialized into. It is …\nAttempted to create a hash from an invalid length slice.\nTrait which applies to hashes of all types.\nA hashing engine which bytes can be serialized into.\nA hash computed from a RFC 2104 HMAC. Parameterized by the …\nPair of underlying hash engines, used for the inner and …\nLength of the hash, in bytes.\nByte array representing the internal state of the hash …\nReturns an all zero hash.\nReturns a reference to the underlying byte array.\nAdds slicing traits implementations to a given type $ty\nUseful comparison functions.\nConstructs a new engine.\nConstructs a hash from the underlying byte array.\nProduces a hash from the current state of a given engine.\nCopies a byte slice into a hash object.\nHashes some bytes.\nHASH160 (SHA256 then RIPEMD160) implementation.\nHashes all the byte slices retrieved from the iterator …\nCreates a new newtype around a Hash type.\nAdds hexadecimal formatting implementation of a trait $imp …\nHash-based Message Authentication Code (HMAC).\nAdd data to the hash engine.\nOutputs the midstate of the hash engine. This function …\nReturn the number of bytes already …\nRIPEMD160 implementation.\nImplements Serialize and Deserialize for a type $t which …\nMacros for serde trait implementations, and supporting …\nSHA1 implementation.\nSHA256 implementation.\nSHA256d implementation (double SHA256).\nSHA256t implementation (tagged SHA256).\nMacro used to define a newtype tagged hash.\nSHA384 implementation.\nSHA512 implementation.\nSHA512_256 implementation.\nSipHash 2-4 implementation.\nReturns the underlying byte array.\nCompare two slices for equality in fixed time. Panics if …\nOutput of the Bitcoin HASH160 hash function. …\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nIterator over bytes which encodes the bytes and yields hex …\nPossible case of hex.\nThe type providing fmt::Display implementation.\nExtension trait for types that can be displayed as hex.\nError type returned while parsing hex string.\nTrait for objects that can be deserialized from hex …\nConvenience alias for HexToBytesIter<HexDigitsIter<'a>>.\nHex decoding error.\nHex decoding error.\nIterator yielding bytes decoded from an iterator of pairs …\nNon-hexadecimal character.\nNon-hexadecimal character.\nInvalid hex character.\nTried to parse fixed-length hash from a string with the …\nProduce lower-case chars ([0-9a-f]).\nPurported hex string had odd length.\nPurported hex string had odd length.\nProduce upper-case chars ([0-9A-F]).\nAppends hex-encoded content to an existing String.\nDisplay Self as a continuous sequence of ASCII hex chars.\nImplements a buffered encoder.\nHelpers for displaying bytes as hex strings.\nError code for the hex-conservative crate.\nFormat known-length array as hex.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nProduces an object from a hex string.\nConstructs a custom hex decoding iterator from another …\nHints how much bytes to reserve when creating a String.\nAdds core::fmt trait implementations to type $ty.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nReturns the invalid character byte.\nReturns the odd length of the input string.\nConstructs a new HexToBytesIter from a string slice.\nConstructs a new BytesToHexIter from a byte iterator.\nHex encoding and decoding.\nRe-exports of the common crate traits.\nQuick and dirty macro for parsing hex in tests.\nCreate a hex-encoded string.\nCreate a lower-hex-encoded string.\nCreate an upper-hex-encoded string.\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nFormats error.\nHex-encodes bytes into the provided buffer.\nReturns the written bytes as a hex str.\nResets the buffer to become empty.\nReturns the argument unchanged.\nCalls U::from(self).\nReturns true if no more bytes can be written into the …\nCreates an empty BufEncoder.\nEncodes byte as hex in given case and appends it to the …\nEncodes bytes as hex in given case and appends them to the …\nEncodes as many bytes as fit into the buffer as hex and …\nHow many bytes can be written to this buffer.\nThe type providing fmt::Display implementation.\nDisplays byte array as hex.\nDisplays byte slice as hex.\nExtension trait for types that can be displayed as hex.\nAppends hex-encoded content to an existing String.\nDisplay Self as a continuous sequence of ASCII hex chars.\nFormat known-length array as hex.\nReturns the argument unchanged.\nReturns the argument unchanged.\nHints how much bytes to reserve when creating a String.\nAdds core::fmt trait implementations to type $ty.\nCalls U::from(self).\nCalls U::from(self).\nCreate a hex-encoded string.\nCreate a lower-hex-encoded string.\nCreate an upper-hex-encoded string.\nHex decoding error.\nHex decoding error.\nNon-hexadecimal character.\nNon-hexadecimal character.\nInvalid hex character.\nTried to parse fixed-length hash from a string with the …\nTried to parse fixed-length hash from a string with the …\nPurported hex string had odd length.\nPurported hex string had odd length.\nThe expected length.\nReturns the argument unchanged.\nCalls U::from(self).\nThe invalid length.\nError type returned while parsing hex string.\nTrait for objects that can be deserialized from hex …\nHex decoding error.\nHex decoding error.\nNon-hexadecimal character.\nNon-hexadecimal character.\nTried to parse fixed-length hash from a string with the …\nPurported hex string had odd length.\nProduces an object from a hex string.\nThe type providing fmt::Display implementation.\nExtension trait for types that can be displayed as hex.\nError type returned while parsing hex string.\nTrait for objects that can be deserialized from hex …\nAppends hex-encoded content to an existing String.\nDisplay Self as a continuous sequence of ASCII hex chars.\nProduces an object from a hex string.\nHints how much bytes to reserve when creating a String.\nCreate a hex-encoded string.\nCreate a lower-hex-encoded string.\nCreate an upper-hex-encoded string.\nA hash computed from a RFC 2104 HMAC. Parameterized by the …\nPair of underlying hash engines, used for the inner and …\nPair of underlying hash midstates which represent the …\nReturns the argument unchanged.\nMidstate of the inner hash engine\nCalls U::from(self).\nMidstate of the outer hash engine\nOutput of the RIPEMD160 hash function.\nEngine to compute RIPEMD160 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nA data structure that can be deserialized from any data …\nA data format that can deserialize any data structure …\nThe error type that can be returned if some error occurs …\nThe error type when some error occurs during serialization.\nThe output type produced by this Serializer during …\nA data structure that can be serialized into any data …\nType returned from serialize_map for serializing the …\nType returned from serialize_seq for serializing the …\nType returned from serialize_struct for serializing the …\nType returned from serialize_struct_variant for …\nType returned from serialize_tuple for serializing the …\nType returned from serialize_tuple_struct for serializing …\nType returned from serialize_tuple_variant for serializing …\nA data format that can serialize any data structure …\nCollect an iterator as a map.\nCollect an iterator as a sequence.\nSerialize a string produced by an implementation of Display…\nGeneric data structure deserialization framework.\nDeserialize this value from the given Serde deserializer.\nRequire the Deserializer to figure out how to drive the …\nHint that the Deserialize type is expecting a bool value.\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a char value.\nHint that the Deserialize type is expecting an enum value …\nHint that the Deserialize type is expecting a f32 value.\nHint that the Deserialize type is expecting a f64 value.\nHint that the Deserialize type is expecting an i128 value.\nHint that the Deserialize type is expecting an i16 value.\nHint that the Deserialize type is expecting an i32 value.\nHint that the Deserialize type is expecting an i64 value.\nHint that the Deserialize type is expecting an i8 value.\nHint that the Deserialize type is expecting the name of a …\nHint that the Deserialize type needs to deserialize a …\nHint that the Deserialize type is expecting a map of …\nHint that the Deserialize type is expecting a newtype …\nHint that the Deserialize type is expecting an optional …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a struct with …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a tuple struct …\nHint that the Deserialize type is expecting an u128 value.\nHint that the Deserialize type is expecting a u16 value.\nHint that the Deserialize type is expecting a u32 value.\nHint that the Deserialize type is expecting a u64 value.\nHint that the Deserialize type is expecting a u8 value.\nHint that the Deserialize type is expecting a unit value.\nHint that the Deserialize type is expecting a unit struct …\nHelper macro when implementing the Deserializer part of a …\nDetermine whether Deserialize implementations should …\nDetermine whether Serialize implementations should …\nGeneric data structure serialization framework.\nSerialize this value into the given Serde serializer.\nSerialize a bool value.\nSerialize a chunk of raw byte data.\nSerialize a character.\nSerialize an f32 value.\nSerialize an f64 value.\nSerialize an i128 value.\nSerialize an i16 value.\nSerialize an i32 value.\nSerialize an i64 value.\nSerialize an i8 value.\nBegin to serialize a map. This call must be followed by …\nSerialize a newtype struct like struct Millimeters(u8).\nSerialize a newtype variant like E::N in enum E { N(u8) }.\nSerialize a None value.\nBegin to serialize a variably sized sequence. This call …\nSerialize a Some(T) value.\nSerialize a &str.\nBegin to serialize a struct like …\nBegin to serialize a struct variant like E::S in …\nBegin to serialize a statically sized sequence whose …\nBegin to serialize a tuple struct like …\nBegin to serialize a tuple variant like E::T in …\nSerialize a u128 value.\nSerialize a u16 value.\nSerialize a u32 value.\nSerialize a u64 value.\nSerialize a u8 value.\nSerialize a () value.\nSerialize a unit struct like struct Unit or PhantomData<T>.\nSerialize a unit variant like E::A in enum E { A, B }.\nThe input contained a boolean value that was not expected.\nThe input contained a &[u8] or Vec<u8> that was not …\nThe input contained a char that was not expected.\nA data structure that can be deserialized from any data …\nA data structure that can be deserialized without …\nDeserializeSeed is the stateful form of the Deserialize …\nA data format that can deserialize any data structure …\nThe type of the deserializer being converted into.\nThe input contained an enum that was not expected.\nProvides a Visitor access to the data of an enum in the …\nThe Error trait allows Deserialize implementations to …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nThe error type that can be returned if some error occurs …\nExpected represents an explanation of what data a Visitor …\nThe input contained a floating point f32 or f64 that was …\nAn efficient way of discarding data from a deserializer.\nConverts an existing value into a Deserializer from which …\nThe input contained a map that was not expected.\nProvides a Visitor access to each entry of a map in the …\nThe input contained a newtype struct that was not expected.\nThe input contained a newtype variant that was not …\nThe input contained an Option<T> that was not expected.\nA message stating what uncategorized thing the input …\nThe input contained a sequence that was not expected.\nProvides a Visitor access to each element of a sequence in …\nThe input contained a signed integer i8, i16, i32 or i64 …\nError is a trait representing the basic expectations for …\nThe input contained a &str or String that was not expected.\nThe input contained a struct variant that was not expected.\nThe input contained a tuple variant that was not expected.\nUnexpected represents an unexpected invocation of any one …\nThe input contained a unit () that was not expected.\nThe input contained a unit variant that was not expected.\nThe input contained an unsigned integer u8, u16, u32 or u64…\nThe type produced by using this seed.\nThe value produced by this visitor.\nThe Visitor that will be used to deserialize the content …\nVariantAccess is a visitor that is created by the …\nThis trait represents a visitor that walks through a …\nRaised when there is general error when deserializing a …\nEquivalent to the more common Deserialize::deserialize …\nDeserialize this value from the given Serde deserializer.\nRequire the Deserializer to figure out how to drive the …\nHint that the Deserialize type is expecting a bool value.\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a byte array …\nHint that the Deserialize type is expecting a char value.\nHint that the Deserialize type is expecting an enum value …\nHint that the Deserialize type is expecting a f32 value.\nHint that the Deserialize type is expecting a f64 value.\nHint that the Deserialize type is expecting an i128 value.\nHint that the Deserialize type is expecting an i16 value.\nHint that the Deserialize type is expecting an i32 value.\nHint that the Deserialize type is expecting an i64 value.\nHint that the Deserialize type is expecting an i8 value.\nHint that the Deserialize type is expecting the name of a …\nHint that the Deserialize type needs to deserialize a …\nHint that the Deserialize type is expecting a map of …\nHint that the Deserialize type is expecting a newtype …\nHint that the Deserialize type is expecting an optional …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a string value …\nHint that the Deserialize type is expecting a struct with …\nHint that the Deserialize type is expecting a sequence of …\nHint that the Deserialize type is expecting a tuple struct …\nHint that the Deserialize type is expecting an u128 value.\nHint that the Deserialize type is expecting a u16 value.\nHint that the Deserialize type is expecting a u32 value.\nHint that the Deserialize type is expecting a u64 value.\nHint that the Deserialize type is expecting a u8 value.\nHint that the Deserialize type is expecting a unit value.\nHint that the Deserialize type is expecting a unit struct …\nRaised when a Deserialize struct type received more than …\nFormat a message stating what data this Visitor expects to …\nFormat an explanation of what data was being expected. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nConvert this value into a deserializer.\nRaised when deserializing a sequence or map and the input …\nRaised when a Deserialize receives a type different from …\nRaised when a Deserialize receives a value of the right …\nDetermine whether Deserialize implementations should …\nRaised when a Deserialize struct type expected to receive …\nCalled when deserializing a variant with a single value.\nCalled when deserializing a variant with a single value.\nThis returns Ok(Some(value)) for the next value in the …\nThis returns Ok(Some(value)) for the next value in the …\nThis returns Ok(Some((key, value))) for the next …\nThis returns Ok(Some((key, value))) for the next …\nThis returns Ok(Some(key)) for the next key in the map, or …\nThis returns Ok(Some(key)) for the next key in the map, or …\nThis returns a Ok(value) for the next value in the map.\nThis returns a Ok(value) for the next value in the map.\nProvides type based access to context intended for error …\nReturns the number of elements remaining in the sequence, …\nReturns the number of entries remaining in the map, if …\nThe lower-level source of this error, if any.\nCalled when deserializing a struct-like variant.\nCalled when deserializing a tuple-like variant.\nCalled when deserializing a variant with no values.\nRaised when a Deserialize struct type received a field …\nRaised when a Deserialize enum type received a variant …\nBuilding blocks for deserializing basic values using the …\nvariant is called to identify which variant to deserialize.\nvariant is called to identify which variant to deserialize.\nThe input contains a boolean.\nThe input contains a byte array that lives at least as …\nThe input contains a string that lives at least as long as …\nThe input contains a byte array and ownership of the byte …\nThe input contains a byte array. The lifetime of the byte …\nThe input contains a char.\nThe input contains an enum.\nThe input contains an f32.\nThe input contains an f64.\nThe input contains a i128.\nThe input contains an i16.\nThe input contains an i32.\nThe input contains an i64.\nThe input contains an i8.\nThe input contains a key-value map.\nThe input contains a newtype struct.\nThe input contains an optional that is absent.\nThe input contains a sequence of elements.\nThe input contains an optional that is present.\nThe input contains a string. The lifetime of the string is …\nThe input contains a string and ownership of the string is …\nThe input contains a u128.\nThe input contains a u16.\nThe input contains a u32.\nThe input contains a u64.\nThe input contains a u8.\nThe input contains a unit ().\nA deserializer holding a bool.\nA deserializer holding a &[u8] with a lifetime tied to …\nA deserializer holding a &str with a lifetime tied to …\nA deserializer holding a &[u8]. Always calls …\nA deserializer holding a char.\nA deserializer holding a Cow<str>.\nA deserializer holding an EnumAccess.\nA minimal representation of all possible errors that can …\nA deserializer holding an f32.\nA deserializer holding an f64.\nA deserializer holding an i128.\nA deserializer holding an i16.\nA deserializer holding an i32.\nA deserializer holding an i64.\nA deserializer holding an i8.\nA deserializer holding an isize.\nA deserializer holding a MapAccess.\nA deserializer that iterates over a map.\nA deserializer holding a SeqAccess.\nA deserializer that iterates over a sequence.\nA deserializer holding a &str.\nA deserializer holding a String.\nA deserializer holding a u128.\nA deserializer holding a u16.\nA deserializer holding a u32.\nA deserializer holding a u64.\nA deserializer holding a u8.\nA deserializer holding a ().\nA deserializer holding a usize.\nCheck for remaining elements after passing a …\nCheck for remaining elements after passing 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.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new borrowed deserializer from the given string.\nCreate a new deserializer from the given bytes.\nCreate a new borrowed deserializer from the given borrowed …\nConstruct a new MapDeserializer<I, E>.\nConstruct a new SeqDeserializer<I, E>.\nConstruct a new SeqAccessDeserializer<A>.\nConstruct a new MapAccessDeserializer<A>.\nConstruct a new EnumAccessDeserializer<A>.\nTrait used by Serialize implementations to generically …\nThe error type when some error occurs during serialization.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nMust match the Error type of our Serializer.\nHelper type for implementing a Serializer that does not …\nThe output type produced by this Serializer during …\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nMust match the Ok type of our Serializer.\nA data structure that can be serialized into any data …\nReturned from Serializer::serialize_map.\nType returned from serialize_map for serializing the …\nReturned from Serializer::serialize_seq.\nType returned from serialize_seq for serializing the …\nReturned from Serializer::serialize_struct.\nType returned from serialize_struct for serializing the …\nReturned from Serializer::serialize_struct_variant.\nType returned from serialize_struct_variant for …\nReturned from Serializer::serialize_tuple.\nType returned from serialize_tuple for serializing the …\nReturned from Serializer::serialize_tuple_struct.\nType returned from serialize_tuple_struct for serializing …\nReturned from Serializer::serialize_tuple_variant.\nType returned from serialize_tuple_variant for serializing …\nA data format that can serialize any data structure …\nError is a trait representing the basic expectations for …\nCollect an iterator as a map.\nCollect an iterator as a sequence.\nSerialize a string produced by an implementation of Display…\nUsed when a Serialize implementation encounters any error …\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.\nReturns some mutable reference to the inner value if it is …\nForwards to the method defined on the type dyn Error.\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.\nFinish serializing a sequence.\nFinish serializing a tuple.\nFinish serializing a tuple struct.\nFinish serializing a tuple variant.\nFinish serializing a map.\nFinish serializing a struct.\nFinish serializing a struct variant.\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.\nDetermine whether Serialize implementations should …\nProvides type based access to context intended for error …\nSerialize this value into the given Serde serializer.\nSerialize a bool value.\nSerialize a chunk of raw byte data.\nSerialize a character.\nSerialize a sequence element.\nSerialize a tuple element.\nSerialize a map entry consisting of a key and a value.\nSerialize an f32 value.\nSerialize an f64 value.\nSerialize a tuple struct field.\nSerialize a tuple variant field.\nSerialize a struct field.\nSerialize a struct variant field.\nSerialize an i128 value.\nSerialize an i16 value.\nSerialize an i32 value.\nSerialize an i64 value.\nSerialize an i8 value.\nSerialize a map key.\nBegin to serialize a map. This call must be followed by …\nSerialize a newtype struct like struct Millimeters(u8).\nSerialize a newtype variant like E::N in enum E { N(u8) }.\nSerialize a None value.\nBegin to serialize a variably sized sequence. This call …\nSerialize a Some(T) value.\nSerialize a &str.\nBegin to serialize a struct like …\nBegin to serialize a struct variant like E::S in …\nBegin to serialize a statically sized sequence whose …\nBegin to serialize a tuple struct like …\nBegin to serialize a tuple variant like E::T in …\nSerialize a u128 value.\nSerialize a u16 value.\nSerialize a u32 value.\nSerialize a u64 value.\nSerialize a u8 value.\nSerialize a () value.\nSerialize a unit struct like struct Unit or PhantomData<T>.\nSerialize a unit variant like E::A in enum E { A, B }.\nSerialize a map value.\nIndicate that a struct field has been skipped.\nIndicate that a struct variant field has been skipped.\nThe lower-level source of this error, if any.\nReturns an iterator starting with the current error and …\nFunctions used by serde impls of all hashes.\nSize, in bits, of the hash.\nDefault serialization/deserialization methods.\nDo serde deserialization.\nHelper function to turn a deserialized slice into the …\nDo serde serialization.\nOutput of the SHA1 hash function.\nEngine to compute SHA1 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SHA256 hash function.\nEngine to compute SHA256 hash function.\nOutput of the SHA256 hash function.\nComputes hash from bytes in const context.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a new Midstate from the inner value.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCreate a new HashEngine from a Midstate.\nCopies a byte slice into the Midstate object.\nIterate the sha256 algorithm to turn a sha256 hash into a …\nCreates midstate for tagged hashes.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nUnwraps the Midstate and returns the underlying byte array.\nOutput of the SHA256d hash function.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nOutput of the SHA256t hash function.\nTrait representing a tag that can be used as a context for …\nReturns a hash engine that is pre-tagged and is ready to …\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nOutput of the SHA384 hash function.\nEngine to compute SHA384 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SHA512 hash function.\nEngine to compute SHA512 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SHA512/256 hash function.\nEngine to compute SHA512/256 hash function.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nCalls U::from(self).\nCalls U::from(self).\nOutput of the SipHash24 hash function.\nEngine to compute the SipHash24 hash function.\nInternal state of the HashEngine.\nReturns the (little endian) 64-bit integer representation …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nZero cost conversion between a fixed length byte array …\nZero cost conversion between a fixed length byte array …\nProduces a hash as u64 from the current state of a given …\nCreates a hash from its (little endian) 64-bit integer …\nHashes the given data directly to u64 with an engine with …\nHashes the given data with an engine with the provided …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRetrieves the keys of this engine.\nCreates a new SipHash24 engine.\nCreates a new SipHash24 engine with keys.\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.\nThe operation failed because a pipe was closed.\nA trait describing an input stream that uses an internal …\nThe connection was aborted (terminated) by the remote …\nThe connection was refused by the remote server.\nThe connection was reset by the remote server.\nWraps an in memory reader providing the position function.\nContains the error value\nThe io crate error type.\nA minimal subset of std::io::ErrorKind which is used for …\nA bridging wrapper providing the IO traits for types that …\nThis operation was interrupted.\nData not valid for the operation were encountered.\nA parameter was incorrect.\nThe network operation failed because it was not connected …\nAn entity was not found, often a file.\nContains the success value\nA custom error that does not fall under any other I/O …\nThe operation lacked the necessary privileges to complete.\nA generic trait describing an input stream. See …\nResult type returned by functions in this crate.\nA sink to which all writes succeed. See std::io::Sink for …\nReader adapter which limits the bytes read from an …\nThe I/O operation’s timeout expired, causing it to be …\nA bridging wrapper providing the std traits for types that …\nAn error returned when an operation could not be completed …\nThe operation needs to block to complete, but the blocking …\nA generic trait describing an output stream. See …\nAn error returned when an operation could not be completed …\nMarks the buffered data up to amount as consumed.\nReturns data read from this reader, filling the internal …\nFlushes this output stream, ensuring that all …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nWraps a std IO type to implement the traits from this …\nWraps a mutable reference to std IO type to implement the …\nReturns a reference to this error.\nBecause we cannot provide a blanket implementation of …\nReturns a reference to the wrapped value.\nReturns a reference to the wrapped value.\nReturns a reference to the inner buffer.\nReturns a mutable reference to the wrapped value.\nReturns a mutable reference to the wrapped value.\nCalls U::from(self).\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 wrapped value.\nReturns the wrapped value.\nReturns the inner buffer.\nReturns the error kind for this error.\nWraps an IO type.\nWraps an IO type.\nCreates a Cursor by wrapping inner.\nCreates a new I/O error.\nWraps a boxed IO type.\nWraps a boxed IO type.\nWraps a mutable reference to IO type.\nWraps a mutable reference to IO type.\nReturns the position read up to thus far.\nReads bytes from source into buf.\nReads bytes from source until buf is full.\nReads all bytes until EOF from the underlying reader into …\nAttempts to read up to limit bytes from the reader, …\nSets the internal position.\nReturns a sink to which all writes succeed. See …\nCreates an adapter which will read at most limit bytes.\nWrites buf into this writer, returning how many bytes were …\nAttempts to write an entire buffer into this writer.\nA base58 decoding error.\nAn always-compressed Bitcoin ECDSA public key\nError originated while parsing string.\nEven parity.\nError returned while generating key from slice.\nError generated from WIF key format.\nhex to array conversion error.\nBase58 decoded data contained an invalid address version …\nInvalid address version in decoded base58 data.\nBase58 decoded data was an invalid length.\nDecoded base58 data was an invalid length.\nHex decoding error.\nPublicKey hex should be 66 or 130 digits long.\nInvalid key prefix error.\nInvalid Length of the slice.\nOpaque data structure that holds a keypair consisting of a …\nOdd parity.\nRepresents the parity passed between FFI function calls.\nError returned when parsing a CompressedPublicKey from a …\nError returned while constructing public key from string.\nA Bitcoin ECDSA private key\nA hash of a public key.\nA Bitcoin ECDSA public key\nThe secp256k1 engine, used to execute all signature …\nA Secp256k1 error.\nA secp256k1 error.\nSecp256k1 Error.\nAn opaque return type for PublicKey::to_sort_key\nA trait for tweaking BIP340 key types (x-only public keys …\nTweaked key type with optional auxiliary information\nTweaked key type\nTweaked BIP-340 key pair\nTweaked BIP-340 X-coord-only public key\nSegwit public keys must always be compressed.\nUntweaked BIP-340 key pair\nUntweaked BIP-340 X-coord-only public key\nMarker trait for indicating that an instance of Secp256k1 …\nSegWit version of a public key hash.\nAn x-only public key, used for verification of Taproot …\nTweaks a keypair by first converting the public key to an …\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw const pointer suitable for use with FFI …\nLike cmp::Cmp but faster and with no guarantees across …\nWhether this public key should be serialized as compressed\nWhether this private key should be serialized as compressed\nGetter for the raw pointer to the underlying secp256k1 …\nDirectly converts an UntweakedPublicKey to a …\nCreates a new TweakedPublicKey from a XOnlyPublicKey. No …\nCreates a new TweakedKeypair from a Keypair. No tweak is …\nFormats the explicit byte value of the secret key kept …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 Parity from a signed integer.\nReturns the TweakedPublicKey for keypair.\nCreates a context from a raw context.\nCreates a context from a raw context that can only be used …\nCreates a context from a raw context that can only be used …\nCreates a Keypair directly from a secret key slice.\nCreates a Keypair directly from a secret key string.\nCreates a Keypair directly from a Secp256k1 secret key.\nConstructs a Parity from a byte.\nLets you create a context in a generic manner …\nGenerates a random keypair. Convenience function for …\nThe actual ECDSA key\nThe actual ECDSA key\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 version.\nReturns the invalid payload length.\nThe network kind on which this key should be used\nCreates a new Secp256k1 context with all capabilities.\nGenerates a new random secret key.\nAttempts to erase the secret within the underlying array.\nUses the ffi secp256k1_context_preallocated_size to check …\nUses the ffi secp256k1_context_preallocated_size to check …\nReturns the required memory for a preallocated context …\nUses the ffi secp256k1_context_preallocated_size to check …\nLets you create a context with a preallocated buffer in a …\nCreates a new Secp256k1 context with all capabilities.\nCreates a new Secp256k1 context that can only be used for …\nCreates a new Secp256k1 context that can only be used for …\nReturns the PublicKey for this Keypair.\nReturns the TweakedPublicKey and its Parity for this …\n(Re)randomizes the Secp256k1 context for extra sidechannel …\nDetermines the public key for which sig is a valid …\nReturns the secret bytes for this key pair.\nReturns the SecretKey for this Keypair.\n(Re)randomizes the Secp256k1 context for extra sidechannel …\nSerialize the key as a byte-encoded pair of values. In …\nConstructs a signature for msg using the secret key sk and …\nConstructs a signature for msg using the secret key sk, …\nConstructs a signature for msg using the secret key sk, …\nConstructs a signature for msg using the secret key sk and …\nConstructs a signature for msg using the secret key sk and …\nConstructs a signature for msg using the secret key sk and …\nCreates a schnorr signature internally using the …\nCreates a schnorr signature without using any auxiliary …\nCreates a schnorr signature using the given auxiliary …\nCreates a schnorr signature using the given random number …\nCreates a new Secp256k1 context that can only be used for …\nTweaks an untweaked key with corresponding public key …\nTweaks private and public keys within an untweaked Keypair …\nConverts parity into an integer value.\nReturns the underlying public key.\nReturns the underlying key pair.\nConverts parity into an integer (byte) value.\nCreates a new Secp256k1 context that can only be used for …\nChecks that sig is a valid ECDSA signature for msg using …\nVerifies a schnorr signature.\nReturns the XOnlyPublicKey (and it’s Parity) for this …\nOverflowed the bits array\nOverflowed the hashes array\nThe left and right branches should never be identical\nData structure that represents a block header paired to a …\nAn error when verifying the merkle block.\nMerkle root in the header doesn’t match to the root …\nPartial merkle tree contains no transactions.\nNot all bits were consumed\nNot all hashes were consumed\nThere must be at least one bit per node in the partial …\nData structure that represents a partial merkle tree.\nThere are too many hashes\nThere are too many transactions.\nReturns the node-is-parent-of-matched-txid bits of the …\nCalculates the merkle root of an iterator of hashes.\nCalculates the merkle root of a list of hashes, inline (in …\nExtract the matching txid’s represented by this partial …\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a partial merkle tree The txids are the …\nReturns the transaction ids and internal hashes of the …\nThe block header\nCalls U::from(self).\nCalls U::from(self).\nReturns the total number of transactions in the block.\nTransactions making up a partial merkle tree\nMainnet Bitcoin.\nThe Bitcoin mainnet network.\nThe cryptocurrency network to act on.\nWhat kind of network we are on.\nAn error in parsing network string.\nBitcoin’s regtest network.\nBitcoin’s signet network.\nSome kind of testnet network.\nBitcoin’s testnet network. (In future versions this will …\nBitcoin’s testnet4 network. (In future versions this …\nError in parsing network from chain hash.\nModule for serialization/deserialization of network …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nA message which can be sent on the Bitcoin network\nBitcoin mainnet network magic bytes.\nBLOOM means the node is capable and willing to handle …\nCOMPACT_FILTERS means the node will service basic block …\nGETUTXO means the node is capable of responding to the …\nNetwork magic bytes to identify the cryptocurrency network …\nNETWORK means that the node is capable of serving the …\nNETWORK_LIMITED means the same as NODE_NETWORK with the …\nNONE means no services supported.\nP2P_V2 indicates that the node supports the P2P v2 …\nVersion of the protocol as appearing in network message …\nAn error in parsing magic bytes.\nBitcoin regtest network magic bytes.\nBitcoin signet network magic bytes.\nFlags to indicate which network services a node supports.\nBitcoin testnet3 network magic bytes.\nBitcoin testnet3 network magic bytes.\nBitcoin testnet4 network magic bytes.\nError in creating a Network from Magic bytes.\nWITNESS indicates that a node can be asked for blocks and …\nAdd ServiceFlags together.\nBitcoin network addresses.\nNetwork byte-order ipv6 address, or ipv4-mapped ipv6 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate network magic from bytes.\nReturns the magic bytes for the network defined by params.\nCheck whether ServiceFlags are included in this one.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nBitcoin network messages.\nBitcoin blockdata network messages.\nBitcoin Connection Bloom filtering network messages.\nBIP152 Compact Blocks network messages\nBitcoin Client Side Block Filtering network messages.\nBitcoin network-related network messages.\nCreate an address message for a socket\nNetwork port\nRemove ServiceFlags from this.\nServices provided by the peer whose address this is\nExtract socket address from an Address message. This will …\nGet network magic bytes.\nGets the integer representation of this ServiceFlags.\nSupported networks for use in BIP155 addrv2 message\nAddress received from BIP155 addrv2 message\nA message which can be sent on the Bitcoin network\nCJDNS\nI2P\nIPV4\nIPV6\nTORV2\nTORV3\nUnknown\nNetwork ID + Network Address\nNetwork byte-order ipv6 address, or ipv4-mapped ipv6 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nNetwork port\nNetwork port, 0 if not applicable\nServices provided by the peer whose address this is\nService bits\nExtract socket address from an AddrV2Message message. This …\nTime that this node was last seen as connected to the …\naddr\naddrv2\nalert\nblock\nBIP152 blocktxn\nBIP157 cfcheckpt\nBIP157 cfheaders\nBIP157 cfilter\nBIP152 cmpctblock\nSerializer for command string\nError returned when a command string is invalid.\nfeefilter\nBIP 37 filteradd\nBIP 37 filterclear\nBIP 37 filterload\ngetaddr\nBIP152 getblocktxn\ngetblocks\nBIP157 getcfcheckpt\nBIP157 getcfheaders\nBIP157 getcfilters\ngetdata\ngetheaders\nheaders\ninv\nThe maximum number of super::message_blockdata::Inventory …\nMaximum size, in bytes, of an encoded message This by …\nmempool\nmerkleblock\nA Network message payload. Proper documentation is …\nnotfound\nping\npong\nA Network message\nreject\nsendaddrv2\nBIP152 sendcmpct\nsendheaders\ntx\nAny other message.\nverack\nversion\nwtxidrelay\nReturn the message command as a static string reference.\nReturn the message command as a static string reference.\nReturn the CommandString for the message command.\nReturn the CommandString for the message command.\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).\nConsumes the RawNetworkMessage instance and returns the …\nMagic bytes to identify the network these messages are …\nCreates a RawNetworkMessage\nThe actual message data\nConverts &'static str to CommandString\nThe command of this message.\nThe payload of this message.\nBlock\nCompact Block\nError — these inventories can be ignored\nThe getblocks message\nThe getheaders message\nAn inventory item.\nTransaction\nUnknown inventory type\nWitness Transaction by Wtxid\nWitness Block\nWitness Transaction\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nLocator hashes — ordered newest to oldest. The remote …\nLocator hashes — ordered newest to oldest. The remote …\nReturn the item value represented as a SHA256-d hash.\nConstruct a new getblocks message\nConstruct a new getheaders message\nReferences the block to stop at, or zero to just fetch the …\nReferences the header to stop at, or zero to just fetch …\nThe protocol version\nThe protocol version\nThe hash of the inventory item\nThe inventory item type.\nAlways update the filter with outpoints.\nBloom filter update flags\nfilteradd message updates the current filter with new data\nfilterload message sets the current bloom filter\nNever update the filter with outpoints.\nOnly update the filter with outpoints if it is P2PK or P2MS\nThe data element to add to the current filter.\nThe filter itself\nControls how matched items are added to the filter\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nThe number of hash functions to use\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nA random value\nblocktxn message\ncmpctblock message\ngetblocktxn message\nsendcmpct message\nThe Compact Block.\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).\nRequest to be send compact blocks.\nThe requested block transactions.\nThe block transactions request.\nCompact Blocks protocol version number.\ncfcheckpt message\ncfheaders message\ncfilter message\ngetcfcheckpt message\ngetcfheaders message\ngetcfilters message\nBlock hash of the Bitcoin block for which the filter is …\nThe serialized compact filter for this block\nThe filter hashes for each block in the requested range\nThe filter headers at intervals of 1,000\nFilter type for which headers are requested\nByte identifying the type of filter being returned\nByte identifying the type of filter being returned\nFilter type for which headers are requested\nFilter type for which headers are requested\nFilter type for which headers are requested\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).\nThe filter header preceding the first block in the …\nThe height of the first block in the requested range\nThe height of the first block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\nThe hash of the last block in the requested range\ncheckpoint\nduplicate message\nan output is below dust limit\ninsufficient fee\ninvalid message\nmalformed message\nnonstandard transaction\nobsolete message\nReject message might be sent by peers rejecting one of our …\nmessage rejection reason as a code\nSome simple messages The version message\nreason of rejection as code\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nreference to rejected item\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nmessage type rejected\nConstructs a new version message with relay set to false\nA random nonce used to detect loops in the network\nreason of rejectection\nThe network address of the peer receiving the message\nWhether the receiving peer should relay messages to the …\nThe network address of the peer sending the message\nA bitmask describing the services supported by this node\nThe height of the maximum-work blockchain that the peer is …\nThe time at which the version message was sent\nA string describing the peer’s software\nThe P2P network protocol version\nError with rich context returned when a string can’t be …\nReturns the argument unchanged.\nReturns the input that was attempted to be parsed.\nCalls U::from(self).\nThe number of bytes equivalent per signature operation. …\nThe minimum incremental feerate (despite the name), in …\nDefault number of hours for an unconfirmed transaction to …\nMinimum feerate, in sats per virtual kilobyte, for a …\nThe minimum feerate, in sats per kilo-virtualbyte, for …\nMaximum number of sigops in a standard tx.\nMaximum weight of a transaction for it to be relayed by …\nMinimum non-witness size for a standard transaction (1 …\nThe virtual transaction size, as computed by default by …\nEncoding of 256-bit target as 32-bit float.\nA 256 bit integer representing target.\nA 256 bit integer representing work.\nThe FeeRate is too high\nAn output of type: pay-to-pubkey or pay-to-pubkey-hash.\nError in PSBT Base64 encoding.\nRequest a private key using BIP-32 fingerprint and …\nA bip32 error.\nConflicting data during combine procedure: global extended …\nSerialization error in bitcoin consensus-encoded structures\nKeys within key-value map should never be duplicated.\nKeys used to sign an ECDSA input.\nThe Elliptic Curve Digital Signature Algorithm (see …\nWays that a Partially Signed Transaction might fail.\nAn error occurred while getting the key.\nThis error is returned when extracting a Transaction from …\nInteger overflow in fee calculation\nTrait to get a private key from a key request, key is then …\nErrors when getting a key.\nInput index out of bounds.\nInput index out of bounds (actual index, maximum index …\nA key-value map for an input of the corresponding index in …\nThe index is out of bounds for the psbt.inputs vector.\nParsing error indicating invalid control block\nParsing error indicating invalid ECDSA signatures\nInvalid hash when parsing slice.\nKnown keys must be according to spec.\nParsing error indicating invalid leaf version\nMagic bytes for a PSBT must be the ASCII for “psbt” …\nThe pre-image must hash to the corresponding psbt hash\nNon-proprietary key type found when proprietary key was …\nParsing error indicating invalid public keys\nParsing error indicating invalid secp256k1 public keys\nThe separator for a PSBT must be 0xff.\nInvalid Sighash type.\nParsing error indicating invalid taproot signatures\nParsing error indicating invalid xonly public keys\nI/O error.\nUnable to find key.\nData required to call GetKey to get the private key to …\nSigning algorithm and key type does not match.\nMissing input utxo.\nOne or more of the inputs lacks value information …\nMissing Redeem script.\nMissing spending utxo.\nMissing both the witness and non-witness utxo.\nMissing witness script.\nA PSBT must have an unsigned transaction.\nNegative fee\nSignals that there are no more key-value pairs in a …\nUnable to parse as a standard sighash type.\nAttempted to ECDSA sign an non-ECDSA input.\nThe GetKey operation is not supported for this key request.\nThe scriptPubkey is not a P2WPKH script.\nA key-value map for an output of the corresponding index …\nThe various output types supported by the Bitcoin network.\nSighash computation error (p2wpkh input).\nPSBT data is not consumed entirely\nA Partially Signed Transaction.\nError in internal PSBT data structure.\nError encountered during PSBT decoding from Base64 string.\nA Signature hash type for the corresponding input.\nReturned when output index is out of bounds in relation to …\nRequest a private key using the associated public key.\nKeys used to sign a Taproot input.\nThe Schnorr signature algorithm (see wikipedia).\nSighash computation error (segwit v0 input).\nInput value is less than Output Value, and the Transaction …\nA pay-to-script-hash output excluding wrapped segwit …\nA nested segwit output, pay-to-witness-pubkey-hash nested …\nA nested segwit output, pay-to-witness-script-hash nested …\nErrors encountered while calculating the sighash message.\nSigning algorithms supported by the Bitcoin network.\nMap of input index -> the error encountered while …\nA list of keys used to sign an input.\nMap of input index -> signing key for that input (see …\nTaproot tree deserilaization error\nParsing error indicating a taproot error\nSighash computation error (taproot input).\nA taproot output (P2TR).\nThe index is out of bounds for the psbt.unsigned_tx.input …\nAttempting to combine with a PSBT describing a different …\nUnable to determine the output type.\nThe scriptSigs for the unsigned transaction must be empty.\nThe scriptWitnesses for the unsigned transaction must be …\nSigning request currently unsupported.\nError related to PSBT version\nA pay-to-witness-pubkey-hash output (P2WPKH).\nAttempt to sign an input with the wrong signing algorithm.\nA pay-to-witness-script-hash output (P2WSH).\nError related to an xpub key\nA map from public keys needed to spend this output to their\nA map from public keys needed to sign this input to their …\nCombines this Output with other Output (as described by …\nCombines this Input with other Input (as described by BIP …\nReturns the EcdsaSighashType if the PsbtSighashType can be …\nObtains the EcdsaSighashType for this input if one is …\nThe finalized, fully-constructed scriptSig with signatures …\nThe finalized, fully-constructed scriptWitness with …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 PsbtSighashType from a raw u32.\nAttempts to get the private key for key_request.\nHSAH160 hash to preimage map.\nHAS256 hash to preimage map.\nThe corresponding key-value map for each input in 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).\nCalls U::from(self).\nThe non-witness transaction this input spends from. Should …\nThe corresponding key-value map for each output in the …\nA map from public keys to their corresponding signature as …\nProprietary key-value pairs for this output.\nGlobal proprietary key-value pairs.\nProprietary key-value pairs for this input.\nRaw PSBT key-value pairs.\nThe redeem script for this output.\nThe redeem script for this input.\nRIPEMD160 hash to preimage map.\nPSBT serialization.\nSHA256 hash to preimage map.\nThe sighash type to be used for this input. Signatures for …\nThe signing algorithm used to sign this output type.\nThe internal pubkey.\nTaproot Internal key.\nMap of tap root x only keys to origin info and leaf hashes …\nMap of tap root x only keys to origin info and leaf hashes …\nSerialized taproot signature with sighash type for key …\nTaproot Merkle root.\nMap of <xonlypubkey>|<leafhash> with signature.\nMap of Control blocks to Script version pair.\nTaproot Output tree.\nReturns the TapSighashType if the PsbtSighashType can be …\nObtains the TapSighashType for this input if one is …\nConverts PsbtSighashType to a raw u32 sighash flag.\nUnknown key-value pairs for this output.\nUnknown global key-value pairs.\nUnknown key-value pairs for this input.\nThe unsigned transaction, scriptSigs and witnesses for …\nThe version number of this PSBT. If omitted, the version …\nThe witness script for this output.\nThe witness script for this input.\nThe transaction output this input spends from. Should only …\nA global map from extended public keys to the used key …\nActual\nExpected\nHash value\nHash-type\nPre-image\nThe FeeRate\nThe original Psbt is returned untouched.\nThe extracted Transaction (use this to ignore the error)\nThe extracted Transaction (use this to ignore the error)\nAttempted index access.\nAttempted index access.\nLength of the PBST inputs vector.\nLength of the PBST’s unsigned transaction input vector.\nA PSBT key in its raw byte form.\nA PSBT key-value pair in its raw byte form. …\nProprietary keys (i.e. keys starting with 0xFC byte) with …\nDefault implementation for proprietary key subtyping\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nAdditional key bytes (like serialized public key data etc)\nThe key of this key-value pair.\nThe key itself in raw byte form. …\nProprietary type prefix used for grouping together keys …\nCustom proprietary subtype\nConstructs full Key corresponding to this proprietary key …\nConstructs a ProprietaryKey from a Key.\nThe type of this PSBT key.\nThe value data of this key-value pair in raw byte form. …\nRepresents the set of all capabilities.\nRepresents the set of all capabilities (preallocated …\nA trait for all kinds of contexts that lets you define the …\nA constant description of the context.\nThe main error type for this library.\nEven parity.\nFlags for the ffi.\nSignature failed verification.\nBad EllSwift value\nBad sized message (“messages” are actually fixed-sized …\nError returned when conversion from an integer to Parity …\nThe only valid parity values are 0 or 1.\nBad public key.\nBad set of public keys.\nBad recovery id.\nBad secret key.\nBad shared secret.\nBad signature.\nTried to add/multiply by an invalid tweak.\nOpaque data structure that holds a keypair consisting of a …\nMaximum valid value: curve_order - 1\nA (hashed) message input to an ECDSA signature.\nDidn’t pass enough memory to context creation with …\nScalar representing 1\nOdd parity.\nRepresents the parity passed between FFI function calls.\nTrait marking that a particular context object internally …\nPublic key - used to verify ECDSA signatures and to do …\nPositive 256-bit integer guaranteed to be less than the …\nThe secp256k1 engine, used to execute all signature …\nSecret key - a 256-bit key used to create ECDSA and …\nRepresents the set of capabilities needed for signing.\nRepresents the set of capabilities needed for signing …\nMarker trait for indicating that an instance of Secp256k1 …\nTrait describing something that promises to be a 32-byte …\nMarker trait for indicating that an instance of Secp256k1 …\nRepresents the set of capabilities needed for verification.\nRepresents the set of capabilities needed for verification …\nAn x-only public key, used for verification of Taproot …\nScalar representing 0\nTweaks a PublicKey by adding tweak * G modulo the curve …\nTweaks a SecretKey by adding tweak modulo the curve order.\nObtains a const pointer suitable for use with FFI …\nObtains a mutable pointer suitable for use with FFI …\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw const pointer suitable for use with FFI …\nGets a reference to the underlying array.\nGets a reference to the underlying array\nLike cmp::Cmp but faster and with no guarantees across …\nAdds a second key to this one, returning the sum.\nAdds the keys in the provided slice together, returning …\nConstants related to the API and the underlying curve.\nA function to deallocate the memory when the context is …\nFormats the explicit byte value of the secret key kept …\nSupport for shared secret computations.\nStructs and functionality related to the ECDSA signature …\nThis module provides an implementation of ElligatorSwift …\nThis implementation is designed to be constant time to …\nLike cmp::Eq but faster and with no guarantees across …\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 32-byte hash directly to a secret key without …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a 32-byte hash directly to a message without …\nReturns the argument unchanged.\nTries to deserialize from big endian bytes\nCreates a Message from a digest.\nCreates a Message from a 32 byte slice digest.\nCreates a new public key from an ElligatorSwift.\nCreates a new secret key using data from BIP-340 Keypair.\nCreates a new compressed public key using data from …\nTries to deserialize from little endian bytes\nCreates a new public key from a SecretKey.\nConverts a SECRET_KEY_SIZE-byte slice to a secret key.\nCreates a public key directly from a slice.\nCreates a Message from a 32 byte slice digest.\nCreates a PublicKey using the key material from pk …\nDeprecated reexport of the bitcoin-hashes crate.\nImplement methods and traits for types that contain an …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 object into a 32-byte array\nReturns the Keypair for this SecretKey.\nTweaks a SecretKey by multiplying by tweak modulo the …\nTweaks a PublicKey by multiplying by tweak modulo the …\nNegates the secret key.\nNegates the public key.\nGenerates a new random secret key.\nAttempts to erase the contents of the underlying array.\nAttempts to erase the contents of the underlying array.\nReturns the PublicKey for this SecretKey.\nGenerates a random scalar\nGenerates a random scalar using supplied RNG\nProvides Scalar and related types.\nSupport for schnorr signatures.\nReturns the secret key as a byte value.\nSerializes the key as a byte-encoded pair of values. In …\nSerializes the key as a byte-encoded pair of values, in …\nSerializes to big endian bytes\nSerializes to little endian bytes\nChecks that sig is a valid ECDSA signature for msg using …\nReturns the XOnlyPublicKey (and it’s Parity) for this …\nReturns the XOnlyPublicKey (and it’s Parity) for this …\nThe maximum size of a compact signature.\nThe order of the secp256k1 curve.\nThe size of a full ElligatorSwift encoding.\nThe Prime for the secp256k1 field element.\nThe X coordinate of the generator.\nThe Y coordinate of the generator.\nThe size of a key pair.\nThe maximum size of a signature.\nThe size (in bytes) of a message.\nThe value one as big-endian array of bytes.\nThe size (in bytes) of a serialized public key.\nThe size of a schnorr public key.\nThe size of a schnorr signature.\nThe size (in bytes) of a secret key.\nThe size (in bytes) of an serialized uncompressed public …\nThe value zero as an array of bytes.\nEnables two parties to create a shared secret without …\nFormats the explicit byte value of the shared secret kept …\nReturns the argument unchanged.\nCreates a shared secret from bytes array.\nCreates a shared secret from bytes slice.\nCalls U::from(self).\nCreates a new shared secret from a pubkey and secret key.\nAttempts to erase the contents of the underlying array.\nReturns the shared secret as a byte value.\nCreates a shared point from public key and secret key.\nAn ECDSA signature with a recovery ID for pubkey recovery.\nA tag used for recovering the public key from a compact …\nA DER serialized Signature\nAn ECDSA signature\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw mutable pointer suitable for use with FFI …\nObtains a raw pointer suitable for use with FFI functions.\nObtains a raw pointer suitable for use with FFI functions\nGet the capacity of the underlying data buffer.\nLike cmp::Cmp but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a compact-encoded byte slice to a signature. This …\nConverts a 64-byte compact-encoded byte slice to a …\nConverts a DER-encoded byte slice to a signature\nConverts a “lax DER”-encoded byte slice to a …\nAllows library users to create valid recovery IDs from i32.\nCreate a SerializedSignature from a Signature. (this DER …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCheck if the space is zero.\nGet the len of the used data.\nNormalizes a signature to a “low S” form. In ECDSA, …\nSerializes the recoverable signature in compact format.\nSerializes the signature in compact format\nSerializes the signature in DER format\nImplements SerializedSignature and related types.\nAllows library users to convert recovery IDs to i32.\nConvert the serialized signature into the Signature struct.\nConverts a recoverable signature to a non-recoverable one …\nOwned iterator over the bytes of SerializedSignature\nA DER serialized Signature\nReturns the remaining bytes as a slice.\nReturns the argument unchanged.\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nWe are the initiator of the ECDH\nWe are the responder of the ECDH\nElligatorSwift is an encoding of a uniformly chosen point …\nRepresents which party we are in the ECDH, A is the …\nThe result of ElligatorSwift::shared_secret, which is a …\nReturns the secret bytes as a reference to an array.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an ElligatorSwift object from a 64-byte array.\nComputes the ElligatorSwift encoding for a valid public key\nCreates the Elligator Swift encoding from a secret key, …\nCreates shared secret from bytes.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new ElligatorSwift object from a 64-byte array.\nComputes a shared secret only known by Alice and Bob. This …\nComputes a shared secret, just like shared_secret, but …\nReturns the 64-byte array representation of this …\nReturns the secret bytes as an array.\nA trait for producing pointers that will always be valid …\nA Secp256k1 context, containing various precomputed values …\nHash function to use to post-process an ECDH point to get …\nLibrary-internal representation of a ElligatorSwift …\nA hash function used by ellswift_ecdh to hash the final …\nA nonce generation function. Ordinary users of the library …\nNo value.\nNo value.\nNo value.\nNo value.\nLibrary-internal representation of a Secp256k1 public key\nFlag for keys to indicate compressed serialization format\nFlag for keys to indicate uncompressed serialization format\nFlag for context to enable no precomputation\nFlag for context to enable signing precomputation\nFlag for context to enable verification precomputation\nSame as secp256k1_nonce function with the exception of …\nData structure that contains additional arguments for …\nLibrary-internal representation of a Secp256k1 signature\nSome value of type T.\nSome value of type T.\nSome value of type T.\nSome value of type T.\nGets a reference to the underlying array\nGets a reference to the underlying array\nGets a reference to the underlying array\nGets a reference to the underlying array\nGets a reference to the underlying array\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a new public key usable for the FFI interface from …\nCreate a new signature usable for the FFI interface from …\nCreate a new x-only public key usable for the FFI …\nCreate a new keypair usable for the FFI interface from raw …\nImplement methods and traits for types that contain an …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new SchnorrSigExtraParams properly initialized.\nCreates an “uninitialized” FFI public key which is …\nCreates an “uninitialized” FFI signature which is …\nCreates an “uninitialized” FFI x-only public key which …\nCreates an “uninitialized” FFI keypair which is zeroed …\nAttempts to erase the contents of the underlying array.\nDoes a best attempt at secure erasure using Rust …\nFFI of the recovery module\nA reimplementation of the C function …\nThis function is an override for the C function, this is …\nThis function is an override for the C function, this is …\nA reimplementation of the C function …\nA reimplementation of the C function …\nDefault ECDH hash function\nDefault ECDH hash function for BIP324 key establishment\nReturns the underlying FFI opaque representation of the …\nReturns the underlying FFI opaque representation of the …\nReturns the underlying FFI opaque representation of the …\nReturns the underlying FFI opaque representation of the …\nLibrary-internal representation of a Secp256k1 signature + …\nGets a reference to the underlying array\nLike cmp::Ord but faster and with no guarantees across …\nLike cmp::Eq but faster and with no guarantees across …\nReturns the argument unchanged.\nCalls U::from(self).\nCreate a new (zeroed) signature usable for the FFI …\nA type that is as aligned as the biggest alignment for …\nA static zeroed out AlignedType for use in static …\nThis might not match C’s c_char exactly. The way we use …\nEquivalent to C’s void type when used as a pointer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nLength of the hash’s internal block size, in bytes.\nThe byte array that represents the hash internally.\nFlag indicating whether user-visible serializations of …\nA hashing engine which bytes can be serialized into. It is …\nAttempted to create a hash from an invalid length slice.\nTrait which applies to hashes of all types.\nA hashing engine which bytes can be serialized into.\nA hash computed from a RFC 2104 HMAC. Parameterized by the …\nPair of underlying hash engines, used for the inner and …\nLength of the hash, in bytes.\nByte array representing the internal state of the hash …\nReturns an all zero hash.\nReturns a reference to the underlying byte array.\nAdds slicing traits implementations to a given type $ty\nConstructs a new engine.\nReturns the expected slice length.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs a hash from the underlying byte array.\nProduces a hash from the current state of a given engine.\nA special constructor giving direct access to the …\nCopies a byte slice into a hash object.\nHashes some bytes.\nHashes all the byte slices retrieved from the iterator …\nCreates a new newtype around a Hash type.\nAdds hexadecimal formatting implementation of a trait $imp …\nAdd data to the hash engine.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid slice length.\nOutputs the midstate of the hash engine. This function …\nReturn the number of bytes already …\nConstructs a new keyed HMAC from key.\nImplements Serialize and Deserialize for a type $t which …\nMacro used to define a newtype tagged hash.\nReturns the underlying byte array.\nCodes at or above this point can be used by users to …\nA marker trait used to indicate that an RngCore or …\nError type of random number generators\nTypes which may be filled with random data\nCodes below this point represent OS Errors (i.e. positive …\nAn automatically-implemented extension trait on RngCore …\nThe core of a random number generator.\nSeed type, which is restricted to types …\nA random number generator that can be explicitly seeded.\nRetrieve the error code, if any.\nGenerating random samples from probability distributions\nFill any type implementing Fill with random data\nFill dest with random data.\nReturns the argument unchanged.\nCreates a new instance of the RNG seeded via getrandom.\nCreate a new PRNG seeded from another Rng.\nCreate a new PRNG using the given seed.\nReturn a random value supporting the Standard distribution.\nReturn a bool with a probability p of being true.\nGenerate a random value in the given range.\nReturn a bool with a probability of numerator/denominator …\nReference the inner error (std only)\nCalls U::from(self).\nConstruct from any type supporting std::error::Error\nReturn the next random u32.\nReturn the next random u64.\nConvenience re-export of common members\nGenerates a random value using the thread-local random …\nExtract the raw OS error code (if this error came from the …\nRandom number generators and adapters\nSample a new value, using the given distribution.\nCreate an iterator that generates values using the given …\nCreate a new PRNG using a u64 seed.\nSequence-related functionality\nUnwrap the inner error (std only)\nRetrieve the lazily-initialized thread-local random number …\nFill self with random data\nFill any type implementing Fill with random data\nFill dest entirely with random data.\nAll items in the provided weight collection are zero.\nSample a u8, uniformly distributed over ASCII letters and …\nThe Bernoulli distribution.\nError type returned from Bernoulli::new.\nAn iterator that generates random values of T with …\nA distribution of values of type S derived from the …\nString sampler\nTypes (distributions) that can be used to create a random …\np < 0 or p > 1.\nA weight is either less than zero, greater than the …\nThe provided weight collection contains no items.\nA distribution to sample floating point numbers uniformly …\nA distribution to sample floating point numbers uniformly …\nA distribution to sample items uniformly from a slice.\nA generic random value distribution, implemented for many …\nToo many weights are provided (length greater than u32::MAX…\nSample values uniformly between two bounds.\nError type returned from WeightedIndex::new.\nA distribution using weighted sampling of discrete items\nAppend len random chars to string\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a new Bernoulli with the probability of success …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nCreate a distribution of values of ‘S’ by mapping the …\nConstruct a new Bernoulli with the given probability of …\nCreate a new Slice instance which samples uniformly from …\nCreates a new a WeightedIndex Distribution using the values\nCreate a new Uniform instance which samples uniformly from …\nCreate a new Uniform instance which samples uniformly from …\nGenerate a random value of T, using rng as the source of …\nCreate an iterator that generates random values of T, …\nGenerate a String of len random chars\nConvert an iterator of Results into FallibleIterator by …\nA distribution uniformly sampling numbers within a given …\nUpdate a subset of weights, without changing the number of …\nWeighted index sampling\nHelper trait similar to Borrow but implemented only for …\nRange that supports generating a single sample efficiently.\nHelper trait for creating objects using the correct …\nThe UniformSampler implementation supporting type X.\nSample values uniformly between two bounds.\nThe back-end implementing UniformSampler for char.\nThe back-end implementing UniformSampler for Duration.\nThe back-end implementing UniformSampler for …\nThe back-end implementing UniformSampler for integer types.\nHelper trait handling actual uniform sampling.\nThe type sampled by this implementation.\nImmutably borrows from an owned value. See Borrow::borrow\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).\nCheck whether the range is empty.\nConstruct self, with inclusive lower bound and exclusive …\nConstruct self, with inclusive bounds [low, high].\nSample a value.\nGenerate a sample from the given range.\nSample a single value uniformly from a range with …\nSample a single value uniformly from a range with …\nAll items in the provided weight collection are zero.\nA weight is either less than zero, greater than the …\nThe provided weight collection contains no items.\nToo many weights are provided (length greater than u32::MAX…\nError type returned from WeightedIndex::new.\nA distribution using weighted sampling of discrete items\nReturns the argument unchanged.\nCalls U::from(self).\nA marker trait used to indicate that an RngCore or …\nTypes (distributions) that can be used to create a random …\nThe element type.\nExtension trait on iterators, providing random sampling …\nAn automatically-implemented extension trait on RngCore …\nThe core of a random number generator.\nSeed type, which is restricted to types …\nA random number generator that can be explicitly seeded.\nExtension trait on slices, providing random mutation and …\nThe standard RNG. The PRNG algorithm in StdRng is chosen …\nA reference to the thread-local generator\nReturns a reference to one random element of the slice, or …\nChoose one element at random from the iterator.\nChooses amount elements from the slice at random, without …\nCollects amount values at random from the iterator into a …\nCollects values at random from the iterator into a …\nSimilar to choose_multiple, but where the likelihood of …\nReturns a mutable reference to one random element of the …\nChoose one element at random from the iterator.\nSimilar to choose, but where the likelihood of each …\nSimilar to choose_mut, but where the likelihood of each …\nFill any type implementing Fill with random data\nFill dest with random data.\nCreates a new instance of the RNG seeded via getrandom.\nCreate a new PRNG seeded from another Rng.\nCreate a new PRNG using the given seed.\nReturn a random value supporting the Standard distribution.\nReturn a bool with a probability p of being true.\nGenerate a random value in the given range.\nReturn a bool with a probability of numerator/denominator …\nCreate a distribution of values of ‘S’ by mapping the …\nReturn the next random u32.\nReturn the next random u64.\nShuffle a slice in place, but exit early.\nGenerates a random value using the thread-local random …\nGenerate a random value of T, using rng as the source of …\nSample a new value, using the given distribution.\nCreate an iterator that generates random values of T, …\nCreate an iterator that generates values using the given …\nCreate a new PRNG using a u64 seed.\nShuffle a mutable slice in place.\nRetrieve the lazily-initialized thread-local random number …\nFill any type implementing Fill with random data\nFill dest entirely with random data.\nA random number generator that retrieves randomness from …\nThe standard RNG. The PRNG algorithm in StdRng is chosen …\nA reference to the thread-local generator\nWrappers / adapters forming RNGs\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nMock random number generator\nReadRng error type\nAn RNG that reads random bytes straight from any type …\nA wrapper around any PRNG that implements BlockRngCore, …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreate a new ReadRng from a Read.\nCreate a new ReseedingRng from an existing PRNG, combined …\nReseed the internal PRNG.\nA simple implementation of RngCore for testing purposes.\nReturns the argument unchanged.\nCalls U::from(self).\nCreate a StepRng, yielding an arithmetic sequence starting …\nThe element type.\nExtension trait on iterators, providing random sampling …\nAn iterator over multiple slice elements.\nExtension trait on slices, providing random mutation and …\nReturns a reference to one random element of the slice, or …\nChoose one element at random from the iterator.\nChooses amount elements from the slice at random, without …\nCollects amount values at random from the iterator into a …\nCollects values at random from the iterator into a …\nSimilar to choose_multiple, but where the likelihood of …\nReturns a mutable reference to one random element of the …\nChoose one element at random from the iterator.\nSimilar to choose, but where the likelihood of each …\nSimilar to choose_mut, but where the likelihood of each …\nReturns the argument unchanged.\nLow-level API for sampling indices\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nShuffle a slice in place, but exit early.\nShuffle a mutable slice in place.\nConvert an iterator of Results into FallibleIterator by …\nA vector of indices.\nReturn type of IndexVec::into_iter.\nReturn type of IndexVec::iter.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturn the value at the given index.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nConvert into an iterator over the indices as a sequence of …\nReturn result as a Vec<usize>. Conversion may or may not …\nReturns true if the length is 0.\nIterate over the indices as a sequence of usize values\nReturns the number of indices\nRandomly sample exactly amount distinct indices from …\nRandomly sample exactly amount distinct indices from …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nError returned when the value of scalar is invalid - …\nPositive 256-bit integer guaranteed to be less than the …\nReturns the argument unchanged.\nCalls U::from(self).\nRepresents a schnorr signature.\nGets a reference to the underlying array\nReturns the argument unchanged.\nCreates a Signature directly from a slice.\nCalls U::from(self).\nReturns a signature as a byte array.\nWhen SIGHASH_ANYONECANPAY is not provided, or when the …\n0x1: Sign all outputs.\n0x1: Sign all outputs.\n0x81: Sign all outputs but only this input.\n0x81: Sign all outputs but only this input.\nThe Annex struct is a slice wrapper enforcing first byte …\nAnnex must be at least one byte long and the first bytes …\n0x0: Used when not explicitly specified, defaults to …\nHashtype of an input’s signature, encoded in the last …\nThe annex is empty.\nResult of SighashCache::legacy_encode_signing_data_to.\nIncorrect prefix byte in the annex.\nIndex out of bounds when accessing transaction input …\nInvalid index when accessing a Prevouts::All kind.\nInvalid index when accessing a Prevouts::One kind.\nInvalid Sighash type.\nInteger is not a consensus valid sighash type.\nCan happen only when using *_encode_signing_* methods with …\nHash of a transaction according to the legacy signature …\nThis type is consensus valid but an input including it …\n0x2: Sign no outputs — anyone can choose the destination.\n0x2: Sign no outputs — anyone can choose the destination.\n0x82: Sign no outputs and only this input.\n0x82: Sign no outputs and only this input.\nScript is not a witness program for a p2wpkh output.\nOne variant allows provision of the single prevout needed. …\nError computing a P2WPKH sighash.\nContains outputs of previous transactions. In the case …\nPrevouts index error.\nPrevouts index related errors.\nPrevouts kind error.\nA single prevout was been provided but all prevouts are …\nPrevouts size error.\nThe number of supplied prevouts differs from the number of …\nInformation related to the script path spending.\nHash of a transaction according to the segwit version 0 …\nError computing the sighash.\nAn argument to the called sighash function was invalid.\nEfficiently calculates signature hash message for legacy, …\nInput data is an instance of SIGHASH_SINGLE bug\nError returned for failure during parsing one of the …\nError returned when writing signing data fails.\n0x3: Sign the output whose index matches this input’s …\n0x3: Sign the output whose index matches this input’s …\nUsing SIGHASH_SINGLE requires an output at the same index …\nUsing SIGHASH_SINGLE requires an output at the same index …\n0x83: Sign one output and only this input (see Single for …\n0x83: Sign one output and only this input (see Single for …\nTaproot-tagged hash with tag "TapSighash".\nThe tag used for TapSighash\nHashtype of an input’s signature, encoded in the last …\nError computing a taproot sighash.\nOperation performed normally.\nReturns the Annex bytes data (including first byte 0x50).\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nInput index.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nDestroys the cache and recovers the stored transaction.\nChecks for SIGHASH_SINGLE bug returning error if the …\nComputes the leaf hash for this ScriptPath.\nEncodes the legacy signing data from which a signature …\nComputes a legacy signature hash for a given input index …\nMaps a Result<T, E> to Result<T, F> by applying a function …\nConstructs a new SighashCache from an unsigned transaction.\nCreates a new ScriptPath structure.\nCreates a new Annex struct checking the first byte is 0x50.\nLength of the output vector.\nComputes the BIP143 sighash to spend a p2wpkh transaction …\nComputes the BIP143 sighash to spend a p2wsh transaction …\nEncodes the BIP143 signing data for any flag type into a …\nEncodes the BIP341 signing data for any flag type into a …\nComputes the BIP341 sighash for a key spend.\nComputes the BIP341 sighash for a script spend.\nComputes the BIP341 sighash for any flag type.\nReturns the reference to the cached transaction.\nThe unrecognized string we attempted to parse.\nCreates a new ScriptPath structure using default leaf …\nAllows modification of witnesses.\nThe prefix for signed messages using Bitcoin’s message …\nInvalid base64 encoding.\nThe signature is invalidly constructed.\nSignature is expected to be 65 bytes.\nA signature on a Bitcoin Signed Message.\nAn error used for dealing with Bitcoin Signed Messages.\nUnsupported Address Type\nWhether or not this signature was created with a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nConvert a signature from base64 encoding.\nCreate from a byte slice.\nCalls U::from(self).\nCalls U::from(self).\nVerify that the signature signs the message and was signed …\nCreate a new MessageSignature.\nAttempt to recover a public key from the signature and the …\nSerialize to bytes.\nThe inner recoverable signature.\nHash message for signature using Bitcoin’s message …\nConvert to base64 encoding.\nControl block data structure used in Tapscript …\nCalled finalize on a empty tree.\nEmpty tap tree.\nFuture leaf version.\nInner type representing future (non-tapscript) leaf …\nHidden Node with the given leaf hash\nError happening when TapTree is constructed from a NodeInfo\nIndicates an attempt to construct a tap tree from a …\nIndicates an attempt to construct a tap tree from a …\nError happening when TapTree is constructed from a …\nInvalid control block size.\nInvalid taproot internal key.\nInvalid taproot internal key.\nProof size must be a multiple of 32.\nMerkle tree depth must not be more than 128.\nMerkle tree depth must not be more than 128.\nInvalid taproot signature size\nThe last bit of tapleaf version must be zero.\nStore information about taproot leaf node.\nIterator for a taproot script tree, operating in DFS order …\nThe leaf version for tapleafs.\nRepresents the node information in taproot tree. In …\nNodes must be added specified in DFS walk order.\nIndicates an attempt to construct a tap tree from a …\nTwo nodes at depth 0 are not allowed.\nA known script\nScript leaf node in a taproot tree along with the merkle …\nIterator for a taproot script tree, operating in DFS order …\nA secp256k1 error.\nAn error constructing a taproot::Signature from a byte …\nInvalid signature hash type.\nA BIP340-341 serialized taproot signature with the …\nTaproot annex prefix.\nTapscript control base size.\nMaximum depth of a taproot tree script spend path.\nTapscript control max size.\nSize of a taproot control node.\nTapleaf mask for getting the leaf version from first byte …\nTapscript leaf version.\nThe tag used for TapNodeHash\nLeaf node in a taproot tree. Can be either hidden or known.\nTaproot-tagged hash with tag "TapLeaf".\nThe tag used for TapLeafHash\nTagged hash used in taproot trees.\nBIP-342 tapscript.\nTaproot Tree representing a complete binary tree without …\nTaproot-tagged hash with tag "TapTweak".\nThe tag used for TapTweakHash\nBuilder for building taproot iteratively. Users can …\nDetailed error type for taproot builder.\nDetailed error type for taproot utilities.\nThe merkle proof for inclusion of a tree in a taptree hash.\nRepresents taproot spending information.\nAdds a hidden/omitted node at depth to the builder. Errors …\nAdds a leaf script at depth to the builder with default …\nAdds a leaf script at depth to the builder with script …\nObtains the hidden leaf hash if the leaf is hidden.\nReturns a reference to the slice of hashes.\nObtains a reference to script and version if the leaf is …\nReturns a reference to the slice of hashes.\nCombines two NodeInfo to create a new parent.\nConstructs a ControlBlock for particular script with the …\nDecodes bytes from control block.\nDecodes bytes representing a ControlBlock.\nReturns the depth of this script leaf in the tap tree.\nSerializes to a writer.\nSerializes to a writer.\nCreates a TaprootSpendInfo with the given internal key.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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 LeafVersion from consensus byte representation.\nObtains a script leaf from the leaf node if the leaf is …\nComputes the TaprootSpendInfo from internal_key and node.\nDeserialize from slice\nChecks if the builder has hidden nodes.\nReturns the internal key for this TaprootSpendInfo.\nThe internal key.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 error into the original incomplete TaprootBuilder …\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nReturns the inner list of hashes.\nConverts error into the original incomplete NodeInfo …\nGets the inner NodeInfo of this tree root.\nReturns the list of hashes stored in a Vec.\nChecks if this merkle proof is empty.\nChecks if the builder has finalized building a tree.\nReturns a reference to the leaf of this ScriptLeaf.\nComputes a leaf hash for this ScriptLeaf if the leaf is …\nCreates an iterator over all leaves (including hidden …\nReturns leaf version of the script if the leaf is known.\nThe tapleaf version.\nReturns the number of nodes in this merkle proof.\nContains TaprootMerkleBranch and its associated types.\nReturns reference to the merkle proof (hashing partners) …\nObtains a reference to the merkle proof of the leaf.\nThe merkle proof of a script associated with this leaf.\nReturns the merkle root for this TaprootSpendInfo.\nCreates a new instance of TaprootBuilder.\nCreates an new ScriptLeaf from hash and no merkle branch.\nCreates a new NodeInfo with omitted/hidden info.\nCreates a new key spend with internal_key and merkle_root. …\nCreates a new leaf NodeInfo with given ScriptBuf and …\nCreates an new ScriptLeaf from script and ver and no …\nReturns the root TapNodeHash of this node info.\nComputes the TapNodeHash for this ScriptLeaf. This returns …\nGets the reference to inner NodeInfo of this tree root.\nReturns the output key (the key used in script pubkey) for …\nReturns the parity of the output key. See also …\nThe parity of the output key (NOT THE INTERNAL KEY WHICH …\nReturns the root TapNodeHash of this tree.\nReturns reference to the leaf script if the leaf is known.\nObtains a reference to the script inside the leaf.\nReturns [TapTreeIter<'_>] iterator for a taproot script …\nReturns a reference to the internal script map.\nSerializes the signature (without heap allocation)\nSerializes self as bytes.\nSerializes the control block.\nSerializes the signature to writer.\nImplements SerializedSignature and related types.\nThe corresponding hash type.\nThe underlying schnorr signature.\nReturns the size of control block. Faster and more …\nReturns the TapTweakHash for this TaprootSpendInfo i.e., …\nReturns the consensus representation of this …\nReturns the consensus representation of this LeafVersion.\nSerialize Signature\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nCreates a merkle proof from list of hashes.\nCreates a merkle proof from list of hashes.\nCreates a merkle proof from list of hashes.\nConstructs TapTree from a TaprootBuilder if it is complete …\nConstructs TapTree from a NodeInfo if it is complete …\nConverts the builder into a NodeInfo if the builder is a …\nConverts the builder into a TapTree if the builder is a …\nVerifies that a control block is correct proof for a given …\nObtains the version of the script leaf.\nCreates a new instance of TaprootBuilder with a capacity …\nCreates a new TaprootSpendInfo from a list of scripts …\nCreates a new TaprootSpendInfo from a list of scripts …\nIterator over node hashes within Taproot merkle branch.\nThe merkle proof for inclusion of a tree in a taptree hash.\nReturns the remaining items of this iterator as a mutable …\nReturns the remaining items of this iterator as a slice.\nReturns the argument unchanged.\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nOwned iterator over the bytes of SerializedSignature\nA serialized Taproot Signature\nReturns the remaining bytes as a slice.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate a SerializedSignature from a Signature. (this …\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nGet the len of the used data.\nConvert the serialized signature into the Signature struct.\nConvert an iterator of Results into FallibleIterator by …\nWrites this serialized signature to a writer.\nRepresents changes to an IndexedTxGraph.\nThe IndexedTxGraph combines a TxGraph and an Indexer …\nBatch insert all transactions of the given block of height.\nBatch insert all transactions of the given block of height…\nApplies the ChangeSet to the IndexedTxGraph.\nApply an update directly.\nApply the given update with an optional seen_at timestamp.\nBatch insert transactions, filtering out those that are …\nBatch insert unconfirmed transactions, filtering out those …\nBatch insert unconfirmed transactions.\nReturns the argument unchanged.\nReturns the argument unchanged.\nGet a reference of the internal transaction graph.\nTransaction index.\nIndexer changeset.\nDetermines the ChangeSet between self and an empty …\nInsert an anchor for a given transaction.\nInsert a unix timestamp of when a transaction is seen in …\nInsert and index a transaction into the graph.\nInsert a floating txout of given outpoint.\nCalls U::from(self).\nCalls U::from(self).\nConstruct a new IndexedTxGraph with a given index.\nTxGraph changeset.\nThe resultant “changeset” when new transaction data is …\nUtilities for indexing transaction data.\nApply changeset to itself.\nScans a transaction for relevant outpoints, which are …\nScan and index the given outpoint and txout.\nDetermines the ChangeSet between self and an empty Indexer.\nDetermines whether the transaction should be included in …\nKeychainTxOutIndex controls how script pubkeys are …\nSpkTxOutIndex is an index storing TxOuts that have a …\nRepresents updates to the derivation index of a …\nThe default lookahead for a KeychainTxOutIndex\nThe descriptor has already been assigned to a keychain so …\nTrait to extend FullScanRequestBuilder.\nError returned from KeychainTxOutIndex::insert_descriptor\nThe keychain is already assigned to a descriptor so you can…\nKeychainTxOutIndex controls how script pubkeys are …\nName for table that stores last revealed indices per …\nSchema name for the changeset.\nTrait to extend SyncRequestBuilder.\nGet unbounded spk iterators for all keychains.\nApplies the ChangeSet<K> to the KeychainTxOutIndex<K>\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct KeychainTxOutIndex from sqlite database and …\nGets the descriptor associated with the keychain. Returns …\nReturns the keychain and keychain index associated with …\nInitialize sqlite tables for persisting KeychainTxOutIndex.\nInsert a descriptor with a keychain associated to it.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns whether the changeset are empty.\nReturns whether the spk under the keychain’s index has …\nIterate over all OutPoints that have TxOuts with script …\nIterate over OutPoints that have script pubkeys derived …\nReturn all keychains and their corresponding descriptors.\nContains for each descriptor_id the last revealed index of …\nGet the last derivation index revealed for keychain. …\nGet the last derivation index that is revealed for each …\nReturns the highest derivation index of the keychain where …\nReturns the highest derivation index of each keychain that …\nGet the lookahead setting.\nStore lookahead scripts until target_index (inclusive).\nMarks the script pubkey at index as used even though the …\nMerge another ChangeSet into self.\nComputes the net value that this transaction gives to the …\nConstruct a KeychainTxOutIndex with the given lookahead.\nGet the next derivation index for keychain. The next index …\nGets the next unused script pubkey in the keychain. I.e., …\nGet the set of indexed outpoints, corresponding to tracked …\nPersist changeset to the sqlite database.\nAttempts to reveal the next script pubkey for keychain.\nReveals script pubkeys of the keychain’s descriptor up …\nConvenience method to call Self::reveal_to_target on …\nIterate over revealed spks of the given keychain with …\nIterate over revealed spks of keychains in range\nAdd Scripts that are revealed by the indexer of the given …\nGet v0 of sqlite keychain_txout::ChangeSet schema\nComputes the total value transfer effect tx has on the …\nReturn the script that exists under the given keychain’s …\nAdd spk iterators for each keychain tracked in indexer.\nReturn the TxOut of outpoint if it has been indexed, and …\nIterate over known txouts that spend to tracked script …\nFinds all txouts on a transaction that has previously been …\nGet an unbounded spk iterator over a given keychain. …\nUndoes the effect of mark_used. Returns whether the index …\nIterate over revealed, but unused, spks of the given …\nIterate over revealed, but unused, spks of all keychains.\nAdd Scripts that are revealed by the indexer but currently …\nThe descriptor you have attempted to reassign\nThe keychain that the descriptor is already assigned to\nThe descriptor that the keychain is already assigned to\nThe keychain that you have attempted to reassign\nAn index storing TxOuts that have a script pubkey that …\nThe script pubkeys that are being tracked by the index.\nReturns the argument unchanged.\nReturns the index associated with the script pubkey.\nAdds a script pubkey to scan for. Returns false and does …\nCalls U::from(self).\nWhether any of the inputs of this transaction spend a …\nReturns whether the script pubkey at index has been used …\nMarks the script pubkey at index as used even though it …\nComputes the net value transfer effect of tx on the script …\nGet a reference to the set of indexed outpoints.\nIterates over all the outputs with script pubkeys in an …\nScans a transaction’s outputs for matching script …\nScan a single TxOut for a matching script pubkey and …\nComputes the total value transfer effect tx has on the …\nReturns the script that has been inserted at the index.\nReturns the txout and script pubkey index of the TxOut at …\nIterate over all known txouts that spend to tracked script …\nFinds all txouts on a transaction that has previously been …\nUndoes the effect of mark_used. Returns whether the index …\nIterates over all unused script pubkeys in an index range.\nRepresents a failure when trying to insert/remove a …\nThe error type for LocalChain::apply_header_connected_to.\nName of sqlite table that stores blocks of LocalChain.\nOccurs when the update cannot connect with the original …\nOccurs when an update does not have a common checkpoint …\nThe ChangeSet represents changes to LocalChain.\nA checkpoint is a node of a reference-counted linked list …\nIterates over checkpoints backwards.\nOccurs when connected_to block conflicts with either the …\nThis is a local implementation of ChainOracle.\nAn error which occurs when a LocalChain is constructed …\nSchema name for the changeset.\nApply the given changeset.\nUpdate the chain with a given Header connecting it with …\nUpdate the chain with a given Header at height which you …\nApplies the given update to the chain.\nChanges to the LocalChain blocks.\nRemoves blocks from (and inclusive of) the given block_id.\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 LocalChain from a BTreeMap of height to …\nConstruct a LocalChain from an initial changeset.\nConstruct LocalChain from genesis hash.\nConstruct a LocalChain from sqlite database.\nConstruct a LocalChain from a given checkpoint tip.\nGet the genesis hash.\nGet checkpoint at given height (if it exists).\nThe checkpoint’s height.\nInitialize sqlite tables for persisting …\nDerives an initial ChangeSet, meaning that it can be …\nInsert a BlockId.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nIterate over checkpoints in descending height order.\nThe original checkpoint’s block hash which cannot be …\nPersist changeset to the sqlite database.\nIterate checkpoints over a height range.\nGet v0 of sqlite local_chain::ChangeSet schema\nGet the highest checkpoint.\nThe suggested checkpoint to include to connect the two …\nThe attempted update to the original_block hash.\nTable name for schemas.\nRuns logic that initializes/migrates the table schemas.\nData required to perform a spk-based blockchain client …\nBuilds a FullScanRequest.\nData returned from a spk-based blockchain client full scan.\nOutpoint sync item.\nScript pubkey sync item.\nAn item reported to the inspect closure of SyncRequest.\nThe progress of SyncRequest.\nData required to perform a spk-based blockchain client …\nBuilds a SyncRequest.\nData returned from a spk-based blockchain client sync.\nTxid sync item.\nBuild the SyncRequest.\nBuild the FullScanRequest.\nStart building a SyncRequest.\nStart building a FullScanRequest.\nSet the initial chain tip for the sync request.\nGet the chain tip CheckPoint of this request (if any).\nSet the initial chain tip for the full scan request.\nGet the chain tip CheckPoint of this request (if any).\nChanges to the chain discovered during the scan.\nChanges to the chain discovered during the scan.\nTotal consumed items of the request.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nSet the closure that will inspect every sync item visited.\nSet the closure that will inspect every sync item visited.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nIterate over OutPoints contained in this request.\nIterate over ScriptBufs contained in this request.\nIterate over indexed ScriptBufs contained in this request …\nIterate over Txids contained in this request.\nList all keychains contained in this request.\nLast active indices for the corresponding keychains (K). …\nAdvances the sync request and returns the next OutPoint.\nAdvances the sync request and returns the next ScriptBuf.\nAdvances the full scan request and returns the next …\nAdvances the sync request and returns the next Txid.\nAdd OutPoints that will be synced against.\nOutpoints consumed by the request.\nOutpoints remaining in the request.\nGet the SyncProgress of this request.\nTotal remaining items of the request.\nAdd Scripts that will be synced against.\nScript pubkeys consumed by the request.\nSet the spk iterator for a given keychain.\nScript pubkeys remaining in the request.\nAdd Scripts coupled with associated indexes that will be …\nTotal items, consumed and remaining, of the request.\nTotal outpoints, consumed and remaining, of the request.\nTotal script pubkeys, consumed and remaining, of the …\nTotal txids, consumed and remaining, of the request.\nRelevant transaction data discovered during the scan.\nRelevant transaction data discovered during the scan.\nAdd Txids that will be synced against.\nTxids consumed by the request.\nTxids remaining in the request.\nName of table that stores Anchors.\nErrors returned by TxGraph::calculate_fee.\nA transaction that is included in the chain, or is still …\nThe ChangeSet represents changes to a TxGraph.\nMissing TxOut for one or more of the inputs of the tx\nWhen the transaction is invalid according to the graph it …\nSchema name for tx_graph::ChangeSet.\nName of table that stores floating txouts.\nName of table that stores full transactions and last_seen …\nAn iterator that traverses ancestors of a given root …\nAn iterator that traverses transaction descendants.\nA graph of transactions and spends.\nA transaction node in the TxGraph.\nData object used to communicate updates about relevant …\nGet all transaction anchors known by TxGraph.\nIterate over all tx outputs known by TxGraph.\nIterates over the heights of that the new transaction …\nTransaction anchors. Anchors tells us a position in the …\nThe blocks that the transaction is “anchored” in.\nAdded anchors.\nApplies ChangeSet to TxGraph.\nExtends this graph with the given update.\nExtends this graph with the given update alongside an …\nGet the total balance of outpoints that are in chain of …\nBatch insert unconfirmed transactions.\nCalculates the fee of a given transaction. Returns …\nHow the transaction is observed as (confirmed or …\nGiven a transaction, return an iterator of txids that …\nGet a filtered list of outputs from the given outpoints …\nGet a filtered list of unspent outputs (UTXOs) from the …\nIterate over floating txouts known by TxGraph.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstruct a TxGraph from an sqlite database.\nIterate over all full transactions in the graph.\nGet the position of the transaction in chain with tip …\nGet the txid of the spending transaction and where the …\nGet a transaction by txid. This only returns Some for full …\nGet a transaction node by txid. This only returns Some for …\nObtains a single tx output (if any) at the specified …\nInitialize sqlite tables.\nDetermines the ChangeSet between self and an empty TxGraph.\nInserts the given anchor into TxGraph.\nInserts the given seen_at for txid into TxGraph.\nInserts the given transaction into TxGraph.\nInserts the given TxOut at OutPoint.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConvert an iterator of anything into FallibleIterator by …\nConvert an iterator of anything into FallibleIterator by …\nWhether the graph has any transactions or outputs in it.\nAdded last-seen unix timestamps of transactions.\nThe last-seen unix timestamp of the transaction as …\nList graph transactions that are in chain with chain_tip.\nTransform the TxGraph to have Anchors of another type.\nTransform the ChangeSet to have Anchors of another type.") \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-2-.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-2-.js index e781a5dd51..bf0f65a137 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-2-.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_chain/bdk_chain-desc-2-.js @@ -1 +1 @@ -searchState.loadedDescShard("bdk_chain", 2, "Transform the ChangeSet to have Anchors of another type.\nConstruct a new TxGraph from a list of transactions.\nThe transactions spending from this output.\nPersist changeset to the sqlite database.\nSeen at times for transactions. This records when a …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nGet the total balance of outpoints that are in chain of …\nGet a filtered list of outputs from the given outpoints …\nGet a filtered list of unspent outputs (UTXOs) from the …\nGet the position of the transaction in chain with tip …\nGet the txid of the spending transaction and where the …\nList graph transactions that are in chain with chain_tip.\nA partial or full representation of the transaction.\nThe transaction node (as part of the graph).\nReturns known outputs of a given txid.\nIterates over the transactions spending from txid.\nTxid of the transaction.\nIterates over all outpoints contained within ChangeSet.\nFloating txouts. These are TxOuts that exist but the whole …\nAdded txouts.\nFull transactions. These are transactions that were …\nAdded transactions.\nIterate over graph transactions with no anchors or …\nCreates an iterator that filters and maps ancestor …\nCreates an iterator that both filters and maps conflicting …\nCreates an iterator that filters and maps descendants from …") \ No newline at end of file +searchState.loadedDescShard("bdk_chain", 2, "Construct a new TxGraph from a list of transactions.\nThe transactions spending from this output.\nPersist changeset to the sqlite database.\nGet v0 of sqlite tx_graph::ChangeSet schema\nGet v1 of sqlite tx_graph::ChangeSet schema\nSeen at times for transactions. This records when a …\nConvert an iterator of Results into FallibleIterator by …\nConvert an iterator of Results into FallibleIterator by …\nGet the total balance of outpoints that are in chain of …\nGet a filtered list of outputs from the given outpoints …\nGet a filtered list of unspent outputs (UTXOs) from the …\nGet the position of the transaction in chain with tip …\nGet the txid of the spending transaction and where the …\nList graph transactions that are in chain with chain_tip.\nA partial or full representation of the transaction.\nThe transaction node (as part of the graph).\nReturns known outputs of a given txid.\nIterates over the transactions spending from txid.\nTxid of the transaction.\nIterates over all outpoints contained within ChangeSet.\nFloating txouts. These are TxOuts that exist but the whole …\nAdded txouts.\nFull transactions. These are transactions that were …\nAdded transactions.\nIterate over graph transactions with no anchors or …\nCreates an iterator that filters and maps ancestor …\nCreates an iterator that both filters and maps conflicting …\nCreates an iterator that filters and maps descendants from …") \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_wallet/bdk_wallet-desc-0-.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_wallet/bdk_wallet-desc-0-.js index 925ce91a0d..b8a7c19982 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_wallet/bdk_wallet-desc-0-.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/search.desc/bdk_wallet/bdk_wallet-desc-0-.js @@ -1 +1 @@ -searchState.loadedDescShard("bdk_wallet", 0, "BDK Wallet\nError returned from TxBuilder::add_foreign_utxo.\nError returned from TxBuilder::add_utxo and …\nA derived address and the index it was found at. For …\nAn error that may occur when applying a block to Wallet.\nAsync trait that persists PersistedWallet.\nBalance, differentiated into various categories.\nOccurs when the update chain cannot connect with original …\nUse both change and non-change outputs (default)\nOnly use non-change outputs (see …\nA changeset for Wallet.\nPolicy regarding the use of change outputs when creating a …\nParameters for Wallet::create or PersistedWallet::create.\nError type for PersistedWallet::create.\nProvide custom comparison functions for sorting\nPersister already has wallet data.\nOccurs when the loaded changeset cannot construct Wallet.\nThere was a problem with the passed-in descriptor(s).\nDescriptor’s DescriptorId does not match.\nError type of the persister.\nError type of the persister.\nExternal keychain, used for deriving recipient addresses.\nError for bdk_file_store’s implementation of …\nA UTXO owned by another wallet.\nGenesis hash does not match.\nInternal keychain, used for deriving change addresses.\nOccurs when the loaded changeset cannot construct Wallet.\nRequested outpoint doesn’t exist in the tx (vout greater …\nForeign utxo outpoint txid does not match PSBT input txid\nTrait to check if a value is below the dust limit. We are …\nTypes of keychains\nError when loading from the store.\nThe error type when loading a Wallet from a ChangeSet.\nRepresents a mismatch with what is loaded and what is …\nParameters for Wallet::load or PersistedWallet::load.\nError type for PersistedWallet::load.\nA UTXO owned by the local wallet.\nAn unspent output owned by a Wallet.\nData loaded is unexpected.\nData loaded from persistence is missing descriptor.\nData loaded from persistence is missing genesis hash.\nData loaded from persistence is missing network type.\nForeign utxo missing witness_utxo or non_witness_utxo\nNetwork does not match.\nOnly use change outputs (see TxBuilder::only_spend_change)\nError from persistence.\nError from persistence.\nRepresents a persisted wallet which persists into type P.\nRandomized (default)\nOptions for a software signer\nA transaction builder\nOrdering of the transaction’s inputs and outputs\nOccurs when the connected_to hash does not match the hash …\nHappens when trying to spend an UTXO that is not in the …\nUnchanged\nAn update to Wallet.\nAn unspent transaction output (UTXO).\nSchema name for wallet.\nName of table to store wallet descriptors and network.\nA Bitcoin wallet\nTrait that persists PersistedWallet.\nA CanonicalTx managed by a Wallet.\nA Utxo with its satisfaction_weight.\nError when writing to the store.\nAdd an external signer\nAddress\nGet unbounded script pubkey iterators for both Internal …\nWhether the signer should use the sighash_type set in the …\nWhether we should grind ECDSA signature to ensure signing …\nIntroduces a block of height to the wallet, and tries to …\nApplies relevant transactions from block of height to the …\nApply relevant unconfirmed transactions to the wallet.\nApplies an update to the wallet and stages the changes …\nApplies an update alongside a seen_at timestamp and stages …\nReturn KeychainKind as a byte\nWhether the wallet should assume a specific height has …\nReturn the balance, separated into available, …\nBump the fee of a transaction previously created with this …\nStart building a transaction.\nCalculates the fee of a given transaction. Returns …\nCalculate the FeeRate for a given transaction.\nInforms the wallet that you no longer intend to broadcast …\nUpdate for the wallet’s internal LocalChain.\nHow the transaction is observed as (confirmed or …\nThe position of the output in the blockchain.\nDescriptor for change addresses.\nChecks that the given genesis_hash matches the one loaded …\nChecks that the given network matches the one loaded from …\nGet all the checkpoints the wallet is currently storing …\nCoin selection\nConfirmed and immediately spendable balance\nCreate a new PersistedWallet with the given persister and …\nBuild a new Wallet.\nCreate a new PersistedWallet with the given async persister…\nBuild a new single descriptor Wallet.\nCreate PersistedWallet with the given WalletPersister.\nCreate PersistedWallet with the given AsyncWalletPersister.\nCreate Wallet without persistence.\nCreate a new Wallet with given params.\nThe derivation index of this wallet. It will return None …\nThe derivation index for the script pubkey in the wallet\nFinds how the wallet derived the script pubkey spk.\nDescriptors\nChecks the expected_descriptor matches exactly what is …\nDescriptor for recipient addresses.\nMacro to write full descriptors with code\nReturn the checksum of the public descriptor associated to …\nErrors that can be thrown by the Wallet\nWallet export\nWhether to try extracting private keys from the provided …\nFinalize a PSBT, i.e., for each input determine if …\nMacro to write descriptor fragments with code\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nRecover a ChangeSet from sqlite database.\nUse a custom genesis_hash.\nget the corresponding PSBT Input for a LocalUtxo\nGet the signers\nGet a single transaction from the wallet as a WalletTx (if …\nReturns the utxo owned by this wallet corresponding to …\nAll coinbase outputs not yet matured\nChild index of this address\nChanges to KeychainTxOutIndex.\nInitialize sqlite tables for wallet tables.\nInitialize the persister and load all data.\nInitialize the persister and load all data.\nInserts a TxOut at OutPoint into the wallet’s …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCheck whether or not a value is below dust limit\nReturn whether or not a script is part of this wallet …\nWhether this UTXO is spent or not\nType of keychain\nType of keychain\nIterator over all keychains in this wallet\nExtend the given keychain’s keymap.\nExtend the given keychain’s keymap.\nKey formats\nContains the last active derivation indices per keychain (K…\nReturns the latest checkpoint.\nList all relevant outputs (includes both spent and …\nReturn the list of unspent outputs of this wallet\nList addresses that are revealed but unused.\nLoad a previously PersistedWallet from the given persister …\nBuild Wallet by loading from persistence or ChangeSet.\nLoad a previously PersistedWallet from the given async …\nLoad PersistedWallet with the given WalletPersister.\nLoad PersistedWallet with the given AsyncWalletPersister.\nLoad Wallet without persistence.\nLoad Wallet from the given previously persisted ChangeSet …\nGet a reference to the inner LocalChain.\nChanges to the LocalChain.\nUse a custom lookahead value.\nUse a custom lookahead value.\nMarks an address used of the given keychain at index.\nMerge another ChangeSet into itself.\nSet network.\nGet the Bitcoin network the wallet is using.\nStores the network type of the transaction data.\nConstruct parameters with provided descriptor and …\nConstruct parameters with default values.\nConstruct parameters with provided descriptor.\nThe index of the next address that you would get if you …\nGet the next unused address for the given keychain, i.e. …\nGet the location of the UTXO\nReference to a transaction output\nPeek an address of the given keychain at index without …\nPersist the given changeset to the persister.\nPersist the given changeset to the persister.\nPersist staged changes of wallet into persister.\nPersist staged changes of wallet into an async persister.\nPersist ChangeSet to sqlite database.\nReturn the spending policies for the wallet’s descriptor\nAdditional functions on the rust-bitcoin Psbt structure.\nReturns the descriptor used to create addresses for a …\nReveal addresses up to and including the target index and …\nAttempt to reveal the next address of the given keychain.\nSupport for persisting bdk_chain structures to SQLite …\nThe weight of the witness data and scriptSig expressed in …\nReturn the secp256k1 context used for all signing …\nCompute the tx’s sent and received Amounts.\nGet the sequence number if an explicit sequence number has …\nSet the keymap for a given keychain.\nSet the keymap for each keychain.\nSign a transaction with all the wallet’s signers, in the …\nWhether we should try to sign a taproot transaction with …\nGeneralized signers\nGet a reference to the inner KeychainTxOutIndex.\nGet a reference of the staged ChangeSet that is yet to be …\nGet a mutable reference of the staged ChangeSet that is …\nCreate a `FullScanRequest for this wallet.\nCreate a partial SyncRequest for this wallet for all …\nTake the staged ChangeSet to be persisted now (if any).\nSpecifies which Taproot script-spend leaves we should sign …\nGet the whole balance visible to the wallet.\nIterate over the transactions in the wallet.\nArray of transactions in the wallet sorted with a …\nWhether the signer should trust the witness_utxo, if the …\nUnconfirmed UTXOs generated by a wallet tx\nGet sum of trusted_pending and confirmed coins.\nWhether to try finalizing the PSBT after the inputs are …\nTransaction builder\nGet a reference to the inner TxGraph.\nChanges to TxGraph.\nThe transaction node (as part of the graph).\nUpdate for the wallet’s internal TxGraph.\nGet the TxOut of the UTXO\nTransaction output\nGet an unbounded script pubkey iterator for the given …\nUndoes the effect of mark_used and returns whether the …\nUnconfirmed UTXOs received from an external wallet\nThe UTXO\nGet the version of bdk_wallet at runtime.\nDeterministically generate a unique name given the …\nForeign UTXO outpoint\nPSBT input txid\nBlock hash of connected_to.\nExpected block hash of connected_to, as derived from block.\nThe expected network.\nThe expected genesis hash.\nThe expected descriptor.\nKeychain identifying the descriptor.\nThe network that is loaded.\nThe genesis hash that is loaded.\nThe loaded descriptor.\nTransaction inputs sort function\nTransaction outputs sort function\nThe location of the output.\nThe information about the input we require to add it to a …\nThe nSequence value to set for this input.\nBranch and bound coin selection\nIt’s possible to create spendable output from excess …\nTrait for generalized coin selection algorithms\nResult of a successful coin selection\nDefault coin selection algorithm used by TxBuilder if not …\nRemaining amount after performing coin selection\nWallet’s UTXO set is not enough to cover recipient’s …\nSimple and dumb coin selection\nIt’s not possible to create spendable output from excess …\nOldestFirstCoinSelection always picks the utxo with the …\nPull UTXOs at random until we have enough to meet the …\nSats available for spending\nPerform the coin selection\nDecide if change can be created\nRemaining amount after deducing fees and outgoing outputs\nTotal fee amount for the selected utxos in satoshis\nReturns the argument unchanged.\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).\nThe total value of the inputs selected from the local …\nSats needed for some transaction\nCreate new instance with a target size_of_change and …\nList of outputs selected for use as inputs\nThe total value of the inputs selected.\nEffective amount available to create change after …\nThe calculated fee for the drain TxOut with the selected …\nThreshold to consider amount as dust for this particular …\nThe deducted change output fee\nExceeding amount of current selection over outgoing value …\nA raw scriptpubkey (including pay-to-pubkey) under Legacy …\nA raw scriptpubkey (including pay-to-pubkey) under Legacy …\nA raw scriptpubkey (including pay-to-pubkey) under Legacy …\nAlias for a Descriptor that contains extended derived keys\nScript descriptor\nThe descriptor pubkey, either a single pubkey or an xpub.\nAlias for a Descriptor that can contain extended keys …\nTrait implemented on Descriptors to add a method to …\nThe 0 combinator.\nAlias for the type of maps that represent derivation paths …\nTrait for types which can be converted into an …\nThe consensus key associated with the type. Must be a …\nLegacy ScriptContext To be used as P2SH scripts For …\nThe top-level miniscript abstract syntax tree (AST).\nMultiple extended public keys.\nPay-to-PubKey-Hash\nPay-to-PubKey-Hash\nPay-to-PubKey-Hash\nThe ScriptContext for Miniscript. Additional type …\nSegwitv0 ScriptContext\nPay-to-ScriptHash(includes nested wsh/wpkh/sorted multi)\nPay-to-ScriptHash(includes nested wsh/wpkh/sorted multi)\nPay-to-ScriptHash(includes nested wsh/wpkh/sorted multi)\nSingle public key.\nThe 1 combinator.\nAlias for the type of maps that represent taproot key …\nPay-to-Taproot\nPay-to-Taproot\nPay-to-Taproot\nPay-to-Witness-PubKey-Hash\nPay-to-Witness-PubKey-Hash\nPay-to-Witness-PubKey-Hash\nPay-to-Witness-ScriptHash with Segwitv0 context\nPay-to-Witness-ScriptHash with Segwitv0 context\nPay-to-Witness-ScriptHash with Segwitv0 context\nExtended public key (xpub).\nComputes the Bitcoin address of the descriptor, if one …\nGet a reference to the inner AstElem representing the root …\nReplaces all wildcards (i.e. /*) in the descriptor with a …\nEnumerates all child nodes of the current AST node (self) …\nAttempt to produce a non-malleable witness template given …\nAttempt to produce a malleable witness template given the …\nDepending on script Context, some of the Terminals might …\nDepending on script Context, some of the script resource …\nCheck the consensus + policy(if not disabled) rules that …\nConsensus rules at the Miniscript satisfaction time. It is …\nPolicy rules at the Miniscript satisfaction time. It is …\nCheck the consensus + policy(if not disabled) rules …\nEach context has slightly different rules on what Pks are …\nDepending on ScriptContext, fragments can be malleable. …\nCheck whether the given satisfaction is valid under the …\nDescriptor checksum\nWhether the given miniscript contains a raw pkh fragment\nDeprecated name for Self::at_derivation_index.\nConvert all the public keys in the descriptor to …\nConvert all the public keys in the descriptor to …\nGet the DescriptorType of Descriptor\nEncode as a Bitcoin script\nDescriptor errors\nComputes the the underlying script before any hashing is …\nAdditional information helpful for extra analysis.\nCheck whether the miniscript follows the given Extra …\nExtract the spending policy\nUtility method for deriving the descriptor at each index …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nAdd type information(Type and Extdata) to Miniscript based …\nCreate a new Miniscript from a Terminal node and a Type …\nParse a Miniscript from string and perform sanity checks …\nAttempt to parse an Miniscripts that don’t follow the …\nAttempt to parse an insane(scripts don’t clear sanity …\nParse an expression tree into a descriptor.\nParse an expression tree into a Miniscript. As a general …\nReturns child node with given index, if any\nReturns Option::Some with cloned n’th public key from …\nReturns satisfying non-malleable witness and scriptSig to …\nReturns a possilbly mallable satisfying non-malleable …\nWhether the miniscript contains a combination of timelocks\nWhether the miniscript has repeated Pk or Pkh\nWhether or not the descriptor has any wildcards i.e. /*.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nExtracts the AstElem representing the root of the …\nGet as many descriptors as different paths in this …\nConvert to wallet descriptor\nWhether or not the descriptor has any wildcards\nWhether this descriptor contains a key that has multiple …\nWhether the miniscript is malleable\nCreates a new Iter iterator that will iterate over all …\nCreates a new PkIter iterator that will iterate over all …\nLifting corresponds to conversion of a miniscript into a …\nDepending on script context, the size of a satifaction …\nMaximum size, in bytes, of a satisfying witness. For …\nComputes an upper bound on the weight of a satisfying …\nMaximum number of witness elements used to satisfy the …\nComputes an upper bound on the difference between a …\nLocal helper function to display error messages with …\nCreate a new bare descriptor from witness script Errors …\nCreate a new pk descriptor\nCreate a new PkH descriptor\nCreate a new sh for a given redeem script Errors when …\nCreate a new sh sortedmulti descriptor with threshold k …\nCreate a new sh wrapper for the given wpkh descriptor\nCreate a new sh wrapper for the given wsh descriptor\nCreate a new sh wrapped wpkh from Pk. Errors when …\nCreate a new sh wrapped wsh descriptor with witness script …\nCreate a new sh wrapped wsh sortedmulti descriptor from …\nCreate new tr descriptor Errors when miniscript exceeds …\nCreate a new Wpkh descriptor Will return Err if …\nCreate a new wsh descriptor from witness script Errors …\nCreate a new wsh sorted multi descriptor Errors when …\nA node in the AST.\nOther top level checks that are context specific\nAttempt to parse a Script into Miniscript representation.\nParse a descriptor that may contain secret keys\nAttempt to parse an insane(scripts don’t clear sanity …\nAttempt to parse an miniscript with extra features that …\nGet the len of public key when serialized based on context …\nReturns a plan if the provided assets are sufficient to …\nReturns a plan if the provided assets are sufficient to …\nDescriptor policy\nWhether all spend paths of miniscript require a signature\nChecks whether the descriptor is safe.\nCheck whether the underlying Miniscript is safe under the …\nAttempts to produce a non-malleable satisfying witness and …\nAttempt to produce non-malleable satisfying witness for the\nAttempt to produce a malleable satisfying witness for the …\nComputes the scriptCode of a transaction output.\nComputes the scriptpubkey of the descriptor.\nSize, in bytes of the script-pubkey. If this Miniscript is …\nThe type of signature required for satisfaction\nSubstitutes raw public keys hashes with the public keys as …\nDescriptor templates\nSerialize a descriptor to string with its secret keys\nCheck top level consensus rules.\nCheck whether the top-level is type B\nConverts a descriptor using abstract keys to one using …\nTranslates a struct from one generic to another where the …\nThe correctness and malleability type information for the …\nComputes the scriptSig that will be in place for an …\nWhether the miniscript can exceed the resource …\nCompute the checksum of a descriptor, excludes any …\nError during base58 decoding\nBIP32 error\nErrors related to the parsing and usage of descriptors\nThe provided wallet descriptors are identical\nThe descriptor contains hardened derivation steps on …\nHex decoding error\nInvalid byte found in the descriptor checksum\nThe provided descriptor doesn’t match its checksum\nInvalid HD Key path, such as having a wildcard but a …\nError thrown while working with keys\nMiniscript error\nThe descriptor contains multipath keys\nKey-related error\nError while extracting and manipulating policies\nReturns the argument unchanged.\nCalls U::from(self).\nAbsolute timeclock timestamp\nCan not add to an item that is Satisfaction::None or …\nCan not add to an item that is …\nOptions to build the satisfaction field in the policy\nCan satisfy the policy item\nAn extra condition that must be satisfied but that is out …\nType for a map of sets of Condition items keyed by each set…\nECDSA Signature for a raw public key\nAn extended key fingerprint\nType for a map of folded sets of Condition items keyed by …\nSHA256 then RIPEMD160 preimage hash\nDouble SHA256 preimage hash\nIncompatible conditions (not currently used)\nIndex out of range for an item to satisfy a …\nCan not merge CSV or timelock values unless both are less …\nMulti-signature public keys with threshold count\nCannot satisfy or contribute to the policy item\nDon’t generate satisfaction field\nNot enough items are selected to satisfy a …\nOnly a partial satisfaction of some kind of threshold …\nCan reach the threshold of some kind of threshold policy\nA unique identifier for a key\nDescriptor spending policy\nErrors that can happen while extracting and manipulating …\nAnalyze the given PSBT to check for existing signatures\nLike Psbt variant and also check for expired timelocks\nA legacy public key\nRelative timelock locktime\nRIPEMD160 preimage hash\nRepresent if and how much a policy item is satisfied by …\nAn item that needs to be satisfied\nSchnorr Signature for a raw public key\nSHA256 preimage hash\nThreshold items with threshold count\nA x-only public key\nHow the wallet’s descriptor can satisfy this policy node\nOptional CheckSequenceVerify condition\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturn the conditions that are set by the spending policy …\nReturns a unique id for the SatisfiableItem\nIdentifier for this policy node\nCalls U::from(self).\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 whether the SatisfiableItem is a leaf item\nReturns whether the Satisfaction is a leaf item\nReturns true if there are no extra conditions to verify\nType of this policy node\nReturn whether or not a specific path in the policy tree …\nHow much a given PSBT already satisfies this policy node …\nOptional timelock condition\nCurrent blockchain height\nThe highest confirmation height between the inputs CSV …\nGiven PSBT\nExtra conditions that also need to be satisfied\nExtra conditions that also need to be satisfied\nExtra conditions that also need to be satisfied\nThe items that can be satisfied by the descriptor or are …\nThe items that can be satisfied by the descriptor\nThreshold\nThreshold\nTotal number of items\nTotal number of items\nWhether the items are sorted in lexicographic order (used …\nWhether the items are sorted in lexicographic order (used …\nThe digest value\nThe digest value\nThe digest value\nThe digest value\nThe policy items\nThe raw public key or extended key fingerprint\nThe required threshold count\nThe required threshold count\nThe timelock value\nThe timelock value\nBIP44 template. Expands to pkh(key/44'/{0,1}'/0'/{0,1}/*)\nBIP44 public template. Expands to pkh(key/{0,1}/*)\nBIP49 template. Expands to …\nBIP49 public template. Expands to sh(wpkh(key/{0,1}/*))\nBIP84 template. Expands to wpkh(key/84'/{0,1}'/0'/{0,1}/*)\nBIP84 public template. Expands to wpkh(key/{0,1}/*)\nBIP86 template. Expands to tr(key/86'/{0,1}'/0'/{0,1}/*)\nBIP86 public template. Expands to tr(key/{0,1}/*)\nTrait for descriptor templates that can be built into a …\nType alias for the return type of DescriptorTemplate, …\nP2PKH template. Expands to a descriptor pkh(key)\nP2TR template. Expands to a descriptor tr(key)\nP2WPKH template. Expands to a descriptor wpkh(key)\nP2WPKH-P2SH template. Expands to a descriptor sh(wpkh(key))\nBuild the complete descriptor\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nError returned from Wallet::build_fee_bump\nThere was an error with coin selection\nDescriptor key conversion error\nError returned from TxBuilder::finish\nThere was a problem with the descriptors passed in\nWhen bumping a tx the fee rate requested is lower than …\nNode doesn’t have data to estimate a fee rate\nWhen bumping a tx the absolute fee requested is lower than …\nTrying to replace a tx that has a sequence >= 0xFFFFFFFE\nRequested LockTime is less than is required to spend from …\nMiniscript PSBT error\nErrors returned by miniscript when updating inconsistent …\nIn order to use the TxBuilder::add_global_xpubs option …\nMissing non_witness_utxo on foreign utxo for given OutPoint\nCannot build a tx without recipients\nmanually_selected_only option is selected but no utxo has …\nOutput created is under the dust limit, 546 satoshis\nReturn error type for …\nThere was a problem while extracting and manipulating …\nPartially signed bitcoin transaction error\nCannot enable RBF with Sequence given a required OP_CSV\nSpending policy is not compatible with this KeychainKind\nHappens when trying to bump a transaction that is already …\nThrown when a tx is not found in the internal database\nHappens when trying to spend an UTXO that is not in the …\nHappens when trying to spend an UTXO that is not in the …\nReturn error type for PsbtExt::update_input_with_descriptor\nRequested invalid transaction version ‘0’\nRequested transaction version 1, but at least 2 is needed …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRequired OP_CSV Sequence\nRequested LockTime\nRequired LockTime\nRequired fee absolute value Amount\nRequired fee rate\nGiven RBF Sequence\nStructure that contains the export of a wallet\nAlias for FullyNodedExport\nEarliest block to rescan when looking for the wallet’s …\nEarliest block to rescan when looking for the wallet’s …\nReturn the internal descriptor, if present\nReturn the external descriptor\nExport a wallet\nReturns the argument unchanged.\nCalls U::from(self).\nArbitrary label for the wallet\nArbitrary label for the wallet\nBIP32 error\nTrait for keys that can be derived.\nContainer for public or secret keys\nThe descriptor pubkey, either a single pubkey or an xpub.\nThe descriptor secret key, either a single private key or …\nType specifying the amount of entropy required e.g. [u8;32]\nReturned error in case of failure\nTrait that adds extra useful methods to ScriptContexts\nEnum for extended keys that can be either xprv or xpub\nA bitcoin public key (compressed or uncompressed).\nTrait that allows generating a key with the default options\nTrait for keys that can be generated\nOutput of a GeneratableKey key generation\nTrait for objects that can be turned into a public or …\nThe key has an invalid checksum\nThe key is not valid for the given network\nThe key cannot exist in the given script context\nThe consensus key associated with the type. Must be a …\nErrors thrown while working with keys\nAlias type for a map of public key to secret key\nLegacy scripts\nCustom error message\nMiniscript error\nMultiple extended private keys.\nMultiple extended public keys.\nExtra options required by the generate_with_entropy\nA private extended key, aka an xprv\nOptions for generating a PrivateKey\nA public extended key, aka an xpub\nThe ScriptContext for Miniscript. Additional type …\nEnum representation of the known valid ScriptContexts\nSegwitv0 scripts\nSingle public key.\nSingle private key.\nA descriptor bitcoin::PrivateKey with optional origin …\nA descriptor SinglePubKey with optional origin information.\nSingle public key without any origin or range information.\nContents of a “sortedmulti” descriptor\nTaproot scripts\nSet of valid networks for a key\nAn xonly public key.\nExtended private key (xpriv).\nExtended public key (xpub).\nCreate a set containing mainnet, testnet, signet, and …\nReturns the ScriptContext as a ScriptContextEnum\nReplaces any wildcard (i.e. /*) in the key with a …\nAttempt to produce a witness template given the assets …\nDepending on script Context, some of the Terminals might …\nDepending on script Context, some of the script resource …\nCheck the consensus + policy(if not disabled) rules that …\nConsensus rules at the Miniscript satisfaction time. It is …\nPolicy rules at the Miniscript satisfaction time. It is …\nCheck the consensus + policy(if not disabled) rules …\nEach context has slightly different rules on what Pks are …\nDepending on ScriptContext, fragments can be malleable. …\nCheck whether the given satisfaction is valid under the …\nWhether the generated key should be “compressed” or not\nDeprecated name for Self::at_derivation_index.\nEncode as a Bitcoin script\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate an instance given a public key and a set of valid …\nCreate an instance given a secret key and a set of valid …\nParse an expression tree into a SortedMultiVec\nFull path, from the master key\nReturns a vector containing the full derivation paths from …\nGenerate a key given the options with random entropy.\nGenerate a key with the default options and a random …\nGenerate a key with the default options and a random …\nGenerate a key given the options with random entropy.\nGenerate a key given the extra options and the entropy\nGenerate a key with the default options and a given entropy\nReturn whether or not the key contains the private data\nWhether or not the key has a wildcard\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 the key into a DescriptorKey within the requested …\nConsume self and turn it into a DescriptorKey by adding …\nConsume self and turn it into an ExtendedKey\nConsumes self and returns the key\nGet as many keys as derivation paths in this key.\nGet as many keys as derivation paths in this key.\nTransform the ExtendedKey into an Xpriv for the given …\nTransform the ExtendedKey into an Xpub for the given …\nWhether or not the key has a wildcard\nReturns whether the script context is Legacy\nReturns whether the script context is …\nWhether or not this key has multiple derivation paths.\nWhether or not this key has multiple derivation paths.\nReturns whether the script context is Segwitv0\nReturns whether the script context is …\nReturns whether the script context is Tap, aka Taproot or …\nReturns whether the script context is …\nThe threshold value for the multisig.\nThe public key.\nThe private key.\nCreate a set only containing mainnet\nThe fingerprint of the master key associated with this …\nDepending on script context, the size of a satifaction …\nMaximum size, in bytes, of a satisfying witness. In …\nMaximum number of witness elements used to satisfy the …\nCompute the intersection of two sets\nThe number of keys in the multisig.\nLocal helper function to display error messages with …\nCreate a new instance of SortedMultiVec given a list of …\nOrigin information (fingerprint and derivation path).\nOrigin information (fingerprint and derivation path).\nOther top level checks that are context specific\nOverride the computed set of valid networks\nGet the len of public key when serialized based on context …\nAccessor for the public keys in the multisig.\nutility function to sanity a sorted multi vec\nAttempt to produce a satisfying witness for the witness …\nSize, in bytes of the script-pubkey. If this Miniscript is …\nThe type of signature required for satisfaction\nCreate Terminal::Multi containing sorted pubkeys\nCreate a set containing testnet and regtest\nReturns the public version of this key.\nCheck top level consensus rules.\nCheck whether the top-level is type B\nThis will panic if fpk returns an uncompressed key when …\nTrait to add functions to extract utxos and calculate fees.\nThe total transaction fee amount, sum of input amounts …\nThe transaction’s fee rate. This value will only be …\nGet the TxOut for the specified input index, if it doesn’…\nTable name for schemas.\nRuns logic that initializes/migrates the table schemas.\nThe signer will sign all the leaves it has a key for.\nDummy identifier\nThe signer won’t sign the specified leaves.\nTo be used only by external libraries implementing …\nThe fingerprint of a BIP32 extended key\nThe signer won’t sign leaves other than the ones …\nInput index is out of range\nPSBT Input signer\nThe private key in use has the right fingerprint but …\nThe non_witness_utxo specified is invalid\nInvalid SIGHASH for the signing context in use\nLegacy context\nMiniscript PSBT error\nThe fingerprint and derivation path are missing from the …\nThe private key is missing for the required public key\nThe non_witness_utxo field of the transaction is required …\nThe witness_script field of the transaction is required to …\nThe witness_utxo field of the transaction is required to …\nThe psbt contains a non-SIGHASH_ALL sighash in one of its …\nThe signer won’t sign any leaf.\nBitcoin HASH160 (RIPEMD160 after SHA256) hash of an ECDSA …\nPSBT sign error.\nSegwit v0 context (BIP 143)\nError while computing the hash to sign a Taproot input.\nOptions for a software signer\nCommon signer methods\nSigning context\nSigning error\nIdentifier of a signer in the SignersContainers. Used as a …\nDefines the order in which signers are called\nWrapper to pair a signer with its context\nContainer for multiple signers\nTaproot context (BIP 340)\nCustomize which taproot script-path leaves the signer …\nPSBT signer\nThe user canceled the operation\nAdds an external signer to the container for the specified …\nWhether the signer should use the sighash_type set in the …\nWhether we should grind ECDSA signature to ensure signing …\nCreate a map of public keys to secret keys\nWhether the wallet should assume a specific height has …\nBuild a new signer container from a KeyMap\nReturn the secret key for the signer\nReturn the secret key for the signer\nFinds the signer with lowest ordering for a given id 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.\nReturn the SignerId for this signer\nReturns the list of identifiers of all the signers in 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).\nCreate a wrapped signer from a signer and a context\nDefault constructor\nRemoves a signer from the container and returns it\nSign a single psbt input\nSign all the inputs of the psbt\nWhether we should try to sign a taproot transaction with …\nReturns the list of signers in the container, sorted by …\nSpecifies which Taproot script-spend leaves we should sign …\nWhether the signer should trust the witness_utxo, if the …\nWhether to try finalizing the PSBT after the inputs are …\nWhether the signer can sign for the internal key or not\nError returned from TxBuilder::add_foreign_utxo.\nError returned from TxBuilder::add_utxo and …\nUse both change and non-change outputs (default)\nOnly use non-change outputs (see …\nPolicy regarding the use of change outputs when creating a …\nProvide custom comparison functions for sorting\nRequested outpoint doesn’t exist in the tx (vout greater …\nForeign utxo outpoint txid does not match PSBT input txid\nForeign utxo missing witness_utxo or non_witness_utxo\nOnly use change outputs (see TxBuilder::only_spend_change)\nRandomized (default)\nA transaction builder\nOrdering of the transaction’s inputs and outputs\nHappens when trying to spend an UTXO that is not in the …\nUnchanged\nAdd data as an output, using OP_RETURN\nAdd a foreign UTXO i.e. a UTXO not owned by this wallet.\nSame as add_foreign_utxo but allows to set the nSequence …\nFill-in the PSBT_GLOBAL_XPUB field with the extended keys …\nAdd a recipient to the internal list\nAdd a utxo to the internal list of unspendable utxos\nAdd a utxo to the internal list of utxos that must be spent\nAdd the list of outpoints to the internal list of UTXOs …\nSet whether or not the dust limit is checked.\nSet a specific ChangeSpendPolicy. See …\nChoose the coin selection algorithm\nSet the current blockchain height.\nDo not spend change outputs\nSets the address to drain excess coins to.\nSpend all the available inputs. This respects filters like …\nSet an absolute fee The fee_absolute method refers to the …\nSet a custom fee rate.\nFinish building the transaction.\nFinish building the transaction.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nFill-in the psbt::Output::redeem_script and …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nOnly spend utxos added by add_utxo.\nUse a specific nLockTime while creating the transaction\nOnly spend change outputs\nOnly Fill-in the psbt::Input::witness_utxo field when …\nChoose the ordering for inputs and outputs of the …\nSet the policy path to use while creating the transaction …\nSet an exact nSequence value\nReplace the recipients already added with a new list\nSign with a specific sig hash\nSort transaction inputs and outputs by TxOrdering variant.\nSort transaction inputs and outputs by TxOrdering variant.\nReplace the internal list of unspendable utxos with a new …\nBuild a transaction with a specific version\nForeign UTXO outpoint\nPSBT input txid\nTransaction inputs sort function\nTransaction outputs sort function") \ No newline at end of file +searchState.loadedDescShard("bdk_wallet", 0, "BDK Wallet\nError returned from TxBuilder::add_foreign_utxo.\nError returned from TxBuilder::add_utxo and …\nA derived address and the index it was found at. For …\nAn error that may occur when applying a block to Wallet.\nAsync trait that persists PersistedWallet.\nBalance, differentiated into various categories.\nOccurs when the update chain cannot connect with original …\nUse both change and non-change outputs (default)\nOnly use non-change outputs (see …\nA changeset for Wallet.\nPolicy regarding the use of change outputs when creating a …\nParameters for Wallet::create or PersistedWallet::create.\nError type for PersistedWallet::create.\nProvide custom comparison functions for sorting\nPersister already has wallet data.\nOccurs when the loaded changeset cannot construct Wallet.\nThere was a problem with the passed-in descriptor(s).\nDescriptor’s DescriptorId does not match.\nError type of the persister.\nError type of the persister.\nExternal keychain, used for deriving recipient addresses.\nError for bdk_file_store’s implementation of …\nA UTXO owned by another wallet.\nGenesis hash does not match.\nInternal keychain, used for deriving change addresses.\nOccurs when the loaded changeset cannot construct Wallet.\nRequested outpoint doesn’t exist in the tx (vout greater …\nForeign utxo outpoint txid does not match PSBT input txid\nTrait to check if a value is below the dust limit. We are …\nTypes of keychains\nError when loading from the store.\nThe error type when loading a Wallet from a ChangeSet.\nRepresents a mismatch with what is loaded and what is …\nParameters for Wallet::load or PersistedWallet::load.\nError type for PersistedWallet::load.\nA UTXO owned by the local wallet.\nAn unspent output owned by a Wallet.\nData loaded is unexpected.\nData loaded from persistence is missing descriptor.\nData loaded from persistence is missing genesis hash.\nData loaded from persistence is missing network type.\nForeign utxo missing witness_utxo or non_witness_utxo\nNetwork does not match.\nOnly use change outputs (see TxBuilder::only_spend_change)\nError from persistence.\nError from persistence.\nRepresents a persisted wallet which persists into type P.\nRandomized (default)\nOptions for a software signer\nA transaction builder\nOrdering of the transaction’s inputs and outputs\nOccurs when the connected_to hash does not match the hash …\nHappens when trying to spend an UTXO that is not in the …\nUnchanged\nAn update to Wallet.\nAn unspent transaction output (UTXO).\nSchema name for wallet.\nName of table to store wallet descriptors and network.\nA Bitcoin wallet\nTrait that persists PersistedWallet.\nA CanonicalTx managed by a Wallet.\nA Utxo with its satisfaction_weight.\nError when writing to the store.\nAdd an external signer\nAddress\nGet unbounded script pubkey iterators for both Internal …\nWhether the signer should use the sighash_type set in the …\nWhether we should grind ECDSA signature to ensure signing …\nIntroduces a block of height to the wallet, and tries to …\nApplies relevant transactions from block of height to the …\nApply relevant unconfirmed transactions to the wallet.\nApplies an update to the wallet and stages the changes …\nApplies an update alongside a seen_at timestamp and stages …\nReturn KeychainKind as a byte\nWhether the wallet should assume a specific height has …\nReturn the balance, separated into available, …\nBump the fee of a transaction previously created with this …\nStart building a transaction.\nCalculates the fee of a given transaction. Returns …\nCalculate the FeeRate for a given transaction.\nInforms the wallet that you no longer intend to broadcast …\nUpdate for the wallet’s internal LocalChain.\nHow the transaction is observed as (confirmed or …\nThe position of the output in the blockchain.\nDescriptor for change addresses.\nChecks that the given genesis_hash matches the one loaded …\nChecks that the given network matches the one loaded from …\nGet all the checkpoints the wallet is currently storing …\nCoin selection\nConfirmed and immediately spendable balance\nCreate a new PersistedWallet with the given persister and …\nBuild a new Wallet.\nCreate a new PersistedWallet with the given async persister…\nBuild a new single descriptor Wallet.\nCreate PersistedWallet with the given WalletPersister.\nCreate PersistedWallet with the given AsyncWalletPersister.\nCreate Wallet without persistence.\nCreate a new Wallet with given params.\nThe derivation index of this wallet. It will return None …\nThe derivation index for the script pubkey in the wallet\nFinds how the wallet derived the script pubkey spk.\nDescriptors\nChecks the expected_descriptor matches exactly what is …\nDescriptor for recipient addresses.\nMacro to write full descriptors with code\nReturn the checksum of the public descriptor associated to …\nErrors that can be thrown by the Wallet\nWallet export\nWhether to try extracting private keys from the provided …\nFinalize a PSBT, i.e., for each input determine if …\nMacro to write descriptor fragments with code\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nRecover a ChangeSet from sqlite database.\nUse a custom genesis_hash.\nget the corresponding PSBT Input for a LocalUtxo\nGet the signers\nGet a single transaction from the wallet as a WalletTx (if …\nReturns the utxo owned by this wallet corresponding to …\nAll coinbase outputs not yet matured\nChild index of this address\nChanges to KeychainTxOutIndex.\nInitialize sqlite tables for wallet tables.\nInitialize the persister and load all data.\nInitialize the persister and load all data.\nInserts a TxOut at OutPoint into the wallet’s …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCheck whether or not a value is below dust limit\nReturn whether or not a script is part of this wallet …\nWhether this UTXO is spent or not\nType of keychain\nType of keychain\nIterator over all keychains in this wallet\nExtend the given keychain’s keymap.\nExtend the given keychain’s keymap.\nKey formats\nContains the last active derivation indices per keychain (K…\nReturns the latest checkpoint.\nList all relevant outputs (includes both spent and …\nReturn the list of unspent outputs of this wallet\nList addresses that are revealed but unused.\nLoad a previously PersistedWallet from the given persister …\nBuild Wallet by loading from persistence or ChangeSet.\nLoad a previously PersistedWallet from the given async …\nLoad PersistedWallet with the given WalletPersister.\nLoad PersistedWallet with the given AsyncWalletPersister.\nLoad Wallet without persistence.\nLoad Wallet from the given previously persisted ChangeSet …\nGet a reference to the inner LocalChain.\nChanges to the LocalChain.\nUse a custom lookahead value.\nUse a custom lookahead value.\nMarks an address used of the given keychain at index.\nMerge another ChangeSet into itself.\nSet network.\nGet the Bitcoin network the wallet is using.\nStores the network type of the transaction data.\nConstruct parameters with provided descriptor and …\nConstruct parameters with default values.\nConstruct parameters with provided descriptor.\nThe index of the next address that you would get if you …\nGet the next unused address for the given keychain, i.e. …\nGet the location of the UTXO\nReference to a transaction output\nPeek an address of the given keychain at index without …\nPersist the given changeset to the persister.\nPersist the given changeset to the persister.\nPersist staged changes of wallet into persister.\nPersist staged changes of wallet into an async persister.\nPersist ChangeSet to sqlite database.\nReturn the spending policies for the wallet’s descriptor\nAdditional functions on the rust-bitcoin Psbt structure.\nReturns the descriptor used to create addresses for a …\nReveal addresses up to and including the target index and …\nAttempt to reveal the next address of the given keychain.\nSupport for persisting bdk_chain structures to SQLite …\nThe weight of the witness data and scriptSig expressed in …\nGet v0 sqlite ChangeSet schema\nReturn the secp256k1 context used for all signing …\nCompute the tx’s sent and received Amounts.\nGet the sequence number if an explicit sequence number has …\nSet the keymap for a given keychain.\nSet the keymap for each keychain.\nSign a transaction with all the wallet’s signers, in the …\nWhether we should try to sign a taproot transaction with …\nGeneralized signers\nGet a reference to the inner KeychainTxOutIndex.\nGet a reference of the staged ChangeSet that is yet to be …\nGet a mutable reference of the staged ChangeSet that is …\nCreate a `FullScanRequest for this wallet.\nCreate a partial SyncRequest for this wallet for all …\nTake the staged ChangeSet to be persisted now (if any).\nSpecifies which Taproot script-spend leaves we should sign …\nGet the whole balance visible to the wallet.\nIterate over the transactions in the wallet.\nArray of transactions in the wallet sorted with a …\nWhether the signer should trust the witness_utxo, if the …\nUnconfirmed UTXOs generated by a wallet tx\nGet sum of trusted_pending and confirmed coins.\nWhether to try finalizing the PSBT after the inputs are …\nTransaction builder\nGet a reference to the inner TxGraph.\nChanges to TxGraph.\nThe transaction node (as part of the graph).\nUpdate for the wallet’s internal TxGraph.\nGet the TxOut of the UTXO\nTransaction output\nGet an unbounded script pubkey iterator for the given …\nUndoes the effect of mark_used and returns whether the …\nUnconfirmed UTXOs received from an external wallet\nThe UTXO\nGet the version of bdk_wallet at runtime.\nDeterministically generate a unique name given the …\nForeign UTXO outpoint\nPSBT input txid\nBlock hash of connected_to.\nExpected block hash of connected_to, as derived from block.\nThe expected network.\nThe expected genesis hash.\nThe expected descriptor.\nKeychain identifying the descriptor.\nThe network that is loaded.\nThe genesis hash that is loaded.\nThe loaded descriptor.\nTransaction inputs sort function\nTransaction outputs sort function\nThe location of the output.\nThe information about the input we require to add it to a …\nThe nSequence value to set for this input.\nBranch and bound coin selection\nIt’s possible to create spendable output from excess …\nTrait for generalized coin selection algorithms\nResult of a successful coin selection\nDefault coin selection algorithm used by TxBuilder if not …\nRemaining amount after performing coin selection\nWallet’s UTXO set is not enough to cover recipient’s …\nSimple and dumb coin selection\nIt’s not possible to create spendable output from excess …\nOldestFirstCoinSelection always picks the utxo with the …\nPull UTXOs at random until we have enough to meet the …\nSats available for spending\nPerform the coin selection\nDecide if change can be created\nRemaining amount after deducing fees and outgoing outputs\nTotal fee amount for the selected utxos in satoshis\nReturns the argument unchanged.\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).\nThe total value of the inputs selected from the local …\nSats needed for some transaction\nCreate new instance with a target size_of_change and …\nList of outputs selected for use as inputs\nThe total value of the inputs selected.\nEffective amount available to create change after …\nThe calculated fee for the drain TxOut with the selected …\nThreshold to consider amount as dust for this particular …\nThe deducted change output fee\nExceeding amount of current selection over outgoing value …\nA raw scriptpubkey (including pay-to-pubkey) under Legacy …\nA raw scriptpubkey (including pay-to-pubkey) under Legacy …\nA raw scriptpubkey (including pay-to-pubkey) under Legacy …\nAlias for a Descriptor that contains extended derived keys\nScript descriptor\nThe descriptor pubkey, either a single pubkey or an xpub.\nAlias for a Descriptor that can contain extended keys …\nTrait implemented on Descriptors to add a method to …\nThe 0 combinator.\nAlias for the type of maps that represent derivation paths …\nTrait for types which can be converted into an …\nThe consensus key associated with the type. Must be a …\nLegacy ScriptContext To be used as P2SH scripts For …\nThe top-level miniscript abstract syntax tree (AST).\nMultiple extended public keys.\nPay-to-PubKey-Hash\nPay-to-PubKey-Hash\nPay-to-PubKey-Hash\nThe ScriptContext for Miniscript. Additional type …\nSegwitv0 ScriptContext\nPay-to-ScriptHash(includes nested wsh/wpkh/sorted multi)\nPay-to-ScriptHash(includes nested wsh/wpkh/sorted multi)\nPay-to-ScriptHash(includes nested wsh/wpkh/sorted multi)\nSingle public key.\nThe 1 combinator.\nAlias for the type of maps that represent taproot key …\nPay-to-Taproot\nPay-to-Taproot\nPay-to-Taproot\nPay-to-Witness-PubKey-Hash\nPay-to-Witness-PubKey-Hash\nPay-to-Witness-PubKey-Hash\nPay-to-Witness-ScriptHash with Segwitv0 context\nPay-to-Witness-ScriptHash with Segwitv0 context\nPay-to-Witness-ScriptHash with Segwitv0 context\nExtended public key (xpub).\nComputes the Bitcoin address of the descriptor, if one …\nGet a reference to the inner AstElem representing the root …\nReplaces all wildcards (i.e. /*) in the descriptor with a …\nEnumerates all child nodes of the current AST node (self) …\nAttempt to produce a non-malleable witness template given …\nAttempt to produce a malleable witness template given the …\nDepending on script Context, some of the Terminals might …\nDepending on script Context, some of the script resource …\nCheck the consensus + policy(if not disabled) rules that …\nConsensus rules at the Miniscript satisfaction time. It is …\nPolicy rules at the Miniscript satisfaction time. It is …\nCheck the consensus + policy(if not disabled) rules …\nEach context has slightly different rules on what Pks are …\nDepending on ScriptContext, fragments can be malleable. …\nCheck whether the given satisfaction is valid under the …\nDescriptor checksum\nWhether the given miniscript contains a raw pkh fragment\nDeprecated name for Self::at_derivation_index.\nConvert all the public keys in the descriptor to …\nConvert all the public keys in the descriptor to …\nGet the DescriptorType of Descriptor\nEncode as a Bitcoin script\nDescriptor errors\nComputes the the underlying script before any hashing is …\nAdditional information helpful for extra analysis.\nCheck whether the miniscript follows the given Extra …\nExtract the spending policy\nUtility method for deriving the descriptor at each index …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nAdd type information(Type and Extdata) to Miniscript based …\nCreate a new Miniscript from a Terminal node and a Type …\nParse a Miniscript from string and perform sanity checks …\nAttempt to parse an Miniscripts that don’t follow the …\nAttempt to parse an insane(scripts don’t clear sanity …\nParse an expression tree into a descriptor.\nParse an expression tree into a Miniscript. As a general …\nReturns child node with given index, if any\nReturns Option::Some with cloned n’th public key from …\nReturns satisfying non-malleable witness and scriptSig to …\nReturns a possilbly mallable satisfying non-malleable …\nWhether the miniscript contains a combination of timelocks\nWhether the miniscript has repeated Pk or Pkh\nWhether or not the descriptor has any wildcards i.e. /*.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nExtracts the AstElem representing the root of the …\nGet as many descriptors as different paths in this …\nConvert to wallet descriptor\nWhether or not the descriptor has any wildcards\nWhether this descriptor contains a key that has multiple …\nWhether the miniscript is malleable\nCreates a new Iter iterator that will iterate over all …\nCreates a new PkIter iterator that will iterate over all …\nLifting corresponds to conversion of a miniscript into a …\nDepending on script context, the size of a satifaction …\nMaximum size, in bytes, of a satisfying witness. For …\nComputes an upper bound on the weight of a satisfying …\nMaximum number of witness elements used to satisfy the …\nComputes an upper bound on the difference between a …\nLocal helper function to display error messages with …\nCreate a new bare descriptor from witness script Errors …\nCreate a new pk descriptor\nCreate a new PkH descriptor\nCreate a new sh for a given redeem script Errors when …\nCreate a new sh sortedmulti descriptor with threshold k …\nCreate a new sh wrapper for the given wpkh descriptor\nCreate a new sh wrapper for the given wsh descriptor\nCreate a new sh wrapped wpkh from Pk. Errors when …\nCreate a new sh wrapped wsh descriptor with witness script …\nCreate a new sh wrapped wsh sortedmulti descriptor from …\nCreate new tr descriptor Errors when miniscript exceeds …\nCreate a new Wpkh descriptor Will return Err if …\nCreate a new wsh descriptor from witness script Errors …\nCreate a new wsh sorted multi descriptor Errors when …\nA node in the AST.\nOther top level checks that are context specific\nAttempt to parse a Script into Miniscript representation.\nParse a descriptor that may contain secret keys\nAttempt to parse an insane(scripts don’t clear sanity …\nAttempt to parse an miniscript with extra features that …\nGet the len of public key when serialized based on context …\nReturns a plan if the provided assets are sufficient to …\nReturns a plan if the provided assets are sufficient to …\nDescriptor policy\nWhether all spend paths of miniscript require a signature\nChecks whether the descriptor is safe.\nCheck whether the underlying Miniscript is safe under the …\nAttempts to produce a non-malleable satisfying witness and …\nAttempt to produce non-malleable satisfying witness for the\nAttempt to produce a malleable satisfying witness for the …\nComputes the scriptCode of a transaction output.\nComputes the scriptpubkey of the descriptor.\nSize, in bytes of the script-pubkey. If this Miniscript is …\nThe type of signature required for satisfaction\nSubstitutes raw public keys hashes with the public keys as …\nDescriptor templates\nSerialize a descriptor to string with its secret keys\nCheck top level consensus rules.\nCheck whether the top-level is type B\nConverts a descriptor using abstract keys to one using …\nTranslates a struct from one generic to another where the …\nThe correctness and malleability type information for the …\nComputes the scriptSig that will be in place for an …\nWhether the miniscript can exceed the resource …\nCompute the checksum of a descriptor, excludes any …\nError during base58 decoding\nBIP32 error\nErrors related to the parsing and usage of descriptors\nThe provided wallet descriptors are identical\nThe descriptor contains hardened derivation steps on …\nHex decoding error\nInvalid byte found in the descriptor checksum\nThe provided descriptor doesn’t match its checksum\nInvalid HD Key path, such as having a wildcard but a …\nError thrown while working with keys\nMiniscript error\nThe descriptor contains multipath keys\nKey-related error\nError while extracting and manipulating policies\nReturns the argument unchanged.\nCalls U::from(self).\nAbsolute timeclock timestamp\nCan not add to an item that is Satisfaction::None or …\nCan not add to an item that is …\nOptions to build the satisfaction field in the policy\nCan satisfy the policy item\nAn extra condition that must be satisfied but that is out …\nType for a map of sets of Condition items keyed by each set…\nECDSA Signature for a raw public key\nAn extended key fingerprint\nType for a map of folded sets of Condition items keyed by …\nSHA256 then RIPEMD160 preimage hash\nDouble SHA256 preimage hash\nIncompatible conditions (not currently used)\nIndex out of range for an item to satisfy a …\nCan not merge CSV or timelock values unless both are less …\nMulti-signature public keys with threshold count\nCannot satisfy or contribute to the policy item\nDon’t generate satisfaction field\nNot enough items are selected to satisfy a …\nOnly a partial satisfaction of some kind of threshold …\nCan reach the threshold of some kind of threshold policy\nA unique identifier for a key\nDescriptor spending policy\nErrors that can happen while extracting and manipulating …\nAnalyze the given PSBT to check for existing signatures\nLike Psbt variant and also check for expired timelocks\nA legacy public key\nRelative timelock locktime\nRIPEMD160 preimage hash\nRepresent if and how much a policy item is satisfied by …\nAn item that needs to be satisfied\nSchnorr Signature for a raw public key\nSHA256 preimage hash\nThreshold items with threshold count\nA x-only public key\nHow the wallet’s descriptor can satisfy this policy node\nOptional CheckSequenceVerify condition\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturn the conditions that are set by the spending policy …\nReturns a unique id for the SatisfiableItem\nIdentifier for this policy node\nCalls U::from(self).\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 whether the SatisfiableItem is a leaf item\nReturns whether the Satisfaction is a leaf item\nReturns true if there are no extra conditions to verify\nType of this policy node\nReturn whether or not a specific path in the policy tree …\nHow much a given PSBT already satisfies this policy node …\nOptional timelock condition\nCurrent blockchain height\nThe highest confirmation height between the inputs CSV …\nGiven PSBT\nExtra conditions that also need to be satisfied\nExtra conditions that also need to be satisfied\nExtra conditions that also need to be satisfied\nThe items that can be satisfied by the descriptor or are …\nThe items that can be satisfied by the descriptor\nThreshold\nThreshold\nTotal number of items\nTotal number of items\nWhether the items are sorted in lexicographic order (used …\nWhether the items are sorted in lexicographic order (used …\nThe digest value\nThe digest value\nThe digest value\nThe digest value\nThe policy items\nThe raw public key or extended key fingerprint\nThe required threshold count\nThe required threshold count\nThe timelock value\nThe timelock value\nBIP44 template. Expands to pkh(key/44'/{0,1}'/0'/{0,1}/*)\nBIP44 public template. Expands to pkh(key/{0,1}/*)\nBIP49 template. Expands to …\nBIP49 public template. Expands to sh(wpkh(key/{0,1}/*))\nBIP84 template. Expands to wpkh(key/84'/{0,1}'/0'/{0,1}/*)\nBIP84 public template. Expands to wpkh(key/{0,1}/*)\nBIP86 template. Expands to tr(key/86'/{0,1}'/0'/{0,1}/*)\nBIP86 public template. Expands to tr(key/{0,1}/*)\nTrait for descriptor templates that can be built into a …\nType alias for the return type of DescriptorTemplate, …\nP2PKH template. Expands to a descriptor pkh(key)\nP2TR template. Expands to a descriptor tr(key)\nP2WPKH template. Expands to a descriptor wpkh(key)\nP2WPKH-P2SH template. Expands to a descriptor sh(wpkh(key))\nBuild the complete descriptor\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\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).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nError returned from Wallet::build_fee_bump\nThere was an error with coin selection\nDescriptor key conversion error\nError returned from TxBuilder::finish\nThere was a problem with the descriptors passed in\nWhen bumping a tx the fee rate requested is lower than …\nNode doesn’t have data to estimate a fee rate\nWhen bumping a tx the absolute fee requested is lower than …\nTrying to replace a tx that has a sequence >= 0xFFFFFFFE\nRequested LockTime is less than is required to spend from …\nMiniscript PSBT error\nErrors returned by miniscript when updating inconsistent …\nIn order to use the TxBuilder::add_global_xpubs option …\nMissing non_witness_utxo on foreign utxo for given OutPoint\nCannot build a tx without recipients\nmanually_selected_only option is selected but no utxo has …\nOutput created is under the dust limit, 546 satoshis\nReturn error type for …\nThere was a problem while extracting and manipulating …\nPartially signed bitcoin transaction error\nCannot enable RBF with Sequence given a required OP_CSV\nSpending policy is not compatible with this KeychainKind\nHappens when trying to bump a transaction that is already …\nThrown when a tx is not found in the internal database\nHappens when trying to spend an UTXO that is not in the …\nHappens when trying to spend an UTXO that is not in the …\nReturn error type for PsbtExt::update_input_with_descriptor\nRequested invalid transaction version ‘0’\nRequested transaction version 1, but at least 2 is needed …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRequired OP_CSV Sequence\nRequested LockTime\nRequired LockTime\nRequired fee absolute value Amount\nRequired fee rate\nGiven RBF Sequence\nStructure that contains the export of a wallet\nAlias for FullyNodedExport\nEarliest block to rescan when looking for the wallet’s …\nEarliest block to rescan when looking for the wallet’s …\nReturn the internal descriptor, if present\nReturn the external descriptor\nExport a wallet\nReturns the argument unchanged.\nCalls U::from(self).\nArbitrary label for the wallet\nArbitrary label for the wallet\nBIP32 error\nTrait for keys that can be derived.\nContainer for public or secret keys\nThe descriptor pubkey, either a single pubkey or an xpub.\nThe descriptor secret key, either a single private key or …\nType specifying the amount of entropy required e.g. [u8;32]\nReturned error in case of failure\nTrait that adds extra useful methods to ScriptContexts\nEnum for extended keys that can be either xprv or xpub\nA bitcoin public key (compressed or uncompressed).\nTrait that allows generating a key with the default options\nTrait for keys that can be generated\nOutput of a GeneratableKey key generation\nTrait for objects that can be turned into a public or …\nThe key has an invalid checksum\nThe key is not valid for the given network\nThe key cannot exist in the given script context\nThe consensus key associated with the type. Must be a …\nErrors thrown while working with keys\nAlias type for a map of public key to secret key\nLegacy scripts\nCustom error message\nMiniscript error\nMultiple extended private keys.\nMultiple extended public keys.\nExtra options required by the generate_with_entropy\nA private extended key, aka an xprv\nOptions for generating a PrivateKey\nA public extended key, aka an xpub\nThe ScriptContext for Miniscript. Additional type …\nEnum representation of the known valid ScriptContexts\nSegwitv0 scripts\nSingle public key.\nSingle private key.\nA descriptor bitcoin::PrivateKey with optional origin …\nA descriptor SinglePubKey with optional origin information.\nSingle public key without any origin or range information.\nContents of a “sortedmulti” descriptor\nTaproot scripts\nSet of valid networks for a key\nAn xonly public key.\nExtended private key (xpriv).\nExtended public key (xpub).\nCreate a set containing mainnet, testnet, signet, and …\nReturns the ScriptContext as a ScriptContextEnum\nReplaces any wildcard (i.e. /*) in the key with a …\nAttempt to produce a witness template given the assets …\nDepending on script Context, some of the Terminals might …\nDepending on script Context, some of the script resource …\nCheck the consensus + policy(if not disabled) rules that …\nConsensus rules at the Miniscript satisfaction time. It is …\nPolicy rules at the Miniscript satisfaction time. It is …\nCheck the consensus + policy(if not disabled) rules …\nEach context has slightly different rules on what Pks are …\nDepending on ScriptContext, fragments can be malleable. …\nCheck whether the given satisfaction is valid under the …\nWhether the generated key should be “compressed” or not\nDeprecated name for Self::at_derivation_index.\nEncode as a Bitcoin script\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreate an instance given a public key and a set of valid …\nCreate an instance given a secret key and a set of valid …\nParse an expression tree into a SortedMultiVec\nFull path, from the master key\nReturns a vector containing the full derivation paths from …\nGenerate a key given the options with random entropy.\nGenerate a key with the default options and a random …\nGenerate a key with the default options and a random …\nGenerate a key given the options with random entropy.\nGenerate a key given the extra options and the entropy\nGenerate a key with the default options and a given entropy\nReturn whether or not the key contains the private data\nWhether or not the key has a wildcard\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\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 the key into a DescriptorKey within the requested …\nConsume self and turn it into a DescriptorKey by adding …\nConsume self and turn it into an ExtendedKey\nConsumes self and returns the key\nGet as many keys as derivation paths in this key.\nGet as many keys as derivation paths in this key.\nTransform the ExtendedKey into an Xpriv for the given …\nTransform the ExtendedKey into an Xpub for the given …\nWhether or not the key has a wildcard\nReturns whether the script context is Legacy\nReturns whether the script context is …\nWhether or not this key has multiple derivation paths.\nWhether or not this key has multiple derivation paths.\nReturns whether the script context is Segwitv0\nReturns whether the script context is …\nReturns whether the script context is Tap, aka Taproot or …\nReturns whether the script context is …\nThe threshold value for the multisig.\nThe public key.\nThe private key.\nCreate a set only containing mainnet\nThe fingerprint of the master key associated with this …\nDepending on script context, the size of a satifaction …\nMaximum size, in bytes, of a satisfying witness. In …\nMaximum number of witness elements used to satisfy the …\nCompute the intersection of two sets\nThe number of keys in the multisig.\nLocal helper function to display error messages with …\nCreate a new instance of SortedMultiVec given a list of …\nOrigin information (fingerprint and derivation path).\nOrigin information (fingerprint and derivation path).\nOther top level checks that are context specific\nOverride the computed set of valid networks\nGet the len of public key when serialized based on context …\nAccessor for the public keys in the multisig.\nutility function to sanity a sorted multi vec\nAttempt to produce a satisfying witness for the witness …\nSize, in bytes of the script-pubkey. If this Miniscript is …\nThe type of signature required for satisfaction\nCreate Terminal::Multi containing sorted pubkeys\nCreate a set containing testnet and regtest\nReturns the public version of this key.\nCheck top level consensus rules.\nCheck whether the top-level is type B\nThis will panic if fpk returns an uncompressed key when …\nTrait to add functions to extract utxos and calculate fees.\nThe total transaction fee amount, sum of input amounts …\nThe transaction’s fee rate. This value will only be …\nGet the TxOut for the specified input index, if it doesn’…\nTable name for schemas.\nRuns logic that initializes/migrates the table schemas.\nThe signer will sign all the leaves it has a key for.\nDummy identifier\nThe signer won’t sign the specified leaves.\nTo be used only by external libraries implementing …\nThe fingerprint of a BIP32 extended key\nThe signer won’t sign leaves other than the ones …\nInput index is out of range\nPSBT Input signer\nThe private key in use has the right fingerprint but …\nThe non_witness_utxo specified is invalid\nInvalid SIGHASH for the signing context in use\nLegacy context\nMiniscript PSBT error\nThe fingerprint and derivation path are missing from the …\nThe private key is missing for the required public key\nThe non_witness_utxo field of the transaction is required …\nThe witness_script field of the transaction is required to …\nThe witness_utxo field of the transaction is required to …\nThe psbt contains a non-SIGHASH_ALL sighash in one of its …\nThe signer won’t sign any leaf.\nBitcoin HASH160 (RIPEMD160 after SHA256) hash of an ECDSA …\nPSBT sign error.\nSegwit v0 context (BIP 143)\nError while computing the hash to sign a Taproot input.\nOptions for a software signer\nCommon signer methods\nSigning context\nSigning error\nIdentifier of a signer in the SignersContainers. Used as a …\nDefines the order in which signers are called\nWrapper to pair a signer with its context\nContainer for multiple signers\nTaproot context (BIP 340)\nCustomize which taproot script-path leaves the signer …\nPSBT signer\nThe user canceled the operation\nAdds an external signer to the container for the specified …\nWhether the signer should use the sighash_type set in the …\nWhether we should grind ECDSA signature to ensure signing …\nCreate a map of public keys to secret keys\nWhether the wallet should assume a specific height has …\nBuild a new signer container from a KeyMap\nReturn the secret key for the signer\nReturn the secret key for the signer\nFinds the signer with lowest ordering for a given id 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.\nReturn the SignerId for this signer\nReturns the list of identifiers of all the signers in 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).\nCreate a wrapped signer from a signer and a context\nDefault constructor\nRemoves a signer from the container and returns it\nSign a single psbt input\nSign all the inputs of the psbt\nWhether we should try to sign a taproot transaction with …\nReturns the list of signers in the container, sorted by …\nSpecifies which Taproot script-spend leaves we should sign …\nWhether the signer should trust the witness_utxo, if the …\nWhether to try finalizing the PSBT after the inputs are …\nWhether the signer can sign for the internal key or not\nError returned from TxBuilder::add_foreign_utxo.\nError returned from TxBuilder::add_utxo and …\nUse both change and non-change outputs (default)\nOnly use non-change outputs (see …\nPolicy regarding the use of change outputs when creating a …\nProvide custom comparison functions for sorting\nRequested outpoint doesn’t exist in the tx (vout greater …\nForeign utxo outpoint txid does not match PSBT input txid\nForeign utxo missing witness_utxo or non_witness_utxo\nOnly use change outputs (see TxBuilder::only_spend_change)\nRandomized (default)\nA transaction builder\nOrdering of the transaction’s inputs and outputs\nHappens when trying to spend an UTXO that is not in the …\nUnchanged\nAdd data as an output, using OP_RETURN\nAdd a foreign UTXO i.e. a UTXO not owned by this wallet.\nSame as add_foreign_utxo but allows to set the nSequence …\nFill-in the PSBT_GLOBAL_XPUB field with the extended keys …\nAdd a recipient to the internal list\nAdd a utxo to the internal list of unspendable utxos\nAdd a utxo to the internal list of utxos that must be spent\nAdd the list of outpoints to the internal list of UTXOs …\nSet whether or not the dust limit is checked.\nSet a specific ChangeSpendPolicy. See …\nChoose the coin selection algorithm\nSet the current blockchain height.\nDo not spend change outputs\nSets the address to drain excess coins to.\nSpend all the available inputs. This respects filters like …\nSet an absolute fee The fee_absolute method refers to the …\nSet a custom fee rate.\nFinish building the transaction.\nFinish building the transaction.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nFill-in the psbt::Output::redeem_script and …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nOnly spend utxos added by add_utxo.\nUse a specific nLockTime while creating the transaction\nOnly spend change outputs\nOnly Fill-in the psbt::Input::witness_utxo field when …\nChoose the ordering for inputs and outputs of the …\nSet the policy path to use while creating the transaction …\nSet an exact nSequence value\nReplace the recipients already added with a new list\nSign with a specific sig hash\nSort transaction inputs and outputs by TxOrdering variant.\nSort transaction inputs and outputs by TxOrdering variant.\nReplace the internal list of unspendable utxos with a new …\nBuild a transaction with a specific version\nForeign UTXO outpoint\nPSBT input txid\nTransaction inputs sort function\nTransaction outputs sort function") \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/settings.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/settings.html index b09211728f..7c96d06f34 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/settings.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/settings.html @@ -1 +1 @@ -Settings

    Rustdoc settings

    Back
    \ No newline at end of file +Settings

    Rustdoc settings

    Back
    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/lib.rs.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/lib.rs.html index 22c8d0fce9..d2ceb1093e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/lib.rs.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/lib.rs.html @@ -100,30 +100,6 @@ 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
    //! This crate is a collection of core structures for [Bitcoin Dev Kit].
     //!
     //! The goal of this crate is to give wallets the mechanisms needed to:
    @@ -226,28 +202,4 @@
             &self.0
         }
     }
    -
    -/// A wrapper that we use to impl remote traits for types in our crate or dependency crates that impl [`Anchor`].
    -pub struct AnchorImpl<T>(pub T);
    -
    -impl<T> AnchorImpl<T> {
    -    /// Returns the inner `T`.
    -    pub fn into_inner(self) -> T {
    -        self.0
    -    }
    -}
    -
    -impl<T> From<T> for AnchorImpl<T> {
    -    fn from(value: T) -> Self {
    -        Self(value)
    -    }
    -}
    -
    -impl<T> core::ops::Deref for AnchorImpl<T> {
    -    type Target = T;
    -
    -    fn deref(&self) -> &Self::Target {
    -        &self.0
    -    }
    -}
     

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/rusqlite_impl.rs.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/rusqlite_impl.rs.html index 62af429476..4ec1748719 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/rusqlite_impl.rs.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_chain/rusqlite_impl.rs.html @@ -603,12 +603,134 @@ 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 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721
    //! Support for persisting `bdk_chain` structures to SQLite using [`rusqlite`].
     
     use crate::*;
     use core::str::FromStr;
     
    -use alloc::{borrow::ToOwned, boxed::Box, string::ToString, sync::Arc, vec::Vec};
    +use alloc::{
    +    borrow::ToOwned,
    +    boxed::Box,
    +    string::{String, ToString},
    +    sync::Arc,
    +    vec::Vec,
    +};
     use bitcoin::consensus::{Decodable, Encodable};
     use rusqlite;
     use rusqlite::named_params;
    @@ -660,17 +782,15 @@
     pub fn migrate_schema(
         db_tx: &Transaction,
         schema_name: &str,
    -    versioned_scripts: &[&[&str]],
    +    versioned_scripts: &[&str],
     ) -> rusqlite::Result<()> {
         init_schemas_table(db_tx)?;
         let current_version = schema_version(db_tx, schema_name)?;
         let exec_from = current_version.map_or(0_usize, |v| v as usize + 1);
         let scripts_to_exec = versioned_scripts.iter().enumerate().skip(exec_from);
    -    for (version, &script) in scripts_to_exec {
    +    for (version, script) in scripts_to_exec {
             set_schema_version(db_tx, schema_name, version as u32)?;
    -        for statement in script {
    -            db_tx.execute(statement, ())?;
    -        }
    +        db_tx.execute_batch(script)?;
         }
         Ok(())
     }
    @@ -762,22 +882,6 @@
         }
     }
     
    -impl<A: Anchor + serde::de::DeserializeOwned> FromSql for AnchorImpl<A> {
    -    fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> {
    -        serde_json::from_str(value.as_str()?)
    -            .map(AnchorImpl)
    -            .map_err(from_sql_error)
    -    }
    -}
    -
    -impl<A: Anchor + serde::Serialize> ToSql for AnchorImpl<A> {
    -    fn to_sql(&self) -> rusqlite::Result<ToSqlOutput<'_>> {
    -        serde_json::to_string(&self.0)
    -            .map(Into::into)
    -            .map_err(to_sql_error)
    -    }
    -}
    -
     #[cfg(feature = "miniscript")]
     impl FromSql for Impl<miniscript::Descriptor<miniscript::DescriptorPublicKey>> {
         fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> {
    @@ -816,10 +920,7 @@
         rusqlite::Error::ToSqlConversionFailure(Box::new(err))
     }
     
    -impl<A> tx_graph::ChangeSet<A>
    -where
    -    A: Anchor + Clone + Ord + serde::Serialize + serde::de::DeserializeOwned,
    -{
    +impl tx_graph::ChangeSet<ConfirmationBlockTime> {
         /// Schema name for [`tx_graph::ChangeSet`].
         pub const SCHEMA_NAME: &'static str = "bdk_txgraph";
         /// Name of table that stores full transactions and `last_seen` timestamps.
    @@ -829,43 +930,68 @@
         /// Name of table that stores [`Anchor`]s.
         pub const ANCHORS_TABLE_NAME: &'static str = "bdk_anchors";
     
    +    /// Get v0 of sqlite [tx_graph::ChangeSet] schema
    +    pub fn schema_v0() -> String {
    +        // full transactions
    +        let create_txs_table = format!(
    +            "CREATE TABLE {} ( \
    +            txid TEXT PRIMARY KEY NOT NULL, \
    +            raw_tx BLOB, \
    +            last_seen INTEGER \
    +            ) STRICT",
    +            Self::TXS_TABLE_NAME,
    +        );
    +        // floating txouts
    +        let create_txouts_table = format!(
    +            "CREATE TABLE {} ( \
    +            txid TEXT NOT NULL, \
    +            vout INTEGER NOT NULL, \
    +            value INTEGER NOT NULL, \
    +            script BLOB NOT NULL, \
    +            PRIMARY KEY (txid, vout) \
    +            ) STRICT",
    +            Self::TXOUTS_TABLE_NAME,
    +        );
    +        // anchors
    +        let create_anchors_table = format!(
    +            "CREATE TABLE {} ( \
    +            txid TEXT NOT NULL REFERENCES {} (txid), \
    +            block_height INTEGER NOT NULL, \
    +            block_hash TEXT NOT NULL, \
    +            anchor BLOB NOT NULL, \
    +            PRIMARY KEY (txid, block_height, block_hash) \
    +            ) STRICT",
    +            Self::ANCHORS_TABLE_NAME,
    +            Self::TXS_TABLE_NAME,
    +        );
    +
    +        format!("{create_txs_table}; {create_txouts_table}; {create_anchors_table}")
    +    }
    +
    +    /// Get v1 of sqlite [tx_graph::ChangeSet] schema
    +    pub fn schema_v1() -> String {
    +        let add_confirmation_time_column = format!(
    +            "ALTER TABLE {} ADD COLUMN confirmation_time INTEGER DEFAULT -1 NOT NULL",
    +            Self::ANCHORS_TABLE_NAME,
    +        );
    +        let extract_confirmation_time_from_anchor_column = format!(
    +            "UPDATE {} SET confirmation_time = json_extract(anchor, '$.confirmation_time')",
    +            Self::ANCHORS_TABLE_NAME,
    +        );
    +        let drop_anchor_column = format!(
    +            "ALTER TABLE {} DROP COLUMN anchor",
    +            Self::ANCHORS_TABLE_NAME,
    +        );
    +        format!("{add_confirmation_time_column}; {extract_confirmation_time_from_anchor_column}; {drop_anchor_column}")
    +    }
    +
         /// Initialize sqlite tables.
         pub fn init_sqlite_tables(db_tx: &rusqlite::Transaction) -> rusqlite::Result<()> {
    -        let schema_v0: &[&str] = &[
    -            // full transactions
    -            &format!(
    -                "CREATE TABLE {} ( \
    -                txid TEXT PRIMARY KEY NOT NULL, \
    -                raw_tx BLOB, \
    -                last_seen INTEGER \
    -                ) STRICT",
    -                Self::TXS_TABLE_NAME,
    -            ),
    -            // floating txouts
    -            &format!(
    -                "CREATE TABLE {} ( \
    -                txid TEXT NOT NULL, \
    -                vout INTEGER NOT NULL, \
    -                value INTEGER NOT NULL, \
    -                script BLOB NOT NULL, \
    -                PRIMARY KEY (txid, vout) \
    -                ) STRICT",
    -                Self::TXOUTS_TABLE_NAME,
    -            ),
    -            // anchors
    -            &format!(
    -                "CREATE TABLE {} ( \
    -                txid TEXT NOT NULL REFERENCES {} (txid), \
    -                block_height INTEGER NOT NULL, \
    -                block_hash TEXT NOT NULL, \
    -                anchor BLOB NOT NULL, \
    -                PRIMARY KEY (txid, block_height, block_hash) \
    -                ) STRICT",
    -                Self::ANCHORS_TABLE_NAME,
    -                Self::TXS_TABLE_NAME,
    -            ),
    -        ];
    -        migrate_schema(db_tx, Self::SCHEMA_NAME, &[schema_v0])
    +        migrate_schema(
    +            db_tx,
    +            Self::SCHEMA_NAME,
    +            &[&Self::schema_v0(), &Self::schema_v1()],
    +        )
         }
     
         /// Construct a [`TxGraph`] from an sqlite database.
    @@ -919,18 +1045,26 @@
             }
     
             let mut statement = db_tx.prepare(&format!(
    -            "SELECT json(anchor), txid FROM {}",
    +            "SELECT block_hash, block_height, confirmation_time, txid FROM {}",
                 Self::ANCHORS_TABLE_NAME,
             ))?;
             let row_iter = statement.query_map([], |row| {
                 Ok((
    -                row.get::<_, AnchorImpl<A>>("json(anchor)")?,
    +                row.get::<_, Impl<bitcoin::BlockHash>>("block_hash")?,
    +                row.get::<_, u32>("block_height")?,
    +                row.get::<_, u64>("confirmation_time")?,
                     row.get::<_, Impl<bitcoin::Txid>>("txid")?,
                 ))
             })?;
             for row in row_iter {
    -            let (AnchorImpl(anchor), Impl(txid)) = row?;
    -            changeset.anchors.insert((anchor, txid));
    +            let (hash, height, confirmation_time, Impl(txid)) = row?;
    +            changeset.anchors.insert((
    +                ConfirmationBlockTime {
    +                    block_id: BlockId::from((&height, &hash.0)),
    +                    confirmation_time,
    +                },
    +                txid,
    +            ));
             }
     
             Ok(changeset)
    @@ -978,7 +1112,7 @@
             }
     
             let mut statement = db_tx.prepare_cached(&format!(
    -            "REPLACE INTO {}(txid, block_height, block_hash, anchor) VALUES(:txid, :block_height, :block_hash, jsonb(:anchor))",
    +            "REPLACE INTO {}(txid, block_height, block_hash, confirmation_time) VALUES(:txid, :block_height, :block_hash, :confirmation_time)",
                 Self::ANCHORS_TABLE_NAME,
             ))?;
             let mut statement_txid = db_tx.prepare_cached(&format!(
    @@ -994,7 +1128,7 @@
                     ":txid": Impl(*txid),
                     ":block_height": anchor_block.height,
                     ":block_hash": Impl(anchor_block.hash),
    -                ":anchor": AnchorImpl(anchor.clone()),
    +                ":confirmation_time": anchor.confirmation_time,
                 })?;
             }
     
    @@ -1008,19 +1142,21 @@
         /// Name of sqlite table that stores blocks of [`LocalChain`](local_chain::LocalChain).
         pub const BLOCKS_TABLE_NAME: &'static str = "bdk_blocks";
     
    +    /// Get v0 of sqlite [local_chain::ChangeSet] schema
    +    pub fn schema_v0() -> String {
    +        // blocks
    +        format!(
    +            "CREATE TABLE {} ( \
    +            block_height INTEGER PRIMARY KEY NOT NULL, \
    +            block_hash TEXT NOT NULL \
    +            ) STRICT",
    +            Self::BLOCKS_TABLE_NAME,
    +        )
    +    }
    +
         /// Initialize sqlite tables for persisting [`local_chain::LocalChain`].
         pub fn init_sqlite_tables(db_tx: &rusqlite::Transaction) -> rusqlite::Result<()> {
    -        let schema_v0: &[&str] = &[
    -            // blocks
    -            &format!(
    -                "CREATE TABLE {} ( \
    -                block_height INTEGER PRIMARY KEY NOT NULL, \
    -                block_hash TEXT NOT NULL \
    -                ) STRICT",
    -                Self::BLOCKS_TABLE_NAME,
    -            ),
    -        ];
    -        migrate_schema(db_tx, Self::SCHEMA_NAME, &[schema_v0])
    +        migrate_schema(db_tx, Self::SCHEMA_NAME, &[&Self::schema_v0()])
         }
     
         /// Construct a [`LocalChain`](local_chain::LocalChain) from sqlite database.
    @@ -1082,20 +1218,21 @@
         /// Name for table that stores last revealed indices per descriptor id.
         pub const LAST_REVEALED_TABLE_NAME: &'static str = "bdk_descriptor_last_revealed";
     
    +    /// Get v0 of sqlite [keychain_txout::ChangeSet] schema
    +    pub fn schema_v0() -> String {
    +        format!(
    +            "CREATE TABLE {} ( \
    +            descriptor_id TEXT PRIMARY KEY NOT NULL, \
    +            last_revealed INTEGER NOT NULL \
    +            ) STRICT",
    +            Self::LAST_REVEALED_TABLE_NAME,
    +        )
    +    }
    +
         /// Initialize sqlite tables for persisting
         /// [`KeychainTxOutIndex`](keychain_txout::KeychainTxOutIndex).
         pub fn init_sqlite_tables(db_tx: &rusqlite::Transaction) -> rusqlite::Result<()> {
    -        let schema_v0: &[&str] = &[
    -            // last revealed
    -            &format!(
    -                "CREATE TABLE {} ( \
    -                descriptor_id TEXT PRIMARY KEY NOT NULL, \
    -                last_revealed INTEGER NOT NULL \
    -                ) STRICT",
    -                Self::LAST_REVEALED_TABLE_NAME,
    -            ),
    -        ];
    -        migrate_schema(db_tx, Self::SCHEMA_NAME, &[schema_v0])
    +        migrate_schema(db_tx, Self::SCHEMA_NAME, &[&Self::schema_v0()])
         }
     
         /// Construct [`KeychainTxOutIndex`](keychain_txout::KeychainTxOutIndex) from sqlite database
    @@ -1151,7 +1288,7 @@
     
         #[test]
         fn can_persist_anchors_and_txs_independently() -> anyhow::Result<()> {
    -        type ChangeSet = tx_graph::ChangeSet<BlockId>;
    +        type ChangeSet = tx_graph::ChangeSet<ConfirmationBlockTime>;
             let mut conn = rusqlite::Connection::open_in_memory()?;
     
             // init tables
    @@ -1169,9 +1306,12 @@
             };
             let tx = Arc::new(tx);
             let txid = tx.compute_txid();
    -        let anchor = BlockId {
    -            height: 21,
    -            hash: hash!("anchor"),
    +        let anchor = ConfirmationBlockTime {
    +            block_id: BlockId {
    +                height: 21,
    +                hash: hash!("anchor"),
    +            },
    +            confirmation_time: 1342,
             };
     
             // First persist the anchor
    @@ -1207,5 +1347,97 @@
     
             Ok(())
         }
    +
    +    #[test]
    +    fn v0_to_v1_schema_migration_is_backward_compatible() -> anyhow::Result<()> {
    +        type ChangeSet = tx_graph::ChangeSet<ConfirmationBlockTime>;
    +        let mut conn = rusqlite::Connection::open_in_memory()?;
    +
    +        // Create initial database with v0 sqlite schema
    +        {
    +            let db_tx = conn.transaction()?;
    +            migrate_schema(&db_tx, ChangeSet::SCHEMA_NAME, &[&ChangeSet::schema_v0()])?;
    +            db_tx.commit()?;
    +        }
    +
    +        let tx = bitcoin::Transaction {
    +            version: transaction::Version::TWO,
    +            lock_time: absolute::LockTime::ZERO,
    +            input: vec![TxIn::default()],
    +            output: vec![TxOut::NULL],
    +        };
    +        let tx = Arc::new(tx);
    +        let txid = tx.compute_txid();
    +        let anchor = ConfirmationBlockTime {
    +            block_id: BlockId {
    +                height: 21,
    +                hash: hash!("anchor"),
    +            },
    +            confirmation_time: 1342,
    +        };
    +
    +        // Persist anchor with v0 sqlite schema
    +        {
    +            let changeset = ChangeSet {
    +                anchors: [(anchor, txid)].into(),
    +                ..Default::default()
    +            };
    +            let mut statement = conn.prepare_cached(&format!(
    +                "REPLACE INTO {} (txid, block_height, block_hash, anchor)
    +                 VALUES(
    +                    :txid,
    +                    :block_height,
    +                    :block_hash,
    +                    jsonb('{{
    +                        \"block_id\": {{\"height\": {},\"hash\":\"{}\"}},
    +                        \"confirmation_time\": {}
    +                    }}')
    +                 )",
    +                ChangeSet::ANCHORS_TABLE_NAME,
    +                anchor.block_id.height,
    +                anchor.block_id.hash,
    +                anchor.confirmation_time,
    +            ))?;
    +            let mut statement_txid = conn.prepare_cached(&format!(
    +                "INSERT OR IGNORE INTO {}(txid) VALUES(:txid)",
    +                ChangeSet::TXS_TABLE_NAME,
    +            ))?;
    +            for (anchor, txid) in &changeset.anchors {
    +                let anchor_block = anchor.anchor_block();
    +                statement_txid.execute(named_params! {
    +                    ":txid": Impl(*txid)
    +                })?;
    +                match statement.execute(named_params! {
    +                    ":txid": Impl(*txid),
    +                    ":block_height": anchor_block.height,
    +                    ":block_hash": Impl(anchor_block.hash),
    +                }) {
    +                    Ok(updated) => assert_eq!(updated, 1),
    +                    Err(err) => panic!("update failed: {}", err),
    +                }
    +            }
    +        }
    +
    +        // Apply v1 sqlite schema to tables with data
    +        {
    +            let db_tx = conn.transaction()?;
    +            migrate_schema(
    +                &db_tx,
    +                ChangeSet::SCHEMA_NAME,
    +                &[&ChangeSet::schema_v0(), &ChangeSet::schema_v1()],
    +            )?;
    +            db_tx.commit()?;
    +        }
    +
    +        // Loading changeset from sqlite should succeed
    +        {
    +            let db_tx = conn.transaction()?;
    +            let changeset = ChangeSet::from_sqlite(&db_tx)?;
    +            db_tx.commit()?;
    +            assert!(changeset.anchors.contains(&(anchor, txid)));
    +        }
    +
    +        Ok(())
    +    }
     }
     

    \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_wallet/wallet/changeset.rs.html b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_wallet/wallet/changeset.rs.html index a7ed0379ca..30099420f4 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_wallet/wallet/changeset.rs.html +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_wallet/wallet/changeset.rs.html @@ -210,7 +210,17 @@ 210 211 212 -
    use bdk_chain::{
    +213
    +214
    +215
    +216
    +217
    +218
    +219
    +220
    +221
    +

    use alloc::string::String;
    +use bdk_chain::{
         indexed_tx_graph, keychain_txout, local_chain, tx_graph, ConfirmationBlockTime, Merge,
     };
     use miniscript::{Descriptor, DescriptorPublicKey};
    @@ -283,9 +293,9 @@
         /// Name of table to store wallet descriptors and network.
         pub const WALLET_TABLE_NAME: &'static str = "bdk_wallet";
     
    -    /// Initialize sqlite tables for wallet tables.
    -    pub fn init_sqlite_tables(db_tx: &chain::rusqlite::Transaction) -> chain::rusqlite::Result<()> {
    -        let schema_v0: &[&str] = &[&format!(
    +    /// Get v0 sqlite [ChangeSet] schema
    +    pub fn schema_v0() -> String {
    +        format!(
                 "CREATE TABLE {} ( \
                     id INTEGER PRIMARY KEY NOT NULL CHECK (id = 0), \
                     descriptor TEXT, \
    @@ -293,8 +303,16 @@
                     network TEXT \
                     ) STRICT;",
                 Self::WALLET_TABLE_NAME,
    -        )];
    -        crate::rusqlite_impl::migrate_schema(db_tx, Self::WALLET_SCHEMA_NAME, &[schema_v0])?;
    +        )
    +    }
    +
    +    /// Initialize sqlite tables for wallet tables.
    +    pub fn init_sqlite_tables(db_tx: &chain::rusqlite::Transaction) -> chain::rusqlite::Result<()> {
    +        crate::rusqlite_impl::migrate_schema(
    +            db_tx,
    +            Self::WALLET_SCHEMA_NAME,
    +            &[&Self::schema_v0()],
    +        )?;
     
             bdk_chain::local_chain::ChangeSet::init_sqlite_tables(db_tx)?;
             bdk_chain::tx_graph::ChangeSet::<ConfirmationBlockTime>::init_sqlite_tables(db_tx)?;
    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/bdk_core/merge/trait.Merge.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/bdk_core/merge/trait.Merge.js
    index df9b9d716d..e127ff98c0 100644
    --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/bdk_core/merge/trait.Merge.js
    +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/bdk_core/merge/trait.Merge.js
    @@ -1,6 +1,6 @@
     (function() {var implementors = {
     "bdk_chain":[["impl Merge for ChangeSet"],["impl Merge for ChangeSet"],["impl<A: Anchor, IA: Merge> Merge for ChangeSet<A, IA>"],["impl<A: Ord> Merge for ChangeSet<A>"]],
     "bdk_core":[],
    -"bdk_wallet":[["impl Merge for ChangeSet"]],
    -"example_cli":[["impl Merge for ChangeSet"]]
    +"bdk_wallet":[["impl Merge for ChangeSet"]],
    +"example_cli":[["impl Merge for ChangeSet"]]
     };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})()
    \ No newline at end of file
    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.AsRef.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.AsRef.js
    index 1ee19459e5..a54eb9a2cf 100644
    --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.AsRef.js
    +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.AsRef.js
    @@ -1,4 +1,4 @@
     (function() {var implementors = {
     "bdk_chain":[["impl AsRef<[u8; 32]> for DescriptorId"],["impl AsRef<[u8]> for DescriptorId"],["impl<A> AsRef<TxGraph<A>> for TxGraph<A>"],["impl<A, I> AsRef<TxGraph<A>> for IndexedTxGraph<A, I>"]],
    -"bdk_wallet":[["impl AsRef<TxGraph<ConfirmationBlockTime>> for Wallet"],["impl AsRef<[u8]> for KeychainKind"]]
    +"bdk_wallet":[["impl AsRef<TxGraph<ConfirmationBlockTime>> for Wallet"],["impl AsRef<[u8]> for KeychainKind"]]
     };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})()
    \ No newline at end of file
    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.From.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.From.js
    index 52fd643bef..d8d0c099e4 100644
    --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.From.js
    +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/convert/trait.From.js
    @@ -1,7 +1,7 @@
     (function() {var implementors = {
    -"bdk_chain":[["impl From<Hash> for DescriptorId"],["impl From<DescriptorId> for Hash"],["impl<'b> From<TxPosInBlock<'b>> for BlockId"],["impl<'b> From<TxPosInBlock<'b>> for ConfirmationBlockTime"],["impl<A> From<ChangeSet> for ChangeSet<A, ChangeSet>"],["impl<A> From<TxGraph<A>> for TxUpdate<A>"],["impl<A, IA: Default> From<ChangeSet<A>> for ChangeSet<A, IA>"],["impl<A: Ord + Clone> From<TxUpdate<A>> for TxGraph<A>"],["impl<B: IntoIterator<Item = (u32, Option<BlockHash>)>> From<B> for ChangeSet"],["impl<T> From<T> for AnchorImpl<T>"],["impl<T> From<T> for Impl<T>"]],
    +"bdk_chain":[["impl From<Hash> for DescriptorId"],["impl From<DescriptorId> for Hash"],["impl<'b> From<TxPosInBlock<'b>> for BlockId"],["impl<'b> From<TxPosInBlock<'b>> for ConfirmationBlockTime"],["impl<A> From<ChangeSet> for ChangeSet<A, ChangeSet>"],["impl<A> From<TxGraph<A>> for TxUpdate<A>"],["impl<A, IA: Default> From<ChangeSet<A>> for ChangeSet<A, IA>"],["impl<A: Ord + Clone> From<TxUpdate<A>> for TxGraph<A>"],["impl<B: IntoIterator<Item = (u32, Option<BlockHash>)>> From<B> for ChangeSet"],["impl<T> From<T> for Impl<T>"]],
     "bdk_core":[["impl From<(&u32, &BlockHash)> for BlockId"],["impl From<(u32, BlockHash)> for BlockId"],["impl From<BlockId> for (u32, BlockHash)"],["impl<I> From<SyncRequestBuilder<I>> for SyncRequest<I>"],["impl<K> From<FullScanRequestBuilder<K>> for FullScanRequest<K>"]],
     "bdk_file_store":[["impl From<Error> for FileError"],["impl From<Error> for IterError"]],
    -"bdk_wallet":[["impl From<Error> for CreateTxError"],["impl From<PolicyError> for Error"],["impl From<PolicyError> for CreateTxError"],["impl From<SatisfiableItem> for Policy"],["impl From<LoadMismatch> for LoadError"],["impl From<MiniscriptPsbtError> for CreateTxError"],["impl From<KeyError> for Error"],["impl From<bool> for Satisfaction"],["impl From<ChangeSet<ConfirmationBlockTime, ChangeSet>> for ChangeSet"],["impl From<ChangeSet> for ChangeSet"],["impl From<ChangeSet> for ChangeSet"],["impl From<ChangeSet<ConfirmationBlockTime>> for ChangeSet"],["impl From<FullScanResponse<KeychainKind>> for Update"],["impl From<SyncResponse> for Update"],["impl From<InsufficientFunds> for CreateTxError"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for CreateTxError"],["impl From<Error> for KeyError"],["impl From<Error> for KeyError"],["impl From<Fingerprint> for SignerId"],["impl From<Hash> for SignerId"],["impl From<HexToBytesError> for Error"],["impl From<ParsePublicKeyError> for Error"],["impl<Ctx: ScriptContext> From<Xpriv> for ExtendedKey<Ctx>"],["impl<Ctx: ScriptContext> From<Xpub> for ExtendedKey<Ctx>"],["impl<E> From<LoadMismatch> for LoadWithPersistError<E>"]],
    +"bdk_wallet":[["impl From<Error> for CreateTxError"],["impl From<PolicyError> for Error"],["impl From<PolicyError> for CreateTxError"],["impl From<SatisfiableItem> for Policy"],["impl From<LoadMismatch> for LoadError"],["impl From<MiniscriptPsbtError> for CreateTxError"],["impl From<KeyError> for Error"],["impl From<bool> for Satisfaction"],["impl From<InsufficientFunds> for CreateTxError"],["impl From<ChangeSet> for ChangeSet"],["impl From<ChangeSet> for ChangeSet"],["impl From<ChangeSet<ConfirmationBlockTime>> for ChangeSet"],["impl From<ChangeSet<ConfirmationBlockTime, ChangeSet>> for ChangeSet"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for CreateTxError"],["impl From<Error> for KeyError"],["impl From<Error> for KeyError"],["impl From<Fingerprint> for SignerId"],["impl From<FullScanResponse<KeychainKind>> for Update"],["impl From<Hash> for SignerId"],["impl From<HexToBytesError> for Error"],["impl From<ParsePublicKeyError> for Error"],["impl From<SyncResponse> for Update"],["impl<Ctx: ScriptContext> From<Xpriv> for ExtendedKey<Ctx>"],["impl<Ctx: ScriptContext> From<Xpub> for ExtendedKey<Ctx>"],["impl<E> From<LoadMismatch> for LoadWithPersistError<E>"]],
     "example_bitcoind_rpc_polling":[["impl From<RpcArgs> for Auth"]]
     };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})()
    \ No newline at end of file
    diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Freeze.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Freeze.js
    index 4de561bf08..233088540f 100644
    --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Freeze.js
    +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Freeze.js
    @@ -1,6 +1,6 @@
     (function() {var implementors = {
     "bdk_bitcoind_rpc":[["impl<'c, C> Freeze for Emitter<'c, C>",1,["bdk_bitcoind_rpc::Emitter"]],["impl<B> Freeze for BlockEvent<B>
    where\n B: Freeze,
    ",1,["bdk_bitcoind_rpc::BlockEvent"]]], -"bdk_chain":[["impl Freeze for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Freeze for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Freeze for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Freeze for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Freeze for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Freeze for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Freeze for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Freeze for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Freeze for Balance",1,["bdk_chain::balance::Balance"]],["impl Freeze for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Freeze for CanonicalTx<'a, T, A>
    where\n T: Freeze,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Freeze for TxNode<'a, T, A>
    where\n T: Freeze,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Freeze for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Freeze for TxAncestors<'g, A, F>
    where\n F: Freeze,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Freeze for TxDescendants<'g, A, F>
    where\n F: Freeze,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Freeze for ChainPosition<A>
    where\n A: Freeze,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Freeze for FullTxOut<A>
    where\n A: Freeze,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Freeze for ChangeSet<A>",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Freeze for TxGraph<A>",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Freeze for IndexedTxGraph<A, I>
    where\n I: Freeze,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Freeze for ChangeSet<A, IA>
    where\n IA: Freeze,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Freeze for SpkIterator<D>
    where\n D: Freeze,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Freeze for SpkTxOutIndex<I>",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> !Freeze for InsertDescriptorError<K>",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Freeze for KeychainTxOutIndex<K>",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Freeze for AnchorImpl<T>
    where\n T: Freeze,
    ",1,["bdk_chain::AnchorImpl"]],["impl<T> Freeze for Impl<T>
    where\n T: Freeze,
    ",1,["bdk_chain::Impl"]]], +"bdk_chain":[["impl Freeze for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Freeze for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Freeze for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Freeze for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Freeze for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Freeze for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Freeze for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Freeze for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Freeze for Balance",1,["bdk_chain::balance::Balance"]],["impl Freeze for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Freeze for CanonicalTx<'a, T, A>
    where\n T: Freeze,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Freeze for TxNode<'a, T, A>
    where\n T: Freeze,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Freeze for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Freeze for TxAncestors<'g, A, F>
    where\n F: Freeze,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Freeze for TxDescendants<'g, A, F>
    where\n F: Freeze,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Freeze for ChainPosition<A>
    where\n A: Freeze,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Freeze for FullTxOut<A>
    where\n A: Freeze,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Freeze for ChangeSet<A>",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Freeze for TxGraph<A>",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Freeze for IndexedTxGraph<A, I>
    where\n I: Freeze,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Freeze for ChangeSet<A, IA>
    where\n IA: Freeze,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Freeze for SpkIterator<D>
    where\n D: Freeze,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Freeze for SpkTxOutIndex<I>",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> !Freeze for InsertDescriptorError<K>",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Freeze for KeychainTxOutIndex<K>",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Freeze for Impl<T>
    where\n T: Freeze,
    ",1,["bdk_chain::Impl"]]], "bdk_core":[["impl Freeze for SyncProgress",1,["bdk_core::spk_client::SyncProgress"]],["impl Freeze for BlockId",1,["bdk_core::block_id::BlockId"]],["impl Freeze for CheckPoint",1,["bdk_core::checkpoint::CheckPoint"]],["impl Freeze for CheckPointIter",1,["bdk_core::checkpoint::CheckPointIter"]],["impl Freeze for ConfirmationBlockTime",1,["bdk_core::block_id::ConfirmationBlockTime"]],["impl<'i, I> Freeze for SyncItem<'i, I>
    where\n I: Freeze,
    ",1,["bdk_core::spk_client::SyncItem"]],["impl<A> Freeze for SyncResponse<A>",1,["bdk_core::spk_client::SyncResponse"]],["impl<A> Freeze for TxUpdate<A>",1,["bdk_core::tx_update::TxUpdate"]],["impl<I> Freeze for SyncRequest<I>",1,["bdk_core::spk_client::SyncRequest"]],["impl<I> Freeze for SyncRequestBuilder<I>",1,["bdk_core::spk_client::SyncRequestBuilder"]],["impl<K> Freeze for FullScanRequest<K>",1,["bdk_core::spk_client::FullScanRequest"]],["impl<K> Freeze for FullScanRequestBuilder<K>",1,["bdk_core::spk_client::FullScanRequestBuilder"]],["impl<K, A> Freeze for FullScanResponse<K, A>",1,["bdk_core::spk_client::FullScanResponse"]]], "bdk_electrum":[["impl<E> !Freeze for BdkElectrumClient<E>",1,["bdk_electrum::bdk_electrum_client::BdkElectrumClient"]]], "bdk_file_store":[["impl Freeze for FileError",1,["bdk_file_store::FileError"]],["impl Freeze for IterError",1,["bdk_file_store::entry_iter::IterError"]],["impl<'t, T> Freeze for EntryIter<'t, T>",1,["bdk_file_store::entry_iter::EntryIter"]],["impl<C> Freeze for AggregateChangesetsError<C>
    where\n C: Freeze,
    ",1,["bdk_file_store::store::AggregateChangesetsError"]],["impl<C> Freeze for Store<C>",1,["bdk_file_store::store::Store"]]], diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Send.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Send.js index 7a7813ad42..063205a909 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Send.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Send.js @@ -1,6 +1,6 @@ (function() {var implementors = { "bdk_bitcoind_rpc":[["impl<'c, C> Send for Emitter<'c, C>
    where\n C: Sync,
    ",1,["bdk_bitcoind_rpc::Emitter"]],["impl<B> Send for BlockEvent<B>
    where\n B: Send,
    ",1,["bdk_bitcoind_rpc::BlockEvent"]]], -"bdk_chain":[["impl Send for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Send for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Send for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Send for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Send for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Send for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Send for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Send for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Send for Balance",1,["bdk_chain::balance::Balance"]],["impl Send for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Send for CanonicalTx<'a, T, A>
    where\n T: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Send for TxNode<'a, T, A>
    where\n T: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Send for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Send for TxAncestors<'g, A, F>
    where\n F: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Send for TxDescendants<'g, A, F>
    where\n F: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Send for ChainPosition<A>
    where\n A: Send,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Send for FullTxOut<A>
    where\n A: Send,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Send for ChangeSet<A>
    where\n A: Send,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Send for TxGraph<A>
    where\n A: Send,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Send for IndexedTxGraph<A, I>
    where\n I: Send,\n A: Send,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Send for ChangeSet<A, IA>
    where\n IA: Send,\n A: Send,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Send for SpkIterator<D>
    where\n D: Send,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Send for SpkTxOutIndex<I>
    where\n I: Send,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> Send for InsertDescriptorError<K>
    where\n K: Send,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Send for KeychainTxOutIndex<K>
    where\n K: Send,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Send for AnchorImpl<T>
    where\n T: Send,
    ",1,["bdk_chain::AnchorImpl"]],["impl<T> Send for Impl<T>
    where\n T: Send,
    ",1,["bdk_chain::Impl"]]], +"bdk_chain":[["impl Send for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Send for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Send for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Send for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Send for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Send for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Send for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Send for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Send for Balance",1,["bdk_chain::balance::Balance"]],["impl Send for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Send for CanonicalTx<'a, T, A>
    where\n T: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Send for TxNode<'a, T, A>
    where\n T: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Send for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Send for TxAncestors<'g, A, F>
    where\n F: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Send for TxDescendants<'g, A, F>
    where\n F: Send,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Send for ChainPosition<A>
    where\n A: Send,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Send for FullTxOut<A>
    where\n A: Send,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Send for ChangeSet<A>
    where\n A: Send,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Send for TxGraph<A>
    where\n A: Send,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Send for IndexedTxGraph<A, I>
    where\n I: Send,\n A: Send,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Send for ChangeSet<A, IA>
    where\n IA: Send,\n A: Send,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Send for SpkIterator<D>
    where\n D: Send,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Send for SpkTxOutIndex<I>
    where\n I: Send,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> Send for InsertDescriptorError<K>
    where\n K: Send,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Send for KeychainTxOutIndex<K>
    where\n K: Send,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Send for Impl<T>
    where\n T: Send,
    ",1,["bdk_chain::Impl"]]], "bdk_core":[["impl Send for SyncProgress",1,["bdk_core::spk_client::SyncProgress"]],["impl Send for BlockId",1,["bdk_core::block_id::BlockId"]],["impl Send for CheckPoint",1,["bdk_core::checkpoint::CheckPoint"]],["impl Send for CheckPointIter",1,["bdk_core::checkpoint::CheckPointIter"]],["impl Send for ConfirmationBlockTime",1,["bdk_core::block_id::ConfirmationBlockTime"]],["impl<'i, I> Send for SyncItem<'i, I>
    where\n I: Send,
    ",1,["bdk_core::spk_client::SyncItem"]],["impl<A> Send for SyncResponse<A>
    where\n A: Send,
    ",1,["bdk_core::spk_client::SyncResponse"]],["impl<A> Send for TxUpdate<A>
    where\n A: Send,
    ",1,["bdk_core::tx_update::TxUpdate"]],["impl<I> Send for SyncRequest<I>
    where\n I: Send,
    ",1,["bdk_core::spk_client::SyncRequest"]],["impl<I> Send for SyncRequestBuilder<I>
    where\n I: Send,
    ",1,["bdk_core::spk_client::SyncRequestBuilder"]],["impl<K> Send for FullScanRequest<K>
    where\n K: Send,
    ",1,["bdk_core::spk_client::FullScanRequest"]],["impl<K> Send for FullScanRequestBuilder<K>
    where\n K: Send,
    ",1,["bdk_core::spk_client::FullScanRequestBuilder"]],["impl<K, A> Send for FullScanResponse<K, A>
    where\n K: Send,\n A: Send,
    ",1,["bdk_core::spk_client::FullScanResponse"]]], "bdk_electrum":[["impl<E> Send for BdkElectrumClient<E>
    where\n E: Send,
    ",1,["bdk_electrum::bdk_electrum_client::BdkElectrumClient"]]], "bdk_file_store":[["impl Send for FileError",1,["bdk_file_store::FileError"]],["impl Send for IterError",1,["bdk_file_store::entry_iter::IterError"]],["impl<'t, T> Send for EntryIter<'t, T>
    where\n T: Send,
    ",1,["bdk_file_store::entry_iter::EntryIter"]],["impl<C> Send for AggregateChangesetsError<C>
    where\n C: Send,
    ",1,["bdk_file_store::store::AggregateChangesetsError"]],["impl<C> Send for Store<C>",1,["bdk_file_store::store::Store"]]], diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Sync.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Sync.js index b1926fe922..99b0e25fb1 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Sync.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Sync.js @@ -1,6 +1,6 @@ (function() {var implementors = { "bdk_bitcoind_rpc":[["impl<'c, C> Sync for Emitter<'c, C>
    where\n C: Sync,
    ",1,["bdk_bitcoind_rpc::Emitter"]],["impl<B> Sync for BlockEvent<B>
    where\n B: Sync,
    ",1,["bdk_bitcoind_rpc::BlockEvent"]]], -"bdk_chain":[["impl Sync for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Sync for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Sync for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Sync for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Sync for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Sync for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Sync for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Sync for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Sync for Balance",1,["bdk_chain::balance::Balance"]],["impl Sync for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Sync for CanonicalTx<'a, T, A>
    where\n T: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Sync for TxNode<'a, T, A>
    where\n T: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Sync for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Sync for TxAncestors<'g, A, F>
    where\n F: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Sync for TxDescendants<'g, A, F>
    where\n F: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Sync for ChainPosition<A>
    where\n A: Sync,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Sync for FullTxOut<A>
    where\n A: Sync,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Sync for ChangeSet<A>
    where\n A: Sync,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Sync for TxGraph<A>
    where\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Sync for IndexedTxGraph<A, I>
    where\n I: Sync,\n A: Sync,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Sync for ChangeSet<A, IA>
    where\n IA: Sync,\n A: Sync,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Sync for SpkIterator<D>
    where\n D: Sync,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Sync for SpkTxOutIndex<I>
    where\n I: Sync,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> Sync for InsertDescriptorError<K>
    where\n K: Sync,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Sync for KeychainTxOutIndex<K>
    where\n K: Sync,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Sync for AnchorImpl<T>
    where\n T: Sync,
    ",1,["bdk_chain::AnchorImpl"]],["impl<T> Sync for Impl<T>
    where\n T: Sync,
    ",1,["bdk_chain::Impl"]]], +"bdk_chain":[["impl Sync for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Sync for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Sync for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Sync for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Sync for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Sync for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Sync for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Sync for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Sync for Balance",1,["bdk_chain::balance::Balance"]],["impl Sync for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Sync for CanonicalTx<'a, T, A>
    where\n T: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Sync for TxNode<'a, T, A>
    where\n T: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Sync for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Sync for TxAncestors<'g, A, F>
    where\n F: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Sync for TxDescendants<'g, A, F>
    where\n F: Sync,\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Sync for ChainPosition<A>
    where\n A: Sync,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Sync for FullTxOut<A>
    where\n A: Sync,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Sync for ChangeSet<A>
    where\n A: Sync,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Sync for TxGraph<A>
    where\n A: Sync,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Sync for IndexedTxGraph<A, I>
    where\n I: Sync,\n A: Sync,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Sync for ChangeSet<A, IA>
    where\n IA: Sync,\n A: Sync,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Sync for SpkIterator<D>
    where\n D: Sync,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Sync for SpkTxOutIndex<I>
    where\n I: Sync,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> Sync for InsertDescriptorError<K>
    where\n K: Sync,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Sync for KeychainTxOutIndex<K>
    where\n K: Sync,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Sync for Impl<T>
    where\n T: Sync,
    ",1,["bdk_chain::Impl"]]], "bdk_core":[["impl Sync for SyncProgress",1,["bdk_core::spk_client::SyncProgress"]],["impl Sync for BlockId",1,["bdk_core::block_id::BlockId"]],["impl Sync for CheckPoint",1,["bdk_core::checkpoint::CheckPoint"]],["impl Sync for CheckPointIter",1,["bdk_core::checkpoint::CheckPointIter"]],["impl Sync for ConfirmationBlockTime",1,["bdk_core::block_id::ConfirmationBlockTime"]],["impl<'i, I> Sync for SyncItem<'i, I>
    where\n I: Sync,
    ",1,["bdk_core::spk_client::SyncItem"]],["impl<A> Sync for SyncResponse<A>
    where\n A: Sync,
    ",1,["bdk_core::spk_client::SyncResponse"]],["impl<A> Sync for TxUpdate<A>
    where\n A: Sync,
    ",1,["bdk_core::tx_update::TxUpdate"]],["impl<I = ()> !Sync for SyncRequest<I>",1,["bdk_core::spk_client::SyncRequest"]],["impl<I = ()> !Sync for SyncRequestBuilder<I>",1,["bdk_core::spk_client::SyncRequestBuilder"]],["impl<K> !Sync for FullScanRequest<K>",1,["bdk_core::spk_client::FullScanRequest"]],["impl<K> !Sync for FullScanRequestBuilder<K>",1,["bdk_core::spk_client::FullScanRequestBuilder"]],["impl<K, A> Sync for FullScanResponse<K, A>
    where\n K: Sync,\n A: Sync,
    ",1,["bdk_core::spk_client::FullScanResponse"]]], "bdk_electrum":[["impl<E> Sync for BdkElectrumClient<E>
    where\n E: Sync,
    ",1,["bdk_electrum::bdk_electrum_client::BdkElectrumClient"]]], "bdk_file_store":[["impl Sync for FileError",1,["bdk_file_store::FileError"]],["impl Sync for IterError",1,["bdk_file_store::entry_iter::IterError"]],["impl<'t, T> Sync for EntryIter<'t, T>
    where\n T: Sync,
    ",1,["bdk_file_store::entry_iter::EntryIter"]],["impl<C> Sync for AggregateChangesetsError<C>
    where\n C: Sync,
    ",1,["bdk_file_store::store::AggregateChangesetsError"]],["impl<C> Sync for Store<C>",1,["bdk_file_store::store::Store"]]], diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Unpin.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Unpin.js index f77d665686..0b020f5629 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Unpin.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/marker/trait.Unpin.js @@ -1,6 +1,6 @@ (function() {var implementors = { "bdk_bitcoind_rpc":[["impl<'c, C> Unpin for Emitter<'c, C>",1,["bdk_bitcoind_rpc::Emitter"]],["impl<B> Unpin for BlockEvent<B>
    where\n B: Unpin,
    ",1,["bdk_bitcoind_rpc::BlockEvent"]]], -"bdk_chain":[["impl Unpin for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Unpin for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Unpin for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Unpin for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Unpin for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Unpin for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Unpin for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Unpin for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Unpin for Balance",1,["bdk_chain::balance::Balance"]],["impl Unpin for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Unpin for CanonicalTx<'a, T, A>
    where\n T: Unpin,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Unpin for TxNode<'a, T, A>
    where\n T: Unpin,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Unpin for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Unpin for TxAncestors<'g, A, F>
    where\n F: Unpin,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Unpin for TxDescendants<'g, A, F>
    where\n F: Unpin,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Unpin for ChainPosition<A>
    where\n A: Unpin,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Unpin for FullTxOut<A>
    where\n A: Unpin,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Unpin for ChangeSet<A>",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Unpin for TxGraph<A>",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Unpin for IndexedTxGraph<A, I>
    where\n I: Unpin,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Unpin for ChangeSet<A, IA>
    where\n IA: Unpin,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Unpin for SpkIterator<D>
    where\n D: Unpin,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Unpin for SpkTxOutIndex<I>
    where\n I: Unpin,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> Unpin for InsertDescriptorError<K>
    where\n K: Unpin,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Unpin for KeychainTxOutIndex<K>
    where\n K: Unpin,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Unpin for AnchorImpl<T>
    where\n T: Unpin,
    ",1,["bdk_chain::AnchorImpl"]],["impl<T> Unpin for Impl<T>
    where\n T: Unpin,
    ",1,["bdk_chain::Impl"]]], +"bdk_chain":[["impl Unpin for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl Unpin for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl Unpin for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl Unpin for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl Unpin for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl Unpin for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl Unpin for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl Unpin for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl Unpin for Balance",1,["bdk_chain::balance::Balance"]],["impl Unpin for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> Unpin for CanonicalTx<'a, T, A>
    where\n T: Unpin,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> Unpin for TxNode<'a, T, A>
    where\n T: Unpin,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> Unpin for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> Unpin for TxAncestors<'g, A, F>
    where\n F: Unpin,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> Unpin for TxDescendants<'g, A, F>
    where\n F: Unpin,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> Unpin for ChainPosition<A>
    where\n A: Unpin,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> Unpin for FullTxOut<A>
    where\n A: Unpin,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> Unpin for ChangeSet<A>",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> Unpin for TxGraph<A>",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> Unpin for IndexedTxGraph<A, I>
    where\n I: Unpin,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> Unpin for ChangeSet<A, IA>
    where\n IA: Unpin,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> Unpin for SpkIterator<D>
    where\n D: Unpin,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> Unpin for SpkTxOutIndex<I>
    where\n I: Unpin,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> Unpin for InsertDescriptorError<K>
    where\n K: Unpin,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> Unpin for KeychainTxOutIndex<K>
    where\n K: Unpin,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> Unpin for Impl<T>
    where\n T: Unpin,
    ",1,["bdk_chain::Impl"]]], "bdk_core":[["impl Unpin for SyncProgress",1,["bdk_core::spk_client::SyncProgress"]],["impl Unpin for BlockId",1,["bdk_core::block_id::BlockId"]],["impl Unpin for CheckPoint",1,["bdk_core::checkpoint::CheckPoint"]],["impl Unpin for CheckPointIter",1,["bdk_core::checkpoint::CheckPointIter"]],["impl Unpin for ConfirmationBlockTime",1,["bdk_core::block_id::ConfirmationBlockTime"]],["impl<'i, I> Unpin for SyncItem<'i, I>
    where\n I: Unpin,
    ",1,["bdk_core::spk_client::SyncItem"]],["impl<A> Unpin for SyncResponse<A>",1,["bdk_core::spk_client::SyncResponse"]],["impl<A> Unpin for TxUpdate<A>",1,["bdk_core::tx_update::TxUpdate"]],["impl<I> Unpin for SyncRequest<I>
    where\n I: Unpin,
    ",1,["bdk_core::spk_client::SyncRequest"]],["impl<I> Unpin for SyncRequestBuilder<I>
    where\n I: Unpin,
    ",1,["bdk_core::spk_client::SyncRequestBuilder"]],["impl<K> Unpin for FullScanRequest<K>",1,["bdk_core::spk_client::FullScanRequest"]],["impl<K> Unpin for FullScanRequestBuilder<K>",1,["bdk_core::spk_client::FullScanRequestBuilder"]],["impl<K, A> Unpin for FullScanResponse<K, A>",1,["bdk_core::spk_client::FullScanResponse"]]], "bdk_electrum":[["impl<E> Unpin for BdkElectrumClient<E>
    where\n E: Unpin,
    ",1,["bdk_electrum::bdk_electrum_client::BdkElectrumClient"]]], "bdk_file_store":[["impl Unpin for FileError",1,["bdk_file_store::FileError"]],["impl Unpin for IterError",1,["bdk_file_store::entry_iter::IterError"]],["impl<'t, T> Unpin for EntryIter<'t, T>
    where\n T: Unpin,
    ",1,["bdk_file_store::entry_iter::EntryIter"]],["impl<C> Unpin for AggregateChangesetsError<C>
    where\n C: Unpin,
    ",1,["bdk_file_store::store::AggregateChangesetsError"]],["impl<C> Unpin for Store<C>
    where\n C: Unpin,
    ",1,["bdk_file_store::store::Store"]]], diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/ops/deref/trait.Deref.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/ops/deref/trait.Deref.js index 1d1fedb676..b4d7cfbd5e 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/ops/deref/trait.Deref.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/ops/deref/trait.Deref.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"bdk_chain":[["impl<'a, T, A> Deref for TxNode<'a, T, A>"],["impl<T> Deref for AnchorImpl<T>"],["impl<T> Deref for Impl<T>"]], +"bdk_chain":[["impl<'a, T, A> Deref for TxNode<'a, T, A>"],["impl<T> Deref for Impl<T>"]], "bdk_wallet":[["impl Deref for AddressInfo"],["impl<K, Ctx: ScriptContext> Deref for GeneratedKey<K, Ctx>"],["impl<P> Deref for PersistedWallet<P>"],["impl<S: Sized + Debug + Clone> Deref for SignerWrapper<S>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js index 574f1ac6bd..1ad7c2d1a1 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js @@ -1,6 +1,6 @@ (function() {var implementors = { "bdk_bitcoind_rpc":[["impl<'c, C> RefUnwindSafe for Emitter<'c, C>
    where\n C: RefUnwindSafe,
    ",1,["bdk_bitcoind_rpc::Emitter"]],["impl<B> RefUnwindSafe for BlockEvent<B>
    where\n B: RefUnwindSafe,
    ",1,["bdk_bitcoind_rpc::BlockEvent"]]], -"bdk_chain":[["impl RefUnwindSafe for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl RefUnwindSafe for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl RefUnwindSafe for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl RefUnwindSafe for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl RefUnwindSafe for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl RefUnwindSafe for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl RefUnwindSafe for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl RefUnwindSafe for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl RefUnwindSafe for Balance",1,["bdk_chain::balance::Balance"]],["impl RefUnwindSafe for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> RefUnwindSafe for CanonicalTx<'a, T, A>
    where\n T: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> RefUnwindSafe for TxNode<'a, T, A>
    where\n T: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> RefUnwindSafe for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> RefUnwindSafe for TxAncestors<'g, A, F>
    where\n F: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> RefUnwindSafe for TxDescendants<'g, A, F>
    where\n F: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> RefUnwindSafe for ChainPosition<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> RefUnwindSafe for FullTxOut<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> RefUnwindSafe for ChangeSet<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> RefUnwindSafe for TxGraph<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> RefUnwindSafe for IndexedTxGraph<A, I>
    where\n I: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> RefUnwindSafe for ChangeSet<A, IA>
    where\n IA: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> RefUnwindSafe for SpkIterator<D>
    where\n D: RefUnwindSafe,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> RefUnwindSafe for SpkTxOutIndex<I>
    where\n I: RefUnwindSafe,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> RefUnwindSafe for InsertDescriptorError<K>
    where\n K: RefUnwindSafe,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> RefUnwindSafe for KeychainTxOutIndex<K>
    where\n K: RefUnwindSafe,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> RefUnwindSafe for AnchorImpl<T>
    where\n T: RefUnwindSafe,
    ",1,["bdk_chain::AnchorImpl"]],["impl<T> RefUnwindSafe for Impl<T>
    where\n T: RefUnwindSafe,
    ",1,["bdk_chain::Impl"]]], +"bdk_chain":[["impl RefUnwindSafe for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl RefUnwindSafe for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl RefUnwindSafe for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl RefUnwindSafe for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl RefUnwindSafe for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl RefUnwindSafe for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl RefUnwindSafe for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl RefUnwindSafe for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl RefUnwindSafe for Balance",1,["bdk_chain::balance::Balance"]],["impl RefUnwindSafe for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> RefUnwindSafe for CanonicalTx<'a, T, A>
    where\n T: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> RefUnwindSafe for TxNode<'a, T, A>
    where\n T: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> RefUnwindSafe for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> RefUnwindSafe for TxAncestors<'g, A, F>
    where\n F: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> RefUnwindSafe for TxDescendants<'g, A, F>
    where\n F: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> RefUnwindSafe for ChainPosition<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> RefUnwindSafe for FullTxOut<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> RefUnwindSafe for ChangeSet<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> RefUnwindSafe for TxGraph<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> RefUnwindSafe for IndexedTxGraph<A, I>
    where\n I: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> RefUnwindSafe for ChangeSet<A, IA>
    where\n IA: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> RefUnwindSafe for SpkIterator<D>
    where\n D: RefUnwindSafe,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> RefUnwindSafe for SpkTxOutIndex<I>
    where\n I: RefUnwindSafe,
    ",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> RefUnwindSafe for InsertDescriptorError<K>
    where\n K: RefUnwindSafe,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> RefUnwindSafe for KeychainTxOutIndex<K>
    where\n K: RefUnwindSafe,
    ",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> RefUnwindSafe for Impl<T>
    where\n T: RefUnwindSafe,
    ",1,["bdk_chain::Impl"]]], "bdk_core":[["impl RefUnwindSafe for SyncProgress",1,["bdk_core::spk_client::SyncProgress"]],["impl RefUnwindSafe for BlockId",1,["bdk_core::block_id::BlockId"]],["impl RefUnwindSafe for CheckPoint",1,["bdk_core::checkpoint::CheckPoint"]],["impl RefUnwindSafe for CheckPointIter",1,["bdk_core::checkpoint::CheckPointIter"]],["impl RefUnwindSafe for ConfirmationBlockTime",1,["bdk_core::block_id::ConfirmationBlockTime"]],["impl<'i, I> RefUnwindSafe for SyncItem<'i, I>
    where\n I: RefUnwindSafe,
    ",1,["bdk_core::spk_client::SyncItem"]],["impl<A> RefUnwindSafe for SyncResponse<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_core::spk_client::SyncResponse"]],["impl<A> RefUnwindSafe for TxUpdate<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_core::tx_update::TxUpdate"]],["impl<I = ()> !RefUnwindSafe for SyncRequest<I>",1,["bdk_core::spk_client::SyncRequest"]],["impl<I = ()> !RefUnwindSafe for SyncRequestBuilder<I>",1,["bdk_core::spk_client::SyncRequestBuilder"]],["impl<K> !RefUnwindSafe for FullScanRequest<K>",1,["bdk_core::spk_client::FullScanRequest"]],["impl<K> !RefUnwindSafe for FullScanRequestBuilder<K>",1,["bdk_core::spk_client::FullScanRequestBuilder"]],["impl<K, A> RefUnwindSafe for FullScanResponse<K, A>
    where\n K: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_core::spk_client::FullScanResponse"]]], "bdk_electrum":[["impl<E> RefUnwindSafe for BdkElectrumClient<E>
    where\n E: RefUnwindSafe,
    ",1,["bdk_electrum::bdk_electrum_client::BdkElectrumClient"]]], "bdk_file_store":[["impl !RefUnwindSafe for FileError",1,["bdk_file_store::FileError"]],["impl !RefUnwindSafe for IterError",1,["bdk_file_store::entry_iter::IterError"]],["impl<'t, T> RefUnwindSafe for EntryIter<'t, T>
    where\n T: RefUnwindSafe,
    ",1,["bdk_file_store::entry_iter::EntryIter"]],["impl<C> !RefUnwindSafe for AggregateChangesetsError<C>",1,["bdk_file_store::store::AggregateChangesetsError"]],["impl<C> RefUnwindSafe for Store<C>
    where\n C: RefUnwindSafe,
    ",1,["bdk_file_store::store::Store"]]], diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js index 3b3c8e196a..7d001879fc 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js @@ -1,6 +1,6 @@ (function() {var implementors = { "bdk_bitcoind_rpc":[["impl<'c, C> UnwindSafe for Emitter<'c, C>
    where\n C: RefUnwindSafe,
    ",1,["bdk_bitcoind_rpc::Emitter"]],["impl<B> UnwindSafe for BlockEvent<B>
    where\n B: UnwindSafe,
    ",1,["bdk_bitcoind_rpc::BlockEvent"]]], -"bdk_chain":[["impl UnwindSafe for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl UnwindSafe for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl UnwindSafe for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl UnwindSafe for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl UnwindSafe for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl UnwindSafe for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl UnwindSafe for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl UnwindSafe for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl UnwindSafe for Balance",1,["bdk_chain::balance::Balance"]],["impl UnwindSafe for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> UnwindSafe for CanonicalTx<'a, T, A>
    where\n T: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> UnwindSafe for TxNode<'a, T, A>
    where\n T: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> UnwindSafe for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> UnwindSafe for TxAncestors<'g, A, F>
    where\n F: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> UnwindSafe for TxDescendants<'g, A, F>
    where\n F: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> UnwindSafe for ChainPosition<A>
    where\n A: UnwindSafe,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> UnwindSafe for FullTxOut<A>
    where\n A: UnwindSafe,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> UnwindSafe for ChangeSet<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> UnwindSafe for TxGraph<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> UnwindSafe for IndexedTxGraph<A, I>
    where\n I: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> UnwindSafe for ChangeSet<A, IA>
    where\n IA: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> UnwindSafe for SpkIterator<D>
    where\n D: UnwindSafe,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> UnwindSafe for SpkTxOutIndex<I>",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> UnwindSafe for InsertDescriptorError<K>
    where\n K: UnwindSafe,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> UnwindSafe for KeychainTxOutIndex<K>",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> UnwindSafe for AnchorImpl<T>
    where\n T: UnwindSafe,
    ",1,["bdk_chain::AnchorImpl"]],["impl<T> UnwindSafe for Impl<T>
    where\n T: UnwindSafe,
    ",1,["bdk_chain::Impl"]]], +"bdk_chain":[["impl UnwindSafe for ApplyHeaderError",1,["bdk_chain::local_chain::ApplyHeaderError"]],["impl UnwindSafe for CalculateFeeError",1,["bdk_chain::tx_graph::CalculateFeeError"]],["impl UnwindSafe for ChangeSet",1,["bdk_chain::indexer::keychain_txout::ChangeSet"]],["impl UnwindSafe for AlterCheckPointError",1,["bdk_chain::local_chain::AlterCheckPointError"]],["impl UnwindSafe for CannotConnectError",1,["bdk_chain::local_chain::CannotConnectError"]],["impl UnwindSafe for ChangeSet",1,["bdk_chain::local_chain::ChangeSet"]],["impl UnwindSafe for LocalChain",1,["bdk_chain::local_chain::LocalChain"]],["impl UnwindSafe for MissingGenesisError",1,["bdk_chain::local_chain::MissingGenesisError"]],["impl UnwindSafe for Balance",1,["bdk_chain::balance::Balance"]],["impl UnwindSafe for DescriptorId",1,["bdk_chain::descriptor_ext::DescriptorId"]],["impl<'a, T, A> UnwindSafe for CanonicalTx<'a, T, A>
    where\n T: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::CanonicalTx"]],["impl<'a, T, A> UnwindSafe for TxNode<'a, T, A>
    where\n T: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxNode"]],["impl<'b> UnwindSafe for TxPosInBlock<'b>",1,["bdk_chain::tx_data_traits::TxPosInBlock"]],["impl<'g, A, F> UnwindSafe for TxAncestors<'g, A, F>
    where\n F: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxAncestors"]],["impl<'g, A, F> UnwindSafe for TxDescendants<'g, A, F>
    where\n F: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxDescendants"]],["impl<A> UnwindSafe for ChainPosition<A>
    where\n A: UnwindSafe,
    ",1,["bdk_chain::chain_data::ChainPosition"]],["impl<A> UnwindSafe for FullTxOut<A>
    where\n A: UnwindSafe,
    ",1,["bdk_chain::chain_data::FullTxOut"]],["impl<A> UnwindSafe for ChangeSet<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::ChangeSet"]],["impl<A> UnwindSafe for TxGraph<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_chain::tx_graph::TxGraph"]],["impl<A, I> UnwindSafe for IndexedTxGraph<A, I>
    where\n I: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::IndexedTxGraph"]],["impl<A, IA> UnwindSafe for ChangeSet<A, IA>
    where\n IA: UnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_chain::indexed_tx_graph::ChangeSet"]],["impl<D> UnwindSafe for SpkIterator<D>
    where\n D: UnwindSafe,
    ",1,["bdk_chain::spk_iter::SpkIterator"]],["impl<I> UnwindSafe for SpkTxOutIndex<I>",1,["bdk_chain::indexer::spk_txout::SpkTxOutIndex"]],["impl<K> UnwindSafe for InsertDescriptorError<K>
    where\n K: UnwindSafe,
    ",1,["bdk_chain::indexer::keychain_txout::InsertDescriptorError"]],["impl<K> UnwindSafe for KeychainTxOutIndex<K>",1,["bdk_chain::indexer::keychain_txout::KeychainTxOutIndex"]],["impl<T> UnwindSafe for Impl<T>
    where\n T: UnwindSafe,
    ",1,["bdk_chain::Impl"]]], "bdk_core":[["impl UnwindSafe for SyncProgress",1,["bdk_core::spk_client::SyncProgress"]],["impl UnwindSafe for BlockId",1,["bdk_core::block_id::BlockId"]],["impl UnwindSafe for CheckPoint",1,["bdk_core::checkpoint::CheckPoint"]],["impl UnwindSafe for CheckPointIter",1,["bdk_core::checkpoint::CheckPointIter"]],["impl UnwindSafe for ConfirmationBlockTime",1,["bdk_core::block_id::ConfirmationBlockTime"]],["impl<'i, I> UnwindSafe for SyncItem<'i, I>
    where\n I: UnwindSafe,
    ",1,["bdk_core::spk_client::SyncItem"]],["impl<A> UnwindSafe for SyncResponse<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_core::spk_client::SyncResponse"]],["impl<A> UnwindSafe for TxUpdate<A>
    where\n A: RefUnwindSafe,
    ",1,["bdk_core::tx_update::TxUpdate"]],["impl<I = ()> !UnwindSafe for SyncRequest<I>",1,["bdk_core::spk_client::SyncRequest"]],["impl<I = ()> !UnwindSafe for SyncRequestBuilder<I>",1,["bdk_core::spk_client::SyncRequestBuilder"]],["impl<K> !UnwindSafe for FullScanRequest<K>",1,["bdk_core::spk_client::FullScanRequest"]],["impl<K> !UnwindSafe for FullScanRequestBuilder<K>",1,["bdk_core::spk_client::FullScanRequestBuilder"]],["impl<K, A> UnwindSafe for FullScanResponse<K, A>
    where\n K: RefUnwindSafe,\n A: RefUnwindSafe,
    ",1,["bdk_core::spk_client::FullScanResponse"]]], "bdk_electrum":[["impl<E> UnwindSafe for BdkElectrumClient<E>
    where\n E: UnwindSafe,
    ",1,["bdk_electrum::bdk_electrum_client::BdkElectrumClient"]]], "bdk_file_store":[["impl !UnwindSafe for FileError",1,["bdk_file_store::FileError"]],["impl !UnwindSafe for IterError",1,["bdk_file_store::entry_iter::IterError"]],["impl<'t, T> !UnwindSafe for EntryIter<'t, T>",1,["bdk_file_store::entry_iter::EntryIter"]],["impl<C> !UnwindSafe for AggregateChangesetsError<C>",1,["bdk_file_store::store::AggregateChangesetsError"]],["impl<C> UnwindSafe for Store<C>
    where\n C: UnwindSafe,
    ",1,["bdk_file_store::store::Store"]]], diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/from_sql/trait.FromSql.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/from_sql/trait.FromSql.js index b804e83fa2..257f452e59 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/from_sql/trait.FromSql.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/from_sql/trait.FromSql.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"bdk_chain":[["impl FromSql for Impl<Network>"],["impl FromSql for Impl<Amount>"],["impl FromSql for Impl<BlockHash>"],["impl FromSql for Impl<ScriptBuf>"],["impl FromSql for Impl<Transaction>"],["impl FromSql for Impl<Txid>"],["impl FromSql for Impl<DescriptorId>"],["impl FromSql for Impl<Descriptor<DescriptorPublicKey>>"],["impl<A: Anchor + DeserializeOwned> FromSql for AnchorImpl<A>"]] +"bdk_chain":[["impl FromSql for Impl<Network>"],["impl FromSql for Impl<Amount>"],["impl FromSql for Impl<BlockHash>"],["impl FromSql for Impl<ScriptBuf>"],["impl FromSql for Impl<Transaction>"],["impl FromSql for Impl<Txid>"],["impl FromSql for Impl<DescriptorId>"],["impl FromSql for Impl<Descriptor<DescriptorPublicKey>>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/to_sql/trait.ToSql.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/to_sql/trait.ToSql.js index cf802b3707..1f4ac0d0b5 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/to_sql/trait.ToSql.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/trait.impl/rusqlite/types/to_sql/trait.ToSql.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"bdk_chain":[["impl ToSql for Impl<Network>"],["impl ToSql for Impl<Amount>"],["impl ToSql for Impl<BlockHash>"],["impl ToSql for Impl<ScriptBuf>"],["impl ToSql for Impl<Transaction>"],["impl ToSql for Impl<Txid>"],["impl ToSql for Impl<DescriptorId>"],["impl ToSql for Impl<Descriptor<DescriptorPublicKey>>"],["impl<A: Anchor + Serialize> ToSql for AnchorImpl<A>"]] +"bdk_chain":[["impl ToSql for Impl<Network>"],["impl ToSql for Impl<Amount>"],["impl ToSql for Impl<BlockHash>"],["impl ToSql for Impl<ScriptBuf>"],["impl ToSql for Impl<Transaction>"],["impl ToSql for Impl<Txid>"],["impl ToSql for Impl<DescriptorId>"],["impl ToSql for Impl<Descriptor<DescriptorPublicKey>>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/alloc/collections/btree/map/struct.BTreeMap.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/alloc/collections/btree/map/struct.BTreeMap.js index 967b019872..3a42a23f2a 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/alloc/collections/btree/map/struct.BTreeMap.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/alloc/collections/btree/map/struct.BTreeMap.js @@ -1,4 +1,4 @@ (function() {var type_impls = { "bdk_chain":[["
    source§

    impl<K, V> BTreeMap<K, V>

    1.0.0 (const: 1.66.0) · source

    pub const fn new() -> BTreeMap<K, V>

    Makes a new, empty BTreeMap.

    \n

    Does not allocate anything on its own.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\n\n// entries can now be inserted into the empty map\nmap.insert(1, \"a\");
    \n
    ",0,"bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn iter(&self) -> Iter<'_, K, V> ⓘ

    Gets an iterator over the entries of the map, sorted by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(3, \"c\");\nmap.insert(2, \"b\");\nmap.insert(1, \"a\");\n\nfor (key, value) in map.iter() {\n    println!(\"{key}: {value}\");\n}\n\nlet (first_key, first_value) = map.iter().next().unwrap();\nassert_eq!((*first_key, *first_value), (1, \"a\"));
    \n
    1.0.0 · source

    pub fn iter_mut(&mut self) -> IterMut<'_, K, V> ⓘ

    Gets a mutable iterator over the entries of the map, sorted by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::from([\n   (\"a\", 1),\n   (\"b\", 2),\n   (\"c\", 3),\n]);\n\n// add 10 to the value if the key isn't \"a\"\nfor (key, value) in map.iter_mut() {\n    if key != &\"a\" {\n        *value += 10;\n    }\n}
    \n
    1.0.0 · source

    pub fn keys(&self) -> Keys<'_, K, V> ⓘ

    Gets an iterator over the keys of the map, in sorted order.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(2, \"b\");\na.insert(1, \"a\");\n\nlet keys: Vec<_> = a.keys().cloned().collect();\nassert_eq!(keys, [1, 2]);
    \n
    1.0.0 · source

    pub fn values(&self) -> Values<'_, K, V> ⓘ

    Gets an iterator over the values of the map, in order by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"hello\");\na.insert(2, \"goodbye\");\n\nlet values: Vec<&str> = a.values().cloned().collect();\nassert_eq!(values, [\"hello\", \"goodbye\"]);
    \n
    1.10.0 · source

    pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> ⓘ

    Gets a mutable iterator over the values of the map, in order by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, String::from(\"hello\"));\na.insert(2, String::from(\"goodbye\"));\n\nfor value in a.values_mut() {\n    value.push_str(\"!\");\n}\n\nlet values: Vec<String> = a.values().cloned().collect();\nassert_eq!(values, [String::from(\"hello!\"),\n                    String::from(\"goodbye!\")]);
    \n
    1.0.0 (const: unstable) · source

    pub fn len(&self) -> usize

    Returns the number of elements in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\nassert_eq!(a.len(), 0);\na.insert(1, \"a\");\nassert_eq!(a.len(), 1);
    \n
    1.0.0 (const: unstable) · source

    pub fn is_empty(&self) -> bool

    Returns true if the map contains no elements.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\nassert!(a.is_empty());\na.insert(1, \"a\");\nassert!(!a.is_empty());
    \n
    source

    pub fn lower_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a Cursor pointing at the gap before the smallest key\ngreater than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap before the smallest key greater than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap before the smallest key greater than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap before the smallest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet cursor = map.lower_bound(Bound::Included(&2));\nassert_eq!(cursor.peek_prev(), Some((&1, &\"a\")));\nassert_eq!(cursor.peek_next(), Some((&2, &\"b\")));\n\nlet cursor = map.lower_bound(Bound::Excluded(&2));\nassert_eq!(cursor.peek_prev(), Some((&2, &\"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &\"c\")));\n\nlet cursor = map.lower_bound(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), None);\nassert_eq!(cursor.peek_next(), Some((&1, &\"a\")));
    \n
    source

    pub fn lower_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a CursorMut pointing at the gap before the smallest key\ngreater than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap before the smallest key greater than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap before the smallest key greater than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap before the smallest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet mut map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet mut cursor = map.lower_bound_mut(Bound::Included(&2));\nassert_eq!(cursor.peek_prev(), Some((&1, &mut \"a\")));\nassert_eq!(cursor.peek_next(), Some((&2, &mut \"b\")));\n\nlet mut cursor = map.lower_bound_mut(Bound::Excluded(&2));\nassert_eq!(cursor.peek_prev(), Some((&2, &mut \"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &mut \"c\")));\n\nlet mut cursor = map.lower_bound_mut(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), None);\nassert_eq!(cursor.peek_next(), Some((&1, &mut \"a\")));
    \n
    source

    pub fn upper_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a Cursor pointing at the gap after the greatest key\nsmaller than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap after the greatest key smaller than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap after the greatest key smaller than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap after the greatest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet cursor = map.upper_bound(Bound::Included(&3));\nassert_eq!(cursor.peek_prev(), Some((&3, &\"c\")));\nassert_eq!(cursor.peek_next(), Some((&4, &\"d\")));\n\nlet cursor = map.upper_bound(Bound::Excluded(&3));\nassert_eq!(cursor.peek_prev(), Some((&2, &\"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &\"c\")));\n\nlet cursor = map.upper_bound(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), Some((&4, &\"d\")));\nassert_eq!(cursor.peek_next(), None);
    \n
    source

    pub fn upper_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a CursorMut pointing at the gap after the greatest key\nsmaller than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap after the greatest key smaller than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap after the greatest key smaller than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap after the greatest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet mut map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet mut cursor = map.upper_bound_mut(Bound::Included(&3));\nassert_eq!(cursor.peek_prev(), Some((&3, &mut \"c\")));\nassert_eq!(cursor.peek_next(), Some((&4, &mut \"d\")));\n\nlet mut cursor = map.upper_bound_mut(Bound::Excluded(&3));\nassert_eq!(cursor.peek_prev(), Some((&2, &mut \"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &mut \"c\")));\n\nlet mut cursor = map.upper_bound_mut(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), Some((&4, &mut \"d\")));\nassert_eq!(cursor.peek_next(), None);
    \n
    ",0,"bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn clear(&mut self)

    Clears the map, removing all elements.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.clear();\nassert!(a.is_empty());
    \n
    source

    pub const fn new_in(alloc: A) -> BTreeMap<K, V, A>

    🔬This is a nightly-only experimental API. (btreemap_alloc)

    Makes a new empty BTreeMap with a reasonable choice for B.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\nuse std::alloc::Global;\n\nlet mut map = BTreeMap::new_in(Global);\n\n// entries can now be inserted into the empty map\nmap.insert(1, \"a\");
    \n
    ",0,"bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn get<Q>(&self, key: &Q) -> Option<&V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns a reference to the value corresponding to the key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.get(&1), Some(&\"a\"));\nassert_eq!(map.get(&2), None);
    \n
    1.40.0 · source

    pub fn get_key_value<Q>(&self, k: &Q) -> Option<(&K, &V)>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns the key-value pair corresponding to the supplied key.

    \n

    The supplied key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.get_key_value(&1), Some((&1, &\"a\")));\nassert_eq!(map.get_key_value(&2), None);
    \n
    1.66.0 · source

    pub fn first_key_value(&self) -> Option<(&K, &V)>
    where\n K: Ord,

    Returns the first key-value pair in the map.\nThe key in this pair is the minimum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.first_key_value(), None);\nmap.insert(1, \"b\");\nmap.insert(2, \"a\");\nassert_eq!(map.first_key_value(), Some((&1, &\"b\")));
    \n
    1.66.0 · source

    pub fn first_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>>
    where\n K: Ord,

    Returns the first entry in the map for in-place manipulation.\nThe key of this entry is the minimum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nif let Some(mut entry) = map.first_entry() {\n    if *entry.key() > 0 {\n        entry.insert(\"first\");\n    }\n}\nassert_eq!(*map.get(&1).unwrap(), \"first\");\nassert_eq!(*map.get(&2).unwrap(), \"b\");
    \n
    1.66.0 · source

    pub fn pop_first(&mut self) -> Option<(K, V)>
    where\n K: Ord,

    Removes and returns the first element in the map.\nThe key of this element is the minimum key that was in the map.

    \n
    §Examples
    \n

    Draining elements in ascending order, while keeping a usable map each iteration.

    \n\n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nwhile let Some((key, _val)) = map.pop_first() {\n    assert!(map.iter().all(|(k, _v)| *k > key));\n}\nassert!(map.is_empty());
    \n
    1.66.0 · source

    pub fn last_key_value(&self) -> Option<(&K, &V)>
    where\n K: Ord,

    Returns the last key-value pair in the map.\nThe key in this pair is the maximum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"b\");\nmap.insert(2, \"a\");\nassert_eq!(map.last_key_value(), Some((&2, &\"a\")));
    \n
    1.66.0 · source

    pub fn last_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>>
    where\n K: Ord,

    Returns the last entry in the map for in-place manipulation.\nThe key of this entry is the maximum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nif let Some(mut entry) = map.last_entry() {\n    if *entry.key() > 0 {\n        entry.insert(\"last\");\n    }\n}\nassert_eq!(*map.get(&1).unwrap(), \"a\");\nassert_eq!(*map.get(&2).unwrap(), \"last\");
    \n
    1.66.0 · source

    pub fn pop_last(&mut self) -> Option<(K, V)>
    where\n K: Ord,

    Removes and returns the last element in the map.\nThe key of this element is the maximum key that was in the map.

    \n
    §Examples
    \n

    Draining elements in descending order, while keeping a usable map each iteration.

    \n\n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nwhile let Some((key, _val)) = map.pop_last() {\n    assert!(map.iter().all(|(k, _v)| *k < key));\n}\nassert!(map.is_empty());
    \n
    1.0.0 · source

    pub fn contains_key<Q>(&self, key: &Q) -> bool
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns true if the map contains a value for the specified key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.contains_key(&1), true);\nassert_eq!(map.contains_key(&2), false);
    \n
    1.0.0 · source

    pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns a mutable reference to the value corresponding to the key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nif let Some(x) = map.get_mut(&1) {\n    *x = \"b\";\n}\nassert_eq!(map[&1], \"b\");
    \n
    1.0.0 · source

    pub fn insert(&mut self, key: K, value: V) -> Option<V>
    where\n K: Ord,

    Inserts a key-value pair into the map.

    \n

    If the map did not have this key present, None is returned.

    \n

    If the map did have this key present, the value is updated, and the old\nvalue is returned. The key is not updated, though; this matters for\ntypes that can be == without being identical. See the module-level\ndocumentation for more.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.insert(37, \"a\"), None);\nassert_eq!(map.is_empty(), false);\n\nmap.insert(37, \"b\");\nassert_eq!(map.insert(37, \"c\"), Some(\"b\"));\nassert_eq!(map[&37], \"c\");
    \n
    source

    pub fn try_insert(\n &mut self,\n key: K,\n value: V\n) -> Result<&mut V, OccupiedError<'_, K, V, A>>
    where\n K: Ord,

    🔬This is a nightly-only experimental API. (map_try_insert)

    Tries to insert a key-value pair into the map, and returns\na mutable reference to the value in the entry.

    \n

    If the map already had this key present, nothing is updated, and\nan error containing the occupied entry and the value is returned.

    \n
    §Examples
    \n
    #![feature(map_try_insert)]\n\nuse std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.try_insert(37, \"a\").unwrap(), &\"a\");\n\nlet err = map.try_insert(37, \"b\").unwrap_err();\nassert_eq!(err.entry.key(), &37);\nassert_eq!(err.entry.get(), &\"a\");\nassert_eq!(err.value, \"b\");
    \n
    1.0.0 · source

    pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Removes a key from the map, returning the value at the key if the key\nwas previously in the map.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.remove(&1), Some(\"a\"));\nassert_eq!(map.remove(&1), None);
    \n
    1.45.0 · source

    pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Removes a key from the map, returning the stored key and value if the key\nwas previously in the map.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.remove_entry(&1), Some((1, \"a\")));\nassert_eq!(map.remove_entry(&1), None);
    \n
    1.53.0 · source

    pub fn retain<F>(&mut self, f: F)
    where\n K: Ord,\n F: FnMut(&K, &mut V) -> bool,

    Retains only the elements specified by the predicate.

    \n

    In other words, remove all pairs (k, v) for which f(&k, &mut v) returns false.\nThe elements are visited in ascending key order.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x*10)).collect();\n// Keep only the elements with even-numbered keys.\nmap.retain(|&k, _| k % 2 == 0);\nassert!(map.into_iter().eq(vec![(0, 0), (2, 20), (4, 40), (6, 60)]));
    \n
    1.11.0 · source

    pub fn append(&mut self, other: &mut BTreeMap<K, V, A>)
    where\n K: Ord,\n A: Clone,

    Moves all elements from other into self, leaving other empty.

    \n

    If a key from other is already present in self, the respective\nvalue from self will be overwritten with the respective value from other.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.insert(2, \"b\");\na.insert(3, \"c\"); // Note: Key (3) also present in b.\n\nlet mut b = BTreeMap::new();\nb.insert(3, \"d\"); // Note: Key (3) also present in a.\nb.insert(4, \"e\");\nb.insert(5, \"f\");\n\na.append(&mut b);\n\nassert_eq!(a.len(), 5);\nassert_eq!(b.len(), 0);\n\nassert_eq!(a[&1], \"a\");\nassert_eq!(a[&2], \"b\");\nassert_eq!(a[&3], \"d\"); // Note: \"c\" has been overwritten.\nassert_eq!(a[&4], \"e\");\nassert_eq!(a[&5], \"f\");
    \n
    1.17.0 · source

    pub fn range<T, R>(&self, range: R) -> Range<'_, K, V> ⓘ
    where\n T: Ord + ?Sized,\n K: Borrow<T> + Ord,\n R: RangeBounds<T>,

    Constructs a double-ended iterator over a sub-range of elements in the map.\nThe simplest way is to use the range syntax min..max, thus range(min..max) will\nyield elements from min (inclusive) to max (exclusive).\nThe range may also be entered as (Bound<T>, Bound<T>), so for example\nrange((Excluded(4), Included(10))) will yield a left-exclusive, right-inclusive\nrange from 4 to 10.

    \n
    §Panics
    \n

    Panics if range start > end.\nPanics if range start == end and both bounds are Excluded.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\nuse std::ops::Bound::Included;\n\nlet mut map = BTreeMap::new();\nmap.insert(3, \"a\");\nmap.insert(5, \"b\");\nmap.insert(8, \"c\");\nfor (&key, &value) in map.range((Included(&4), Included(&8))) {\n    println!(\"{key}: {value}\");\n}\nassert_eq!(Some((&5, &\"b\")), map.range(4..).next());
    \n
    1.17.0 · source

    pub fn range_mut<T, R>(&mut self, range: R) -> RangeMut<'_, K, V> ⓘ
    where\n T: Ord + ?Sized,\n K: Borrow<T> + Ord,\n R: RangeBounds<T>,

    Constructs a mutable double-ended iterator over a sub-range of elements in the map.\nThe simplest way is to use the range syntax min..max, thus range(min..max) will\nyield elements from min (inclusive) to max (exclusive).\nThe range may also be entered as (Bound<T>, Bound<T>), so for example\nrange((Excluded(4), Included(10))) will yield a left-exclusive, right-inclusive\nrange from 4 to 10.

    \n
    §Panics
    \n

    Panics if range start > end.\nPanics if range start == end and both bounds are Excluded.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map: BTreeMap<&str, i32> =\n    [(\"Alice\", 0), (\"Bob\", 0), (\"Carol\", 0), (\"Cheryl\", 0)].into();\nfor (_, balance) in map.range_mut(\"B\"..\"Cheryl\") {\n    *balance += 100;\n}\nfor (name, balance) in &map {\n    println!(\"{name} => {balance}\");\n}
    \n
    1.0.0 · source

    pub fn entry(&mut self, key: K) -> Entry<'_, K, V, A>
    where\n K: Ord,

    Gets the given key’s corresponding entry in the map for in-place manipulation.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut count: BTreeMap<&str, usize> = BTreeMap::new();\n\n// count the number of occurrences of letters in the vec\nfor x in [\"a\", \"b\", \"a\", \"c\", \"a\", \"b\"] {\n    count.entry(x).and_modify(|curr| *curr += 1).or_insert(1);\n}\n\nassert_eq!(count[\"a\"], 3);\nassert_eq!(count[\"b\"], 2);\nassert_eq!(count[\"c\"], 1);
    \n
    1.11.0 · source

    pub fn split_off<Q>(&mut self, key: &Q) -> BTreeMap<K, V, A>
    where\n Q: Ord + ?Sized,\n K: Borrow<Q> + Ord,\n A: Clone,

    Splits the collection into two at the given key. Returns everything after the given key,\nincluding the key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.insert(2, \"b\");\na.insert(3, \"c\");\na.insert(17, \"d\");\na.insert(41, \"e\");\n\nlet b = a.split_off(&3);\n\nassert_eq!(a.len(), 2);\nassert_eq!(b.len(), 3);\n\nassert_eq!(a[&1], \"a\");\nassert_eq!(a[&2], \"b\");\n\nassert_eq!(b[&3], \"c\");\nassert_eq!(b[&17], \"d\");\nassert_eq!(b[&41], \"e\");
    \n
    source

    pub fn extract_if<F>(&mut self, pred: F) -> ExtractIf<'_, K, V, F, A> ⓘ
    where\n K: Ord,\n F: FnMut(&K, &mut V) -> bool,

    🔬This is a nightly-only experimental API. (btree_extract_if)

    Creates an iterator that visits all elements (key-value pairs) in\nascending key order and uses a closure to determine if an element should\nbe removed. If the closure returns true, the element is removed from\nthe map and yielded. If the closure returns false, or panics, the\nelement remains in the map and will not be yielded.

    \n

    The iterator also lets you mutate the value of each element in the\nclosure, regardless of whether you choose to keep or remove it.

    \n

    If the returned ExtractIf is not exhausted, e.g. because it is dropped without iterating\nor the iteration short-circuits, then the remaining elements will be retained.\nUse retain with a negated predicate if you do not need the returned iterator.

    \n
    §Examples
    \n

    Splitting a map into even and odd keys, reusing the original map:

    \n\n
    #![feature(btree_extract_if)]\nuse std::collections::BTreeMap;\n\nlet mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x)).collect();\nlet evens: BTreeMap<_, _> = map.extract_if(|k, _v| k % 2 == 0).collect();\nlet odds = map;\nassert_eq!(evens.keys().copied().collect::<Vec<_>>(), [0, 2, 4, 6]);\nassert_eq!(odds.keys().copied().collect::<Vec<_>>(), [1, 3, 5, 7]);
    \n
    1.54.0 · source

    pub fn into_keys(self) -> IntoKeys<K, V, A> ⓘ

    Creates a consuming iterator visiting all the keys, in sorted order.\nThe map cannot be used after calling this.\nThe iterator element type is K.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(2, \"b\");\na.insert(1, \"a\");\n\nlet keys: Vec<i32> = a.into_keys().collect();\nassert_eq!(keys, [1, 2]);
    \n
    1.54.0 · source

    pub fn into_values(self) -> IntoValues<K, V, A> ⓘ

    Creates a consuming iterator visiting all the values, in order by key.\nThe map cannot be used after calling this.\nThe iterator element type is V.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"hello\");\na.insert(2, \"goodbye\");\n\nlet values: Vec<&str> = a.into_values().collect();\nassert_eq!(values, [\"hello\", \"goodbye\"]);
    \n
    ",0,"bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> Clone for BTreeMap<K, V, A>
    where\n K: Clone,\n V: Clone,\n A: Allocator + Clone,

    source§

    fn clone(&self) -> BTreeMap<K, V, A>

    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","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> Debug for BTreeMap<K, V, A>
    where\n K: Debug,\n V: Debug,\n A: Allocator + Clone,

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V> Default for BTreeMap<K, V>

    source§

    fn default() -> BTreeMap<K, V>

    Creates an empty BTreeMap.

    \n
    ","Default","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>
    where\n K: Deserialize<'de> + Ord,\n V: Deserialize<'de>,

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<BTreeMap<K, V>, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.7.0 · source§

    impl<K, V, A> Drop for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    source§

    fn drop(&mut self)

    Executes the destructor for this type. Read more
    ","Drop","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.2.0 · source§

    impl<'a, K, V, A> Extend<(&'a K, &'a V)> for BTreeMap<K, V, A>
    where\n K: Ord + Copy,\n V: Copy,\n A: Allocator + Clone,

    source§

    fn extend<I>(&mut self, iter: I)
    where\n I: IntoIterator<Item = (&'a K, &'a V)>,

    Extends a collection with the contents of an iterator. Read more
    source§

    fn extend_one(&mut self, _: (&'a K, &'a V))

    🔬This is a nightly-only experimental API. (extend_one)
    Extends a collection with exactly one element.
    source§

    fn extend_reserve(&mut self, additional: usize)

    🔬This is a nightly-only experimental API. (extend_one)
    Reserves capacity in a collection for the given number of additional elements. Read more
    ","Extend<(&'a K, &'a V)>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> Extend<(K, V)> for BTreeMap<K, V, A>
    where\n K: Ord,\n A: Allocator + Clone,

    source§

    fn extend<T>(&mut self, iter: T)
    where\n T: IntoIterator<Item = (K, V)>,

    Extends a collection with the contents of an iterator. Read more
    source§

    fn extend_one(&mut self, _: (K, V))

    🔬This is a nightly-only experimental API. (extend_one)
    Extends a collection with exactly one element.
    source§

    fn extend_reserve(&mut self, additional: usize)

    🔬This is a nightly-only experimental API. (extend_one)
    Reserves capacity in a collection for the given number of additional elements. Read more
    ","Extend<(K, V)>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.56.0 · source§

    impl<K, V, const N: usize> From<[(K, V); N]> for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn from(arr: [(K, V); N]) -> BTreeMap<K, V>

    Converts a [(K, V); N] into a BTreeMap<(K, V)>.

    \n\n
    use std::collections::BTreeMap;\n\nlet map1 = BTreeMap::from([(1, 2), (3, 4)]);\nlet map2: BTreeMap<_, _> = [(1, 2), (3, 4)].into();\nassert_eq!(map1, map2);
    \n
    ","From<[(K, V); N]>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V> FromIterator<(K, V)> for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn from_iter<T>(iter: T) -> BTreeMap<K, V>
    where\n T: IntoIterator<Item = (K, V)>,

    Creates a value from an iterator. Read more
    ","FromIterator<(K, V)>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> Hash for BTreeMap<K, V, A>
    where\n K: Hash,\n V: Hash,\n A: Allocator + Clone,

    source§

    fn hash<H>(&self, state: &mut H)
    where\n H: Hasher,

    Feeds this value into the given Hasher. Read more
    1.3.0 · source§

    fn hash_slice<H>(data: &[Self], state: &mut H)
    where\n H: Hasher,\n Self: Sized,

    Feeds a slice of this type into the given Hasher. Read more
    ","Hash","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, Q, V, A> Index<&Q> for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    source§

    fn index(&self, key: &Q) -> &V

    Returns a reference to the value corresponding to the supplied key.

    \n
    §Panics
    \n

    Panics if the key is not present in the BTreeMap.

    \n
    §

    type Output = V

    The returned type after indexing.
    ","Index<&Q>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>
    where\n K: IntoDeserializer<'de, E> + Eq + Ord,\n V: IntoDeserializer<'de, E>,\n E: Error,

    §

    type Deserializer = MapDeserializer<'de, <BTreeMap<K, V> as IntoIterator>::IntoIter, E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(\n self\n) -> <BTreeMap<K, V> as IntoDeserializer<'de, E>>::Deserializer

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> IntoIterator for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    source§

    fn into_iter(self) -> IntoIter<K, V, A> ⓘ

    Gets an owning iterator over the entries of the map, sorted by key.

    \n
    §

    type Item = (K, V)

    The type of the elements being iterated over.
    §

    type IntoIter = IntoIter<K, V, A>

    Which kind of iterator are we turning this into?
    ","IntoIterator","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<K, V> Merge for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn merge(&mut self, other: BTreeMap<K, V>)

    Merge another object of the same type onto self.
    source§

    fn is_empty(&self) -> bool

    Returns whether the structure is considered empty.
    source§

    fn take(&mut self) -> Option<Self>

    Take the value, replacing it with the default value.
    ","Merge","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> Ord for BTreeMap<K, V, A>
    where\n K: Ord,\n V: Ord,\n A: Allocator + Clone,

    source§

    fn cmp(&self, other: &BTreeMap<K, V, A>) -> 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","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> PartialEq for BTreeMap<K, V, A>
    where\n K: PartialEq,\n V: PartialEq,\n A: Allocator + Clone,

    source§

    fn eq(&self, other: &BTreeMap<K, V, A>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> PartialOrd for BTreeMap<K, V, A>
    where\n K: PartialOrd,\n V: PartialOrd,\n A: Allocator + Clone,

    source§

    fn partial_cmp(&self, other: &BTreeMap<K, V, A>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    source§

    impl<K, V> Serialize for BTreeMap<K, V>
    where\n K: Serialize,\n V: Serialize,

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.0.0 · source§

    impl<K, V, A> Eq for BTreeMap<K, V, A>
    where\n K: Eq,\n V: Eq,\n A: Allocator + Clone,

    ","Eq","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"],["
    1.64.0 · source§

    impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>

    ","UnwindSafe","bdk_chain::bitcoin::psbt::SigningKeysMap","bdk_chain::bitcoin::psbt::SigningErrors"]], -"bdk_wallet":[["
    source§

    impl<K, V> BTreeMap<K, V>

    1.0.0 (const: 1.66.0) · source

    pub const fn new() -> BTreeMap<K, V>

    Makes a new, empty BTreeMap.

    \n

    Does not allocate anything on its own.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\n\n// entries can now be inserted into the empty map\nmap.insert(1, \"a\");
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn iter(&self) -> Iter<'_, K, V>

    Gets an iterator over the entries of the map, sorted by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(3, \"c\");\nmap.insert(2, \"b\");\nmap.insert(1, \"a\");\n\nfor (key, value) in map.iter() {\n    println!(\"{key}: {value}\");\n}\n\nlet (first_key, first_value) = map.iter().next().unwrap();\nassert_eq!((*first_key, *first_value), (1, \"a\"));
    \n
    1.0.0 · source

    pub fn iter_mut(&mut self) -> IterMut<'_, K, V>

    Gets a mutable iterator over the entries of the map, sorted by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::from([\n   (\"a\", 1),\n   (\"b\", 2),\n   (\"c\", 3),\n]);\n\n// add 10 to the value if the key isn't \"a\"\nfor (key, value) in map.iter_mut() {\n    if key != &\"a\" {\n        *value += 10;\n    }\n}
    \n
    1.0.0 · source

    pub fn keys(&self) -> Keys<'_, K, V>

    Gets an iterator over the keys of the map, in sorted order.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(2, \"b\");\na.insert(1, \"a\");\n\nlet keys: Vec<_> = a.keys().cloned().collect();\nassert_eq!(keys, [1, 2]);
    \n
    1.0.0 · source

    pub fn values(&self) -> Values<'_, K, V>

    Gets an iterator over the values of the map, in order by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"hello\");\na.insert(2, \"goodbye\");\n\nlet values: Vec<&str> = a.values().cloned().collect();\nassert_eq!(values, [\"hello\", \"goodbye\"]);
    \n
    1.10.0 · source

    pub fn values_mut(&mut self) -> ValuesMut<'_, K, V>

    Gets a mutable iterator over the values of the map, in order by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, String::from(\"hello\"));\na.insert(2, String::from(\"goodbye\"));\n\nfor value in a.values_mut() {\n    value.push_str(\"!\");\n}\n\nlet values: Vec<String> = a.values().cloned().collect();\nassert_eq!(values, [String::from(\"hello!\"),\n                    String::from(\"goodbye!\")]);
    \n
    1.0.0 (const: unstable) · source

    pub fn len(&self) -> usize

    Returns the number of elements in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\nassert_eq!(a.len(), 0);\na.insert(1, \"a\");\nassert_eq!(a.len(), 1);
    \n
    1.0.0 (const: unstable) · source

    pub fn is_empty(&self) -> bool

    Returns true if the map contains no elements.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\nassert!(a.is_empty());\na.insert(1, \"a\");\nassert!(!a.is_empty());
    \n
    source

    pub fn lower_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a Cursor pointing at the gap before the smallest key\ngreater than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap before the smallest key greater than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap before the smallest key greater than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap before the smallest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet cursor = map.lower_bound(Bound::Included(&2));\nassert_eq!(cursor.peek_prev(), Some((&1, &\"a\")));\nassert_eq!(cursor.peek_next(), Some((&2, &\"b\")));\n\nlet cursor = map.lower_bound(Bound::Excluded(&2));\nassert_eq!(cursor.peek_prev(), Some((&2, &\"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &\"c\")));\n\nlet cursor = map.lower_bound(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), None);\nassert_eq!(cursor.peek_next(), Some((&1, &\"a\")));
    \n
    source

    pub fn lower_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a CursorMut pointing at the gap before the smallest key\ngreater than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap before the smallest key greater than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap before the smallest key greater than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap before the smallest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet mut map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet mut cursor = map.lower_bound_mut(Bound::Included(&2));\nassert_eq!(cursor.peek_prev(), Some((&1, &mut \"a\")));\nassert_eq!(cursor.peek_next(), Some((&2, &mut \"b\")));\n\nlet mut cursor = map.lower_bound_mut(Bound::Excluded(&2));\nassert_eq!(cursor.peek_prev(), Some((&2, &mut \"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &mut \"c\")));\n\nlet mut cursor = map.lower_bound_mut(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), None);\nassert_eq!(cursor.peek_next(), Some((&1, &mut \"a\")));
    \n
    source

    pub fn upper_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a Cursor pointing at the gap after the greatest key\nsmaller than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap after the greatest key smaller than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap after the greatest key smaller than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap after the greatest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet cursor = map.upper_bound(Bound::Included(&3));\nassert_eq!(cursor.peek_prev(), Some((&3, &\"c\")));\nassert_eq!(cursor.peek_next(), Some((&4, &\"d\")));\n\nlet cursor = map.upper_bound(Bound::Excluded(&3));\nassert_eq!(cursor.peek_prev(), Some((&2, &\"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &\"c\")));\n\nlet cursor = map.upper_bound(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), Some((&4, &\"d\")));\nassert_eq!(cursor.peek_next(), None);
    \n
    source

    pub fn upper_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a CursorMut pointing at the gap after the greatest key\nsmaller than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap after the greatest key smaller than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap after the greatest key smaller than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap after the greatest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet mut map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet mut cursor = map.upper_bound_mut(Bound::Included(&3));\nassert_eq!(cursor.peek_prev(), Some((&3, &mut \"c\")));\nassert_eq!(cursor.peek_next(), Some((&4, &mut \"d\")));\n\nlet mut cursor = map.upper_bound_mut(Bound::Excluded(&3));\nassert_eq!(cursor.peek_prev(), Some((&2, &mut \"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &mut \"c\")));\n\nlet mut cursor = map.upper_bound_mut(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), Some((&4, &mut \"d\")));\nassert_eq!(cursor.peek_next(), None);
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn clear(&mut self)

    Clears the map, removing all elements.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.clear();\nassert!(a.is_empty());
    \n
    source

    pub const fn new_in(alloc: A) -> BTreeMap<K, V, A>

    🔬This is a nightly-only experimental API. (btreemap_alloc)

    Makes a new empty BTreeMap with a reasonable choice for B.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\nuse std::alloc::Global;\n\nlet mut map = BTreeMap::new_in(Global);\n\n// entries can now be inserted into the empty map\nmap.insert(1, \"a\");
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn get<Q>(&self, key: &Q) -> Option<&V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns a reference to the value corresponding to the key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.get(&1), Some(&\"a\"));\nassert_eq!(map.get(&2), None);
    \n
    1.40.0 · source

    pub fn get_key_value<Q>(&self, k: &Q) -> Option<(&K, &V)>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns the key-value pair corresponding to the supplied key.

    \n

    The supplied key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.get_key_value(&1), Some((&1, &\"a\")));\nassert_eq!(map.get_key_value(&2), None);
    \n
    1.66.0 · source

    pub fn first_key_value(&self) -> Option<(&K, &V)>
    where\n K: Ord,

    Returns the first key-value pair in the map.\nThe key in this pair is the minimum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.first_key_value(), None);\nmap.insert(1, \"b\");\nmap.insert(2, \"a\");\nassert_eq!(map.first_key_value(), Some((&1, &\"b\")));
    \n
    1.66.0 · source

    pub fn first_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>>
    where\n K: Ord,

    Returns the first entry in the map for in-place manipulation.\nThe key of this entry is the minimum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nif let Some(mut entry) = map.first_entry() {\n    if *entry.key() > 0 {\n        entry.insert(\"first\");\n    }\n}\nassert_eq!(*map.get(&1).unwrap(), \"first\");\nassert_eq!(*map.get(&2).unwrap(), \"b\");
    \n
    1.66.0 · source

    pub fn pop_first(&mut self) -> Option<(K, V)>
    where\n K: Ord,

    Removes and returns the first element in the map.\nThe key of this element is the minimum key that was in the map.

    \n
    §Examples
    \n

    Draining elements in ascending order, while keeping a usable map each iteration.

    \n\n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nwhile let Some((key, _val)) = map.pop_first() {\n    assert!(map.iter().all(|(k, _v)| *k > key));\n}\nassert!(map.is_empty());
    \n
    1.66.0 · source

    pub fn last_key_value(&self) -> Option<(&K, &V)>
    where\n K: Ord,

    Returns the last key-value pair in the map.\nThe key in this pair is the maximum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"b\");\nmap.insert(2, \"a\");\nassert_eq!(map.last_key_value(), Some((&2, &\"a\")));
    \n
    1.66.0 · source

    pub fn last_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>>
    where\n K: Ord,

    Returns the last entry in the map for in-place manipulation.\nThe key of this entry is the maximum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nif let Some(mut entry) = map.last_entry() {\n    if *entry.key() > 0 {\n        entry.insert(\"last\");\n    }\n}\nassert_eq!(*map.get(&1).unwrap(), \"a\");\nassert_eq!(*map.get(&2).unwrap(), \"last\");
    \n
    1.66.0 · source

    pub fn pop_last(&mut self) -> Option<(K, V)>
    where\n K: Ord,

    Removes and returns the last element in the map.\nThe key of this element is the maximum key that was in the map.

    \n
    §Examples
    \n

    Draining elements in descending order, while keeping a usable map each iteration.

    \n\n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nwhile let Some((key, _val)) = map.pop_last() {\n    assert!(map.iter().all(|(k, _v)| *k < key));\n}\nassert!(map.is_empty());
    \n
    1.0.0 · source

    pub fn contains_key<Q>(&self, key: &Q) -> bool
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns true if the map contains a value for the specified key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.contains_key(&1), true);\nassert_eq!(map.contains_key(&2), false);
    \n
    1.0.0 · source

    pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns a mutable reference to the value corresponding to the key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nif let Some(x) = map.get_mut(&1) {\n    *x = \"b\";\n}\nassert_eq!(map[&1], \"b\");
    \n
    1.0.0 · source

    pub fn insert(&mut self, key: K, value: V) -> Option<V>
    where\n K: Ord,

    Inserts a key-value pair into the map.

    \n

    If the map did not have this key present, None is returned.

    \n

    If the map did have this key present, the value is updated, and the old\nvalue is returned. The key is not updated, though; this matters for\ntypes that can be == without being identical. See the module-level\ndocumentation for more.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.insert(37, \"a\"), None);\nassert_eq!(map.is_empty(), false);\n\nmap.insert(37, \"b\");\nassert_eq!(map.insert(37, \"c\"), Some(\"b\"));\nassert_eq!(map[&37], \"c\");
    \n
    source

    pub fn try_insert(\n &mut self,\n key: K,\n value: V\n) -> Result<&mut V, OccupiedError<'_, K, V, A>>
    where\n K: Ord,

    🔬This is a nightly-only experimental API. (map_try_insert)

    Tries to insert a key-value pair into the map, and returns\na mutable reference to the value in the entry.

    \n

    If the map already had this key present, nothing is updated, and\nan error containing the occupied entry and the value is returned.

    \n
    §Examples
    \n
    #![feature(map_try_insert)]\n\nuse std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.try_insert(37, \"a\").unwrap(), &\"a\");\n\nlet err = map.try_insert(37, \"b\").unwrap_err();\nassert_eq!(err.entry.key(), &37);\nassert_eq!(err.entry.get(), &\"a\");\nassert_eq!(err.value, \"b\");
    \n
    1.0.0 · source

    pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Removes a key from the map, returning the value at the key if the key\nwas previously in the map.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.remove(&1), Some(\"a\"));\nassert_eq!(map.remove(&1), None);
    \n
    1.45.0 · source

    pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Removes a key from the map, returning the stored key and value if the key\nwas previously in the map.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.remove_entry(&1), Some((1, \"a\")));\nassert_eq!(map.remove_entry(&1), None);
    \n
    1.53.0 · source

    pub fn retain<F>(&mut self, f: F)
    where\n K: Ord,\n F: FnMut(&K, &mut V) -> bool,

    Retains only the elements specified by the predicate.

    \n

    In other words, remove all pairs (k, v) for which f(&k, &mut v) returns false.\nThe elements are visited in ascending key order.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x*10)).collect();\n// Keep only the elements with even-numbered keys.\nmap.retain(|&k, _| k % 2 == 0);\nassert!(map.into_iter().eq(vec![(0, 0), (2, 20), (4, 40), (6, 60)]));
    \n
    1.11.0 · source

    pub fn append(&mut self, other: &mut BTreeMap<K, V, A>)
    where\n K: Ord,\n A: Clone,

    Moves all elements from other into self, leaving other empty.

    \n

    If a key from other is already present in self, the respective\nvalue from self will be overwritten with the respective value from other.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.insert(2, \"b\");\na.insert(3, \"c\"); // Note: Key (3) also present in b.\n\nlet mut b = BTreeMap::new();\nb.insert(3, \"d\"); // Note: Key (3) also present in a.\nb.insert(4, \"e\");\nb.insert(5, \"f\");\n\na.append(&mut b);\n\nassert_eq!(a.len(), 5);\nassert_eq!(b.len(), 0);\n\nassert_eq!(a[&1], \"a\");\nassert_eq!(a[&2], \"b\");\nassert_eq!(a[&3], \"d\"); // Note: \"c\" has been overwritten.\nassert_eq!(a[&4], \"e\");\nassert_eq!(a[&5], \"f\");
    \n
    1.17.0 · source

    pub fn range<T, R>(&self, range: R) -> Range<'_, K, V>
    where\n T: Ord + ?Sized,\n K: Borrow<T> + Ord,\n R: RangeBounds<T>,

    Constructs a double-ended iterator over a sub-range of elements in the map.\nThe simplest way is to use the range syntax min..max, thus range(min..max) will\nyield elements from min (inclusive) to max (exclusive).\nThe range may also be entered as (Bound<T>, Bound<T>), so for example\nrange((Excluded(4), Included(10))) will yield a left-exclusive, right-inclusive\nrange from 4 to 10.

    \n
    §Panics
    \n

    Panics if range start > end.\nPanics if range start == end and both bounds are Excluded.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\nuse std::ops::Bound::Included;\n\nlet mut map = BTreeMap::new();\nmap.insert(3, \"a\");\nmap.insert(5, \"b\");\nmap.insert(8, \"c\");\nfor (&key, &value) in map.range((Included(&4), Included(&8))) {\n    println!(\"{key}: {value}\");\n}\nassert_eq!(Some((&5, &\"b\")), map.range(4..).next());
    \n
    1.17.0 · source

    pub fn range_mut<T, R>(&mut self, range: R) -> RangeMut<'_, K, V>
    where\n T: Ord + ?Sized,\n K: Borrow<T> + Ord,\n R: RangeBounds<T>,

    Constructs a mutable double-ended iterator over a sub-range of elements in the map.\nThe simplest way is to use the range syntax min..max, thus range(min..max) will\nyield elements from min (inclusive) to max (exclusive).\nThe range may also be entered as (Bound<T>, Bound<T>), so for example\nrange((Excluded(4), Included(10))) will yield a left-exclusive, right-inclusive\nrange from 4 to 10.

    \n
    §Panics
    \n

    Panics if range start > end.\nPanics if range start == end and both bounds are Excluded.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map: BTreeMap<&str, i32> =\n    [(\"Alice\", 0), (\"Bob\", 0), (\"Carol\", 0), (\"Cheryl\", 0)].into();\nfor (_, balance) in map.range_mut(\"B\"..\"Cheryl\") {\n    *balance += 100;\n}\nfor (name, balance) in &map {\n    println!(\"{name} => {balance}\");\n}
    \n
    1.0.0 · source

    pub fn entry(&mut self, key: K) -> Entry<'_, K, V, A>
    where\n K: Ord,

    Gets the given key’s corresponding entry in the map for in-place manipulation.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut count: BTreeMap<&str, usize> = BTreeMap::new();\n\n// count the number of occurrences of letters in the vec\nfor x in [\"a\", \"b\", \"a\", \"c\", \"a\", \"b\"] {\n    count.entry(x).and_modify(|curr| *curr += 1).or_insert(1);\n}\n\nassert_eq!(count[\"a\"], 3);\nassert_eq!(count[\"b\"], 2);\nassert_eq!(count[\"c\"], 1);
    \n
    1.11.0 · source

    pub fn split_off<Q>(&mut self, key: &Q) -> BTreeMap<K, V, A>
    where\n Q: Ord + ?Sized,\n K: Borrow<Q> + Ord,\n A: Clone,

    Splits the collection into two at the given key. Returns everything after the given key,\nincluding the key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.insert(2, \"b\");\na.insert(3, \"c\");\na.insert(17, \"d\");\na.insert(41, \"e\");\n\nlet b = a.split_off(&3);\n\nassert_eq!(a.len(), 2);\nassert_eq!(b.len(), 3);\n\nassert_eq!(a[&1], \"a\");\nassert_eq!(a[&2], \"b\");\n\nassert_eq!(b[&3], \"c\");\nassert_eq!(b[&17], \"d\");\nassert_eq!(b[&41], \"e\");
    \n
    source

    pub fn extract_if<F>(&mut self, pred: F) -> ExtractIf<'_, K, V, F, A>
    where\n K: Ord,\n F: FnMut(&K, &mut V) -> bool,

    🔬This is a nightly-only experimental API. (btree_extract_if)

    Creates an iterator that visits all elements (key-value pairs) in\nascending key order and uses a closure to determine if an element should\nbe removed. If the closure returns true, the element is removed from\nthe map and yielded. If the closure returns false, or panics, the\nelement remains in the map and will not be yielded.

    \n

    The iterator also lets you mutate the value of each element in the\nclosure, regardless of whether you choose to keep or remove it.

    \n

    If the returned ExtractIf is not exhausted, e.g. because it is dropped without iterating\nor the iteration short-circuits, then the remaining elements will be retained.\nUse retain with a negated predicate if you do not need the returned iterator.

    \n
    §Examples
    \n

    Splitting a map into even and odd keys, reusing the original map:

    \n\n
    #![feature(btree_extract_if)]\nuse std::collections::BTreeMap;\n\nlet mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x)).collect();\nlet evens: BTreeMap<_, _> = map.extract_if(|k, _v| k % 2 == 0).collect();\nlet odds = map;\nassert_eq!(evens.keys().copied().collect::<Vec<_>>(), [0, 2, 4, 6]);\nassert_eq!(odds.keys().copied().collect::<Vec<_>>(), [1, 3, 5, 7]);
    \n
    1.54.0 · source

    pub fn into_keys(self) -> IntoKeys<K, V, A>

    Creates a consuming iterator visiting all the keys, in sorted order.\nThe map cannot be used after calling this.\nThe iterator element type is K.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(2, \"b\");\na.insert(1, \"a\");\n\nlet keys: Vec<i32> = a.into_keys().collect();\nassert_eq!(keys, [1, 2]);
    \n
    1.54.0 · source

    pub fn into_values(self) -> IntoValues<K, V, A>

    Creates a consuming iterator visiting all the values, in order by key.\nThe map cannot be used after calling this.\nThe iterator element type is V.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"hello\");\na.insert(2, \"goodbye\");\n\nlet values: Vec<&str> = a.into_values().collect();\nassert_eq!(values, [\"hello\", \"goodbye\"]);
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Clone for BTreeMap<K, V, A>
    where\n K: Clone,\n V: Clone,\n A: Allocator + Clone,

    source§

    fn clone(&self) -> BTreeMap<K, V, A>

    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","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Debug for BTreeMap<K, V, A>
    where\n K: Debug,\n V: Debug,\n A: Allocator + Clone,

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V> Default for BTreeMap<K, V>

    source§

    fn default() -> BTreeMap<K, V>

    Creates an empty BTreeMap.

    \n
    ","Default","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>
    where\n K: Deserialize<'de> + Ord,\n V: Deserialize<'de>,

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<BTreeMap<K, V>, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.7.0 · source§

    impl<K, V, A> Drop for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    source§

    fn drop(&mut self)

    Executes the destructor for this type. Read more
    ","Drop","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.2.0 · source§

    impl<'a, K, V, A> Extend<(&'a K, &'a V)> for BTreeMap<K, V, A>
    where\n K: Ord + Copy,\n V: Copy,\n A: Allocator + Clone,

    source§

    fn extend<I>(&mut self, iter: I)
    where\n I: IntoIterator<Item = (&'a K, &'a V)>,

    Extends a collection with the contents of an iterator. Read more
    source§

    fn extend_one(&mut self, _: (&'a K, &'a V))

    🔬This is a nightly-only experimental API. (extend_one)
    Extends a collection with exactly one element.
    source§

    fn extend_reserve(&mut self, additional: usize)

    🔬This is a nightly-only experimental API. (extend_one)
    Reserves capacity in a collection for the given number of additional elements. Read more
    ","Extend<(&'a K, &'a V)>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Extend<(K, V)> for BTreeMap<K, V, A>
    where\n K: Ord,\n A: Allocator + Clone,

    source§

    fn extend<T>(&mut self, iter: T)
    where\n T: IntoIterator<Item = (K, V)>,

    Extends a collection with the contents of an iterator. Read more
    source§

    fn extend_one(&mut self, _: (K, V))

    🔬This is a nightly-only experimental API. (extend_one)
    Extends a collection with exactly one element.
    source§

    fn extend_reserve(&mut self, additional: usize)

    🔬This is a nightly-only experimental API. (extend_one)
    Reserves capacity in a collection for the given number of additional elements. Read more
    ","Extend<(K, V)>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.56.0 · source§

    impl<K, V, const N: usize> From<[(K, V); N]> for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn from(arr: [(K, V); N]) -> BTreeMap<K, V>

    Converts a [(K, V); N] into a BTreeMap<(K, V)>.

    \n\n
    use std::collections::BTreeMap;\n\nlet map1 = BTreeMap::from([(1, 2), (3, 4)]);\nlet map2: BTreeMap<_, _> = [(1, 2), (3, 4)].into();\nassert_eq!(map1, map2);
    \n
    ","From<[(K, V); N]>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V> FromIterator<(K, V)> for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn from_iter<T>(iter: T) -> BTreeMap<K, V>
    where\n T: IntoIterator<Item = (K, V)>,

    Creates a value from an iterator. Read more
    ","FromIterator<(K, V)>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Hash for BTreeMap<K, V, A>
    where\n K: Hash,\n V: Hash,\n A: Allocator + Clone,

    source§

    fn hash<H>(&self, state: &mut H)
    where\n H: Hasher,

    Feeds this value into the given Hasher. Read more
    1.3.0 · source§

    fn hash_slice<H>(data: &[Self], state: &mut H)
    where\n H: Hasher,\n Self: Sized,

    Feeds a slice of this type into the given Hasher. Read more
    ","Hash","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, Q, V, A> Index<&Q> for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    source§

    fn index(&self, key: &Q) -> &V

    Returns a reference to the value corresponding to the supplied key.

    \n
    §Panics
    \n

    Panics if the key is not present in the BTreeMap.

    \n
    §

    type Output = V

    The returned type after indexing.
    ","Index<&Q>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    §

    impl IntoAssets for BTreeMap<DescriptorPublicKey, DescriptorSecretKey>

    §

    fn into_assets(self) -> Assets

    Convert self into a Assets struct
    ","IntoAssets","bdk_wallet::keys::KeyMap"],["
    source§

    impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>
    where\n K: IntoDeserializer<'de, E> + Eq + Ord,\n V: IntoDeserializer<'de, E>,\n E: Error,

    §

    type Deserializer = MapDeserializer<'de, <BTreeMap<K, V> as IntoIterator>::IntoIter, E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(\n self\n) -> <BTreeMap<K, V> as IntoDeserializer<'de, E>>::Deserializer

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> IntoIterator for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    source§

    fn into_iter(self) -> IntoIter<K, V, A>

    Gets an owning iterator over the entries of the map, sorted by key.

    \n
    §

    type Item = (K, V)

    The type of the elements being iterated over.
    §

    type IntoIter = IntoIter<K, V, A>

    Which kind of iterator are we turning this into?
    ","IntoIterator","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V> Merge for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn merge(&mut self, other: BTreeMap<K, V>)

    Merge another object of the same type onto self.
    source§

    fn is_empty(&self) -> bool

    Returns whether the structure is considered empty.
    source§

    fn take(&mut self) -> Option<Self>

    Take the value, replacing it with the default value.
    ","Merge","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Ord for BTreeMap<K, V, A>
    where\n K: Ord,\n V: Ord,\n A: Allocator + Clone,

    source§

    fn cmp(&self, other: &BTreeMap<K, V, A>) -> 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","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> PartialEq for BTreeMap<K, V, A>
    where\n K: PartialEq,\n V: PartialEq,\n A: Allocator + Clone,

    source§

    fn eq(&self, other: &BTreeMap<K, V, A>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> PartialOrd for BTreeMap<K, V, A>
    where\n K: PartialOrd,\n V: PartialOrd,\n A: Allocator + Clone,

    source§

    fn partial_cmp(&self, other: &BTreeMap<K, V, A>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V> Serialize for BTreeMap<K, V>
    where\n K: Serialize,\n V: Serialize,

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Eq for BTreeMap<K, V, A>
    where\n K: Eq,\n V: Eq,\n A: Allocator + Clone,

    ","Eq","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.64.0 · source§

    impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>

    ","UnwindSafe","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"]] +"bdk_wallet":[["
    source§

    impl<K, V> BTreeMap<K, V>

    1.0.0 (const: 1.66.0) · source

    pub const fn new() -> BTreeMap<K, V>

    Makes a new, empty BTreeMap.

    \n

    Does not allocate anything on its own.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\n\n// entries can now be inserted into the empty map\nmap.insert(1, \"a\");
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn iter(&self) -> Iter<'_, K, V>

    Gets an iterator over the entries of the map, sorted by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(3, \"c\");\nmap.insert(2, \"b\");\nmap.insert(1, \"a\");\n\nfor (key, value) in map.iter() {\n    println!(\"{key}: {value}\");\n}\n\nlet (first_key, first_value) = map.iter().next().unwrap();\nassert_eq!((*first_key, *first_value), (1, \"a\"));
    \n
    1.0.0 · source

    pub fn iter_mut(&mut self) -> IterMut<'_, K, V>

    Gets a mutable iterator over the entries of the map, sorted by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::from([\n   (\"a\", 1),\n   (\"b\", 2),\n   (\"c\", 3),\n]);\n\n// add 10 to the value if the key isn't \"a\"\nfor (key, value) in map.iter_mut() {\n    if key != &\"a\" {\n        *value += 10;\n    }\n}
    \n
    1.0.0 · source

    pub fn keys(&self) -> Keys<'_, K, V>

    Gets an iterator over the keys of the map, in sorted order.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(2, \"b\");\na.insert(1, \"a\");\n\nlet keys: Vec<_> = a.keys().cloned().collect();\nassert_eq!(keys, [1, 2]);
    \n
    1.0.0 · source

    pub fn values(&self) -> Values<'_, K, V>

    Gets an iterator over the values of the map, in order by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"hello\");\na.insert(2, \"goodbye\");\n\nlet values: Vec<&str> = a.values().cloned().collect();\nassert_eq!(values, [\"hello\", \"goodbye\"]);
    \n
    1.10.0 · source

    pub fn values_mut(&mut self) -> ValuesMut<'_, K, V>

    Gets a mutable iterator over the values of the map, in order by key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, String::from(\"hello\"));\na.insert(2, String::from(\"goodbye\"));\n\nfor value in a.values_mut() {\n    value.push_str(\"!\");\n}\n\nlet values: Vec<String> = a.values().cloned().collect();\nassert_eq!(values, [String::from(\"hello!\"),\n                    String::from(\"goodbye!\")]);
    \n
    1.0.0 (const: unstable) · source

    pub fn len(&self) -> usize

    Returns the number of elements in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\nassert_eq!(a.len(), 0);\na.insert(1, \"a\");\nassert_eq!(a.len(), 1);
    \n
    1.0.0 (const: unstable) · source

    pub fn is_empty(&self) -> bool

    Returns true if the map contains no elements.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\nassert!(a.is_empty());\na.insert(1, \"a\");\nassert!(!a.is_empty());
    \n
    source

    pub fn lower_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a Cursor pointing at the gap before the smallest key\ngreater than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap before the smallest key greater than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap before the smallest key greater than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap before the smallest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet cursor = map.lower_bound(Bound::Included(&2));\nassert_eq!(cursor.peek_prev(), Some((&1, &\"a\")));\nassert_eq!(cursor.peek_next(), Some((&2, &\"b\")));\n\nlet cursor = map.lower_bound(Bound::Excluded(&2));\nassert_eq!(cursor.peek_prev(), Some((&2, &\"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &\"c\")));\n\nlet cursor = map.lower_bound(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), None);\nassert_eq!(cursor.peek_next(), Some((&1, &\"a\")));
    \n
    source

    pub fn lower_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a CursorMut pointing at the gap before the smallest key\ngreater than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap before the smallest key greater than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap before the smallest key greater than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap before the smallest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet mut map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet mut cursor = map.lower_bound_mut(Bound::Included(&2));\nassert_eq!(cursor.peek_prev(), Some((&1, &mut \"a\")));\nassert_eq!(cursor.peek_next(), Some((&2, &mut \"b\")));\n\nlet mut cursor = map.lower_bound_mut(Bound::Excluded(&2));\nassert_eq!(cursor.peek_prev(), Some((&2, &mut \"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &mut \"c\")));\n\nlet mut cursor = map.lower_bound_mut(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), None);\nassert_eq!(cursor.peek_next(), Some((&1, &mut \"a\")));
    \n
    source

    pub fn upper_bound<Q>(&self, bound: Bound<&Q>) -> Cursor<'_, K, V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a Cursor pointing at the gap after the greatest key\nsmaller than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap after the greatest key smaller than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap after the greatest key smaller than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap after the greatest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet cursor = map.upper_bound(Bound::Included(&3));\nassert_eq!(cursor.peek_prev(), Some((&3, &\"c\")));\nassert_eq!(cursor.peek_next(), Some((&4, &\"d\")));\n\nlet cursor = map.upper_bound(Bound::Excluded(&3));\nassert_eq!(cursor.peek_prev(), Some((&2, &\"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &\"c\")));\n\nlet cursor = map.upper_bound(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), Some((&4, &\"d\")));\nassert_eq!(cursor.peek_next(), None);
    \n
    source

    pub fn upper_bound_mut<Q>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, K, V, A>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    🔬This is a nightly-only experimental API. (btree_cursors)

    Returns a CursorMut pointing at the gap after the greatest key\nsmaller than the given bound.

    \n

    Passing Bound::Included(x) will return a cursor pointing to the\ngap after the greatest key smaller than or equal to x.

    \n

    Passing Bound::Excluded(x) will return a cursor pointing to the\ngap after the greatest key smaller than x.

    \n

    Passing Bound::Unbounded will return a cursor pointing to the\ngap after the greatest key in the map.

    \n
    §Examples
    \n
    #![feature(btree_cursors)]\n\nuse std::collections::BTreeMap;\nuse std::ops::Bound;\n\nlet mut map = BTreeMap::from([\n    (1, \"a\"),\n    (2, \"b\"),\n    (3, \"c\"),\n    (4, \"d\"),\n]);\n\nlet mut cursor = map.upper_bound_mut(Bound::Included(&3));\nassert_eq!(cursor.peek_prev(), Some((&3, &mut \"c\")));\nassert_eq!(cursor.peek_next(), Some((&4, &mut \"d\")));\n\nlet mut cursor = map.upper_bound_mut(Bound::Excluded(&3));\nassert_eq!(cursor.peek_prev(), Some((&2, &mut \"b\")));\nassert_eq!(cursor.peek_next(), Some((&3, &mut \"c\")));\n\nlet mut cursor = map.upper_bound_mut(Bound::Unbounded);\nassert_eq!(cursor.peek_prev(), Some((&4, &mut \"d\")));\nassert_eq!(cursor.peek_next(), None);
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn clear(&mut self)

    Clears the map, removing all elements.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.clear();\nassert!(a.is_empty());
    \n
    source

    pub const fn new_in(alloc: A) -> BTreeMap<K, V, A>

    🔬This is a nightly-only experimental API. (btreemap_alloc)

    Makes a new empty BTreeMap with a reasonable choice for B.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\nuse std::alloc::Global;\n\nlet mut map = BTreeMap::new_in(Global);\n\n// entries can now be inserted into the empty map\nmap.insert(1, \"a\");
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V, A> BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    1.0.0 · source

    pub fn get<Q>(&self, key: &Q) -> Option<&V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns a reference to the value corresponding to the key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.get(&1), Some(&\"a\"));\nassert_eq!(map.get(&2), None);
    \n
    1.40.0 · source

    pub fn get_key_value<Q>(&self, k: &Q) -> Option<(&K, &V)>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns the key-value pair corresponding to the supplied key.

    \n

    The supplied key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.get_key_value(&1), Some((&1, &\"a\")));\nassert_eq!(map.get_key_value(&2), None);
    \n
    1.66.0 · source

    pub fn first_key_value(&self) -> Option<(&K, &V)>
    where\n K: Ord,

    Returns the first key-value pair in the map.\nThe key in this pair is the minimum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.first_key_value(), None);\nmap.insert(1, \"b\");\nmap.insert(2, \"a\");\nassert_eq!(map.first_key_value(), Some((&1, &\"b\")));
    \n
    1.66.0 · source

    pub fn first_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>>
    where\n K: Ord,

    Returns the first entry in the map for in-place manipulation.\nThe key of this entry is the minimum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nif let Some(mut entry) = map.first_entry() {\n    if *entry.key() > 0 {\n        entry.insert(\"first\");\n    }\n}\nassert_eq!(*map.get(&1).unwrap(), \"first\");\nassert_eq!(*map.get(&2).unwrap(), \"b\");
    \n
    1.66.0 · source

    pub fn pop_first(&mut self) -> Option<(K, V)>
    where\n K: Ord,

    Removes and returns the first element in the map.\nThe key of this element is the minimum key that was in the map.

    \n
    §Examples
    \n

    Draining elements in ascending order, while keeping a usable map each iteration.

    \n\n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nwhile let Some((key, _val)) = map.pop_first() {\n    assert!(map.iter().all(|(k, _v)| *k > key));\n}\nassert!(map.is_empty());
    \n
    1.66.0 · source

    pub fn last_key_value(&self) -> Option<(&K, &V)>
    where\n K: Ord,

    Returns the last key-value pair in the map.\nThe key in this pair is the maximum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"b\");\nmap.insert(2, \"a\");\nassert_eq!(map.last_key_value(), Some((&2, &\"a\")));
    \n
    1.66.0 · source

    pub fn last_entry(&mut self) -> Option<OccupiedEntry<'_, K, V, A>>
    where\n K: Ord,

    Returns the last entry in the map for in-place manipulation.\nThe key of this entry is the maximum key in the map.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nif let Some(mut entry) = map.last_entry() {\n    if *entry.key() > 0 {\n        entry.insert(\"last\");\n    }\n}\nassert_eq!(*map.get(&1).unwrap(), \"a\");\nassert_eq!(*map.get(&2).unwrap(), \"last\");
    \n
    1.66.0 · source

    pub fn pop_last(&mut self) -> Option<(K, V)>
    where\n K: Ord,

    Removes and returns the last element in the map.\nThe key of this element is the maximum key that was in the map.

    \n
    §Examples
    \n

    Draining elements in descending order, while keeping a usable map each iteration.

    \n\n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nmap.insert(2, \"b\");\nwhile let Some((key, _val)) = map.pop_last() {\n    assert!(map.iter().all(|(k, _v)| *k < key));\n}\nassert!(map.is_empty());
    \n
    1.0.0 · source

    pub fn contains_key<Q>(&self, key: &Q) -> bool
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns true if the map contains a value for the specified key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.contains_key(&1), true);\nassert_eq!(map.contains_key(&2), false);
    \n
    1.0.0 · source

    pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Returns a mutable reference to the value corresponding to the key.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nif let Some(x) = map.get_mut(&1) {\n    *x = \"b\";\n}\nassert_eq!(map[&1], \"b\");
    \n
    1.0.0 · source

    pub fn insert(&mut self, key: K, value: V) -> Option<V>
    where\n K: Ord,

    Inserts a key-value pair into the map.

    \n

    If the map did not have this key present, None is returned.

    \n

    If the map did have this key present, the value is updated, and the old\nvalue is returned. The key is not updated, though; this matters for\ntypes that can be == without being identical. See the module-level\ndocumentation for more.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.insert(37, \"a\"), None);\nassert_eq!(map.is_empty(), false);\n\nmap.insert(37, \"b\");\nassert_eq!(map.insert(37, \"c\"), Some(\"b\"));\nassert_eq!(map[&37], \"c\");
    \n
    source

    pub fn try_insert(\n &mut self,\n key: K,\n value: V\n) -> Result<&mut V, OccupiedError<'_, K, V, A>>
    where\n K: Ord,

    🔬This is a nightly-only experimental API. (map_try_insert)

    Tries to insert a key-value pair into the map, and returns\na mutable reference to the value in the entry.

    \n

    If the map already had this key present, nothing is updated, and\nan error containing the occupied entry and the value is returned.

    \n
    §Examples
    \n
    #![feature(map_try_insert)]\n\nuse std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nassert_eq!(map.try_insert(37, \"a\").unwrap(), &\"a\");\n\nlet err = map.try_insert(37, \"b\").unwrap_err();\nassert_eq!(err.entry.key(), &37);\nassert_eq!(err.entry.get(), &\"a\");\nassert_eq!(err.value, \"b\");
    \n
    1.0.0 · source

    pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Removes a key from the map, returning the value at the key if the key\nwas previously in the map.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.remove(&1), Some(\"a\"));\nassert_eq!(map.remove(&1), None);
    \n
    1.45.0 · source

    pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
    where\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    Removes a key from the map, returning the stored key and value if the key\nwas previously in the map.

    \n

    The key may be any borrowed form of the map’s key type, but the ordering\non the borrowed form must match the ordering on the key type.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map = BTreeMap::new();\nmap.insert(1, \"a\");\nassert_eq!(map.remove_entry(&1), Some((1, \"a\")));\nassert_eq!(map.remove_entry(&1), None);
    \n
    1.53.0 · source

    pub fn retain<F>(&mut self, f: F)
    where\n K: Ord,\n F: FnMut(&K, &mut V) -> bool,

    Retains only the elements specified by the predicate.

    \n

    In other words, remove all pairs (k, v) for which f(&k, &mut v) returns false.\nThe elements are visited in ascending key order.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x*10)).collect();\n// Keep only the elements with even-numbered keys.\nmap.retain(|&k, _| k % 2 == 0);\nassert!(map.into_iter().eq(vec![(0, 0), (2, 20), (4, 40), (6, 60)]));
    \n
    1.11.0 · source

    pub fn append(&mut self, other: &mut BTreeMap<K, V, A>)
    where\n K: Ord,\n A: Clone,

    Moves all elements from other into self, leaving other empty.

    \n

    If a key from other is already present in self, the respective\nvalue from self will be overwritten with the respective value from other.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.insert(2, \"b\");\na.insert(3, \"c\"); // Note: Key (3) also present in b.\n\nlet mut b = BTreeMap::new();\nb.insert(3, \"d\"); // Note: Key (3) also present in a.\nb.insert(4, \"e\");\nb.insert(5, \"f\");\n\na.append(&mut b);\n\nassert_eq!(a.len(), 5);\nassert_eq!(b.len(), 0);\n\nassert_eq!(a[&1], \"a\");\nassert_eq!(a[&2], \"b\");\nassert_eq!(a[&3], \"d\"); // Note: \"c\" has been overwritten.\nassert_eq!(a[&4], \"e\");\nassert_eq!(a[&5], \"f\");
    \n
    1.17.0 · source

    pub fn range<T, R>(&self, range: R) -> Range<'_, K, V>
    where\n T: Ord + ?Sized,\n K: Borrow<T> + Ord,\n R: RangeBounds<T>,

    Constructs a double-ended iterator over a sub-range of elements in the map.\nThe simplest way is to use the range syntax min..max, thus range(min..max) will\nyield elements from min (inclusive) to max (exclusive).\nThe range may also be entered as (Bound<T>, Bound<T>), so for example\nrange((Excluded(4), Included(10))) will yield a left-exclusive, right-inclusive\nrange from 4 to 10.

    \n
    §Panics
    \n

    Panics if range start > end.\nPanics if range start == end and both bounds are Excluded.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\nuse std::ops::Bound::Included;\n\nlet mut map = BTreeMap::new();\nmap.insert(3, \"a\");\nmap.insert(5, \"b\");\nmap.insert(8, \"c\");\nfor (&key, &value) in map.range((Included(&4), Included(&8))) {\n    println!(\"{key}: {value}\");\n}\nassert_eq!(Some((&5, &\"b\")), map.range(4..).next());
    \n
    1.17.0 · source

    pub fn range_mut<T, R>(&mut self, range: R) -> RangeMut<'_, K, V>
    where\n T: Ord + ?Sized,\n K: Borrow<T> + Ord,\n R: RangeBounds<T>,

    Constructs a mutable double-ended iterator over a sub-range of elements in the map.\nThe simplest way is to use the range syntax min..max, thus range(min..max) will\nyield elements from min (inclusive) to max (exclusive).\nThe range may also be entered as (Bound<T>, Bound<T>), so for example\nrange((Excluded(4), Included(10))) will yield a left-exclusive, right-inclusive\nrange from 4 to 10.

    \n
    §Panics
    \n

    Panics if range start > end.\nPanics if range start == end and both bounds are Excluded.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut map: BTreeMap<&str, i32> =\n    [(\"Alice\", 0), (\"Bob\", 0), (\"Carol\", 0), (\"Cheryl\", 0)].into();\nfor (_, balance) in map.range_mut(\"B\"..\"Cheryl\") {\n    *balance += 100;\n}\nfor (name, balance) in &map {\n    println!(\"{name} => {balance}\");\n}
    \n
    1.0.0 · source

    pub fn entry(&mut self, key: K) -> Entry<'_, K, V, A>
    where\n K: Ord,

    Gets the given key’s corresponding entry in the map for in-place manipulation.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut count: BTreeMap<&str, usize> = BTreeMap::new();\n\n// count the number of occurrences of letters in the vec\nfor x in [\"a\", \"b\", \"a\", \"c\", \"a\", \"b\"] {\n    count.entry(x).and_modify(|curr| *curr += 1).or_insert(1);\n}\n\nassert_eq!(count[\"a\"], 3);\nassert_eq!(count[\"b\"], 2);\nassert_eq!(count[\"c\"], 1);
    \n
    1.11.0 · source

    pub fn split_off<Q>(&mut self, key: &Q) -> BTreeMap<K, V, A>
    where\n Q: Ord + ?Sized,\n K: Borrow<Q> + Ord,\n A: Clone,

    Splits the collection into two at the given key. Returns everything after the given key,\nincluding the key.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"a\");\na.insert(2, \"b\");\na.insert(3, \"c\");\na.insert(17, \"d\");\na.insert(41, \"e\");\n\nlet b = a.split_off(&3);\n\nassert_eq!(a.len(), 2);\nassert_eq!(b.len(), 3);\n\nassert_eq!(a[&1], \"a\");\nassert_eq!(a[&2], \"b\");\n\nassert_eq!(b[&3], \"c\");\nassert_eq!(b[&17], \"d\");\nassert_eq!(b[&41], \"e\");
    \n
    source

    pub fn extract_if<F>(&mut self, pred: F) -> ExtractIf<'_, K, V, F, A>
    where\n K: Ord,\n F: FnMut(&K, &mut V) -> bool,

    🔬This is a nightly-only experimental API. (btree_extract_if)

    Creates an iterator that visits all elements (key-value pairs) in\nascending key order and uses a closure to determine if an element should\nbe removed. If the closure returns true, the element is removed from\nthe map and yielded. If the closure returns false, or panics, the\nelement remains in the map and will not be yielded.

    \n

    The iterator also lets you mutate the value of each element in the\nclosure, regardless of whether you choose to keep or remove it.

    \n

    If the returned ExtractIf is not exhausted, e.g. because it is dropped without iterating\nor the iteration short-circuits, then the remaining elements will be retained.\nUse retain with a negated predicate if you do not need the returned iterator.

    \n
    §Examples
    \n

    Splitting a map into even and odd keys, reusing the original map:

    \n\n
    #![feature(btree_extract_if)]\nuse std::collections::BTreeMap;\n\nlet mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x)).collect();\nlet evens: BTreeMap<_, _> = map.extract_if(|k, _v| k % 2 == 0).collect();\nlet odds = map;\nassert_eq!(evens.keys().copied().collect::<Vec<_>>(), [0, 2, 4, 6]);\nassert_eq!(odds.keys().copied().collect::<Vec<_>>(), [1, 3, 5, 7]);
    \n
    1.54.0 · source

    pub fn into_keys(self) -> IntoKeys<K, V, A>

    Creates a consuming iterator visiting all the keys, in sorted order.\nThe map cannot be used after calling this.\nThe iterator element type is K.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(2, \"b\");\na.insert(1, \"a\");\n\nlet keys: Vec<i32> = a.into_keys().collect();\nassert_eq!(keys, [1, 2]);
    \n
    1.54.0 · source

    pub fn into_values(self) -> IntoValues<K, V, A>

    Creates a consuming iterator visiting all the values, in order by key.\nThe map cannot be used after calling this.\nThe iterator element type is V.

    \n
    §Examples
    \n
    use std::collections::BTreeMap;\n\nlet mut a = BTreeMap::new();\na.insert(1, \"hello\");\na.insert(2, \"goodbye\");\n\nlet values: Vec<&str> = a.into_values().collect();\nassert_eq!(values, [\"hello\", \"goodbye\"]);
    \n
    ",0,"bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Clone for BTreeMap<K, V, A>
    where\n K: Clone,\n V: Clone,\n A: Allocator + Clone,

    source§

    fn clone(&self) -> BTreeMap<K, V, A>

    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","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Debug for BTreeMap<K, V, A>
    where\n K: Debug,\n V: Debug,\n A: Allocator + Clone,

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V> Default for BTreeMap<K, V>

    source§

    fn default() -> BTreeMap<K, V>

    Creates an empty BTreeMap.

    \n
    ","Default","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>
    where\n K: Deserialize<'de> + Ord,\n V: Deserialize<'de>,

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<BTreeMap<K, V>, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.7.0 · source§

    impl<K, V, A> Drop for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    source§

    fn drop(&mut self)

    Executes the destructor for this type. Read more
    ","Drop","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.2.0 · source§

    impl<'a, K, V, A> Extend<(&'a K, &'a V)> for BTreeMap<K, V, A>
    where\n K: Ord + Copy,\n V: Copy,\n A: Allocator + Clone,

    source§

    fn extend<I>(&mut self, iter: I)
    where\n I: IntoIterator<Item = (&'a K, &'a V)>,

    Extends a collection with the contents of an iterator. Read more
    source§

    fn extend_one(&mut self, _: (&'a K, &'a V))

    🔬This is a nightly-only experimental API. (extend_one)
    Extends a collection with exactly one element.
    source§

    fn extend_reserve(&mut self, additional: usize)

    🔬This is a nightly-only experimental API. (extend_one)
    Reserves capacity in a collection for the given number of additional elements. Read more
    ","Extend<(&'a K, &'a V)>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Extend<(K, V)> for BTreeMap<K, V, A>
    where\n K: Ord,\n A: Allocator + Clone,

    source§

    fn extend<T>(&mut self, iter: T)
    where\n T: IntoIterator<Item = (K, V)>,

    Extends a collection with the contents of an iterator. Read more
    source§

    fn extend_one(&mut self, _: (K, V))

    🔬This is a nightly-only experimental API. (extend_one)
    Extends a collection with exactly one element.
    source§

    fn extend_reserve(&mut self, additional: usize)

    🔬This is a nightly-only experimental API. (extend_one)
    Reserves capacity in a collection for the given number of additional elements. Read more
    ","Extend<(K, V)>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.56.0 · source§

    impl<K, V, const N: usize> From<[(K, V); N]> for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn from(arr: [(K, V); N]) -> BTreeMap<K, V>

    Converts a [(K, V); N] into a BTreeMap<(K, V)>.

    \n\n
    use std::collections::BTreeMap;\n\nlet map1 = BTreeMap::from([(1, 2), (3, 4)]);\nlet map2: BTreeMap<_, _> = [(1, 2), (3, 4)].into();\nassert_eq!(map1, map2);
    \n
    ","From<[(K, V); N]>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V> FromIterator<(K, V)> for BTreeMap<K, V>
    where\n K: Ord,

    source§

    fn from_iter<T>(iter: T) -> BTreeMap<K, V>
    where\n T: IntoIterator<Item = (K, V)>,

    Creates a value from an iterator. Read more
    ","FromIterator<(K, V)>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Hash for BTreeMap<K, V, A>
    where\n K: Hash,\n V: Hash,\n A: Allocator + Clone,

    source§

    fn hash<H>(&self, state: &mut H)
    where\n H: Hasher,

    Feeds this value into the given Hasher. Read more
    1.3.0 · source§

    fn hash_slice<H>(data: &[Self], state: &mut H)
    where\n H: Hasher,\n Self: Sized,

    Feeds a slice of this type into the given Hasher. Read more
    ","Hash","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, Q, V, A> Index<&Q> for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,\n K: Borrow<Q> + Ord,\n Q: Ord + ?Sized,

    source§

    fn index(&self, key: &Q) -> &V

    Returns a reference to the value corresponding to the supplied key.

    \n
    §Panics
    \n

    Panics if the key is not present in the BTreeMap.

    \n
    §

    type Output = V

    The returned type after indexing.
    ","Index<&Q>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    §

    impl IntoAssets for BTreeMap<DescriptorPublicKey, DescriptorSecretKey>

    §

    fn into_assets(self) -> Assets

    Convert self into a Assets struct
    ","IntoAssets","bdk_wallet::keys::KeyMap"],["
    source§

    impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>
    where\n K: IntoDeserializer<'de, E> + Eq + Ord,\n V: IntoDeserializer<'de, E>,\n E: Error,

    §

    type Deserializer = MapDeserializer<'de, <BTreeMap<K, V> as IntoIterator>::IntoIter, E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(\n self\n) -> <BTreeMap<K, V> as IntoDeserializer<'de, E>>::Deserializer

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> IntoIterator for BTreeMap<K, V, A>
    where\n A: Allocator + Clone,

    source§

    fn into_iter(self) -> IntoIter<K, V, A>

    Gets an owning iterator over the entries of the map, sorted by key.

    \n
    §

    type Item = (K, V)

    The type of the elements being iterated over.
    §

    type IntoIter = IntoIter<K, V, A>

    Which kind of iterator are we turning this into?
    ","IntoIterator","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    §

    impl<K, V> Merge for BTreeMap<K, V>
    where\n K: Ord,

    §

    fn merge(&mut self, other: BTreeMap<K, V>)

    Merge another object of the same type onto self.
    §

    fn is_empty(&self) -> bool

    Returns whether the structure is considered empty.
    §

    fn take(&mut self) -> Option<Self>

    Take the value, replacing it with the default value.
    ","Merge","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Ord for BTreeMap<K, V, A>
    where\n K: Ord,\n V: Ord,\n A: Allocator + Clone,

    source§

    fn cmp(&self, other: &BTreeMap<K, V, A>) -> 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","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> PartialEq for BTreeMap<K, V, A>
    where\n K: PartialEq,\n V: PartialEq,\n A: Allocator + Clone,

    source§

    fn eq(&self, other: &BTreeMap<K, V, A>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> PartialOrd for BTreeMap<K, V, A>
    where\n K: PartialOrd,\n V: PartialOrd,\n A: Allocator + Clone,

    source§

    fn partial_cmp(&self, other: &BTreeMap<K, V, A>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    source§

    impl<K, V> Serialize for BTreeMap<K, V>
    where\n K: Serialize,\n V: Serialize,

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.0.0 · source§

    impl<K, V, A> Eq for BTreeMap<K, V, A>
    where\n K: Eq,\n V: Eq,\n A: Allocator + Clone,

    ","Eq","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"],["
    1.64.0 · source§

    impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>

    ","UnwindSafe","bdk_wallet::descriptor::policy::ConditionMap","bdk_wallet::descriptor::policy::FoldedConditionMap","bdk_wallet::descriptor::HdKeyPaths","bdk_wallet::descriptor::TapKeyOrigins","bdk_wallet::keys::KeyMap"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/indexed_tx_graph/struct.IndexedTxGraph.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/indexed_tx_graph/struct.IndexedTxGraph.js index 78182e9876..cb7ae2fca6 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/indexed_tx_graph/struct.IndexedTxGraph.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/indexed_tx_graph/struct.IndexedTxGraph.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"example_cli":[["
    source§

    impl<A, I> AsRef<TxGraph<A>> for IndexedTxGraph<A, I>

    source§

    fn as_ref(&self) -> &TxGraph<A>

    Converts this type into a shared reference of the (usually inferred) input type.
    ","AsRef>","example_cli::KeychainTxGraph"],["
    source§

    impl<A, I> Debug for IndexedTxGraph<A, I>
    where\n A: Debug,\n I: Debug,

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","example_cli::KeychainTxGraph"],["
    source§

    impl<A, I> Default for IndexedTxGraph<A, I>
    where\n I: Default,

    source§

    fn default() -> IndexedTxGraph<A, I>

    Returns the “default value” for a type. Read more
    ","Default","example_cli::KeychainTxGraph"],["
    source§

    impl<A, I> IndexedTxGraph<A, I>
    where\n <I as Indexer>::ChangeSet: Default + Merge,\n A: for<'b> Anchor + for<'b> From<TxPosInBlock<'b>>,\n I: Indexer,

    Methods are available if the anchor (A) can be created from TxPosInBlock.

    \n
    source

    pub fn apply_block_relevant(\n &mut self,\n block: &Block,\n height: u32\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Batch insert all transactions of the given block of height, filtering out those that are\nirrelevant.

    \n

    Each inserted transaction’s anchor will be constructed using TxPosInBlock.

    \n

    Relevancy is determined by the internal Indexer::is_tx_relevant implementation of I.\nIrrelevant transactions in txs will be ignored.

    \n
    source

    pub fn apply_block(\n &mut self,\n block: Block,\n height: u32\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Batch insert all transactions of the given block of height.

    \n

    Each inserted transaction’s anchor will be constructed using TxPosInBlock.

    \n

    To only insert relevant transactions, use apply_block_relevant instead.

    \n
    ",0,"example_cli::KeychainTxGraph"],["
    source§

    impl<A, I> IndexedTxGraph<A, I>

    source

    pub fn new(index: I) -> IndexedTxGraph<A, I>

    Construct a new IndexedTxGraph with a given index.

    \n
    source

    pub fn graph(&self) -> &TxGraph<A>

    Get a reference of the internal transaction graph.

    \n
    ",0,"example_cli::KeychainTxGraph"],["
    source§

    impl<A, I> IndexedTxGraph<A, I>
    where\n A: Anchor,\n I: Indexer,

    source

    pub fn apply_changeset(\n &mut self,\n changeset: ChangeSet<A, <I as Indexer>::ChangeSet>\n)

    Applies the ChangeSet to the IndexedTxGraph.

    \n
    source

    pub fn initial_changeset(&self) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Determines the ChangeSet between self and an empty IndexedTxGraph.

    \n
    ",0,"example_cli::KeychainTxGraph"],["
    source§

    impl<A, I> IndexedTxGraph<A, I>
    where\n A: Anchor,\n I: Indexer,\n <I as Indexer>::ChangeSet: Default + Merge,

    source

    pub fn apply_update(\n &mut self,\n update: TxUpdate<A>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Apply an update directly.

    \n

    update is a tx_graph::TxUpdate<A> and the resultant changes is returned as ChangeSet.

    \n
    source

    pub fn apply_update_at(\n &mut self,\n update: TxUpdate<A>,\n seen_at: Option<u64>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Apply the given update with an optional seen_at timestamp.

    \n

    seen_at represents when the update is seen (in unix seconds). It is used to determine the\nlast_seens for all transactions in the update which have no corresponding anchor(s). The\nlast_seen value is used internally to determine precedence of conflicting unconfirmed\ntransactions (where the transaction with the lower last_seen value is omitted from the\ncanonical history).

    \n

    Not setting a seen_at value means unconfirmed transactions introduced by this update will\nnot be part of the canonical history of transactions.

    \n

    Use apply_update to have the seen_at value automatically\nset to the current time.

    \n
    source

    pub fn insert_txout(\n &mut self,\n outpoint: OutPoint,\n txout: TxOut\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Insert a floating txout of given outpoint.

    \n
    source

    pub fn insert_tx<T>(&mut self, tx: T) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Insert and index a transaction into the graph.

    \n
    source

    pub fn insert_anchor(\n &mut self,\n txid: Txid,\n anchor: A\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Insert an anchor for a given transaction.

    \n
    source

    pub fn insert_seen_at(\n &mut self,\n txid: Txid,\n seen_at: u64\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Insert a unix timestamp of when a transaction is seen in the mempool.

    \n

    This is used for transaction conflict resolution in TxGraph where the transaction with\nthe later last-seen is prioritized.

    \n
    source

    pub fn batch_insert_relevant<T>(\n &mut self,\n txs: impl IntoIterator<Item = (T, impl IntoIterator<Item = A>)>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Batch insert transactions, filtering out those that are irrelevant.

    \n

    Relevancy is determined by the Indexer::is_tx_relevant implementation of I. Irrelevant\ntransactions in txs will be ignored. txs do not need to be in topological order.

    \n
    source

    pub fn batch_insert_relevant_unconfirmed<T>(\n &mut self,\n unconfirmed_txs: impl IntoIterator<Item = (T, u64)>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Batch insert unconfirmed transactions, filtering out those that are irrelevant.

    \n

    Relevancy is determined by the internal Indexer::is_tx_relevant implementation of I.\nIrrelevant transactions in txs will be ignored.

    \n

    Items of txs are tuples containing the transaction and a last seen timestamp. The\nlast seen communicates when the transaction is last seen in the mempool which is used for\nconflict-resolution in TxGraph (refer to TxGraph::insert_seen_at for details).

    \n
    source

    pub fn batch_insert_unconfirmed<T>(\n &mut self,\n txs: impl IntoIterator<Item = (T, u64)>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Batch insert unconfirmed transactions.

    \n

    Items of txs are tuples containing the transaction and a last seen timestamp. The\nlast seen communicates when the transaction is last seen in the mempool which is used for\nconflict-resolution in TxGraph (refer to TxGraph::insert_seen_at for details).

    \n

    To filter out irrelevant transactions, use batch_insert_relevant_unconfirmed instead.

    \n
    ",0,"example_cli::KeychainTxGraph"]] +"example_cli":[["
    §

    impl<A, I> AsRef<TxGraph<A>> for IndexedTxGraph<A, I>

    §

    fn as_ref(&self) -> &TxGraph<A>

    Converts this type into a shared reference of the (usually inferred) input type.
    ","AsRef>","example_cli::KeychainTxGraph"],["
    §

    impl<A, I> Debug for IndexedTxGraph<A, I>
    where\n A: Debug,\n I: Debug,

    §

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","example_cli::KeychainTxGraph"],["
    §

    impl<A, I> Default for IndexedTxGraph<A, I>
    where\n I: Default,

    §

    fn default() -> IndexedTxGraph<A, I>

    Returns the “default value” for a type. Read more
    ","Default","example_cli::KeychainTxGraph"],["
    §

    impl<A, I> IndexedTxGraph<A, I>

    pub fn new(index: I) -> IndexedTxGraph<A, I>

    Construct a new [IndexedTxGraph] with a given index.

    \n

    pub fn graph(&self) -> &TxGraph<A>

    Get a reference of the internal transaction graph.

    \n
    ",0,"example_cli::KeychainTxGraph"],["
    §

    impl<A, I> IndexedTxGraph<A, I>
    where\n <I as Indexer>::ChangeSet: Default + Merge,\n A: for<'b> Anchor + for<'b> From<TxPosInBlock<'b>>,\n I: Indexer,

    Methods are available if the anchor (A) can be created from [TxPosInBlock].

    \n

    pub fn apply_block_relevant(\n &mut self,\n block: &Block,\n height: u32\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Batch insert all transactions of the given block of height, filtering out those that are\nirrelevant.

    \n

    Each inserted transaction’s anchor will be constructed using [TxPosInBlock].

    \n

    Relevancy is determined by the internal [Indexer::is_tx_relevant] implementation of I.\nIrrelevant transactions in txs will be ignored.

    \n

    pub fn apply_block(\n &mut self,\n block: Block,\n height: u32\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Batch insert all transactions of the given block of height.

    \n

    Each inserted transaction’s anchor will be constructed using [TxPosInBlock].

    \n

    To only insert relevant transactions, use apply_block_relevant instead.

    \n
    ",0,"example_cli::KeychainTxGraph"],["
    §

    impl<A, I> IndexedTxGraph<A, I>
    where\n A: Anchor,\n I: Indexer,

    pub fn apply_changeset(\n &mut self,\n changeset: ChangeSet<A, <I as Indexer>::ChangeSet>\n)

    Applies the [ChangeSet] to the [IndexedTxGraph].

    \n

    pub fn initial_changeset(&self) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Determines the [ChangeSet] between self and an empty [IndexedTxGraph].

    \n
    ",0,"example_cli::KeychainTxGraph"],["
    §

    impl<A, I> IndexedTxGraph<A, I>
    where\n A: Anchor,\n I: Indexer,\n <I as Indexer>::ChangeSet: Default + Merge,

    pub fn apply_update(\n &mut self,\n update: TxUpdate<A>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Apply an update directly.

    \n

    update is a [tx_graph::TxUpdate<A>] and the resultant changes is returned as [ChangeSet].

    \n

    pub fn apply_update_at(\n &mut self,\n update: TxUpdate<A>,\n seen_at: Option<u64>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Apply the given update with an optional seen_at timestamp.

    \n

    seen_at represents when the update is seen (in unix seconds). It is used to determine the\nlast_seens for all transactions in the update which have no corresponding anchor(s). The\nlast_seen value is used internally to determine precedence of conflicting unconfirmed\ntransactions (where the transaction with the lower last_seen value is omitted from the\ncanonical history).

    \n

    Not setting a seen_at value means unconfirmed transactions introduced by this update will\nnot be part of the canonical history of transactions.

    \n

    Use apply_update to have the seen_at value automatically\nset to the current time.

    \n

    pub fn insert_txout(\n &mut self,\n outpoint: OutPoint,\n txout: TxOut\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Insert a floating txout of given outpoint.

    \n

    pub fn insert_tx<T>(&mut self, tx: T) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Insert and index a transaction into the graph.

    \n

    pub fn insert_anchor(\n &mut self,\n txid: Txid,\n anchor: A\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Insert an anchor for a given transaction.

    \n

    pub fn insert_seen_at(\n &mut self,\n txid: Txid,\n seen_at: u64\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>

    Insert a unix timestamp of when a transaction is seen in the mempool.

    \n

    This is used for transaction conflict resolution in [TxGraph] where the transaction with\nthe later last-seen is prioritized.

    \n

    pub fn batch_insert_relevant<T>(\n &mut self,\n txs: impl IntoIterator<Item = (T, impl IntoIterator<Item = A>)>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Batch insert transactions, filtering out those that are irrelevant.

    \n

    Relevancy is determined by the [Indexer::is_tx_relevant] implementation of I. Irrelevant\ntransactions in txs will be ignored. txs do not need to be in topological order.

    \n

    pub fn batch_insert_relevant_unconfirmed<T>(\n &mut self,\n unconfirmed_txs: impl IntoIterator<Item = (T, u64)>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Batch insert unconfirmed transactions, filtering out those that are irrelevant.

    \n

    Relevancy is determined by the internal [Indexer::is_tx_relevant] implementation of I.\nIrrelevant transactions in txs will be ignored.

    \n

    Items of txs are tuples containing the transaction and a last seen timestamp. The\nlast seen communicates when the transaction is last seen in the mempool which is used for\nconflict-resolution in [TxGraph] (refer to [TxGraph::insert_seen_at] for details).

    \n

    pub fn batch_insert_unconfirmed<T>(\n &mut self,\n txs: impl IntoIterator<Item = (T, u64)>\n) -> ChangeSet<A, <I as Indexer>::ChangeSet>
    where\n T: Into<Arc<Transaction>>,

    Batch insert unconfirmed transactions.

    \n

    Items of txs are tuples containing the transaction and a last seen timestamp. The\nlast seen communicates when the transaction is last seen in the mempool which is used for\nconflict-resolution in [TxGraph] (refer to [TxGraph::insert_seen_at] for details).

    \n

    To filter out irrelevant transactions, use batch_insert_relevant_unconfirmed instead.

    \n
    ",0,"example_cli::KeychainTxGraph"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/tx_graph/struct.CanonicalTx.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/tx_graph/struct.CanonicalTx.js index 5d2242f6b7..81c6733b76 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/tx_graph/struct.CanonicalTx.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_chain/tx_graph/struct.CanonicalTx.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_wallet":[["
    source§

    impl<'a, T, A> Clone for CanonicalTx<'a, T, A>
    where\n T: Clone,\n A: Clone,

    source§

    fn clone(&self) -> CanonicalTx<'a, T, A>

    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","bdk_wallet::wallet::WalletTx"],["
    source§

    impl<'a, T, A> Debug for CanonicalTx<'a, T, A>
    where\n T: Debug,\n A: Debug,

    source§

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_wallet::wallet::WalletTx"],["
    source§

    impl<'a, T, A> Ord for CanonicalTx<'a, T, A>
    where\n T: Ord,\n A: Ord,

    source§

    fn cmp(&self, other: &CanonicalTx<'a, T, A>) -> 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","bdk_wallet::wallet::WalletTx"],["
    source§

    impl<'a, T, A> PartialEq for CanonicalTx<'a, T, A>
    where\n T: PartialEq,\n A: PartialEq,

    source§

    fn eq(&self, other: &CanonicalTx<'a, T, A>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_wallet::wallet::WalletTx"],["
    source§

    impl<'a, T, A> PartialOrd for CanonicalTx<'a, T, A>
    where\n T: PartialOrd,\n A: PartialOrd,

    source§

    fn partial_cmp(&self, other: &CanonicalTx<'a, T, A>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_wallet::wallet::WalletTx"],["
    source§

    impl<'a, T, A> Eq for CanonicalTx<'a, T, A>
    where\n T: Eq,\n A: Eq,

    ","Eq","bdk_wallet::wallet::WalletTx"],["
    source§

    impl<'a, T, A> StructuralPartialEq for CanonicalTx<'a, T, A>

    ","StructuralPartialEq","bdk_wallet::wallet::WalletTx"]] +"bdk_wallet":[["
    §

    impl<'a, T, A> Clone for CanonicalTx<'a, T, A>
    where\n T: Clone,\n A: Clone,

    §

    fn clone(&self) -> CanonicalTx<'a, T, A>

    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","bdk_wallet::wallet::WalletTx"],["
    §

    impl<'a, T, A> Debug for CanonicalTx<'a, T, A>
    where\n T: Debug,\n A: Debug,

    §

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_wallet::wallet::WalletTx"],["
    §

    impl<'a, T, A> Ord for CanonicalTx<'a, T, A>
    where\n T: Ord,\n A: Ord,

    §

    fn cmp(&self, other: &CanonicalTx<'a, T, A>) -> 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","bdk_wallet::wallet::WalletTx"],["
    §

    impl<'a, T, A> PartialEq for CanonicalTx<'a, T, A>
    where\n T: PartialEq,\n A: PartialEq,

    §

    fn eq(&self, other: &CanonicalTx<'a, T, A>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_wallet::wallet::WalletTx"],["
    §

    impl<'a, T, A> PartialOrd for CanonicalTx<'a, T, A>
    where\n T: PartialOrd,\n A: PartialOrd,

    §

    fn partial_cmp(&self, other: &CanonicalTx<'a, T, A>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_wallet::wallet::WalletTx"],["
    §

    impl<'a, T, A> Eq for CanonicalTx<'a, T, A>
    where\n T: Eq,\n A: Eq,

    ","Eq","bdk_wallet::wallet::WalletTx"],["
    §

    impl<'a, T, A> StructuralPartialEq for CanonicalTx<'a, T, A>

    ","StructuralPartialEq","bdk_wallet::wallet::WalletTx"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_wallet/descriptor/enum.Descriptor.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_wallet/descriptor/enum.Descriptor.js index 26dc87a4d8..2a39910dca 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_wallet/descriptor/enum.Descriptor.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/bdk_wallet/descriptor/enum.Descriptor.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_wallet":[["
    §

    impl<Pk> Clone for Descriptor<Pk>
    where\n Pk: Clone + MiniscriptKey,

    §

    fn clone(&self) -> Descriptor<Pk>

    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","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Debug for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl Descriptor<DefiniteDescriptorKey>

    pub fn derived_descriptor<C>(\n &self,\n secp: &Secp256k1<C>\n) -> Result<Descriptor<PublicKey>, ConversionError>
    where\n C: Verification,

    Convert all the public keys in the descriptor to [bitcoin::PublicKey] by deriving them or\notherwise converting them. All [bitcoin::secp256k1::XOnlyPublicKey]s are converted to by adding a\ndefault(0x02) y-coordinate.

    \n
    §Examples
    \n
    use miniscript::descriptor::{Descriptor, DescriptorPublicKey};\nuse miniscript::bitcoin::secp256k1;\nuse std::str::FromStr;\n\n// test from bip 86\nlet secp = secp256k1::Secp256k1::verification_only();\nlet descriptor = Descriptor::<DescriptorPublicKey>::from_str(\"tr(xpub6BgBgsespWvERF3LHQu6CnqdvfEvtMcQjYrcRzx53QJjSxarj2afYWcLteoGVky7D3UKDP9QyrLprQ3VCECoY49yfdDEHGCtMMj92pReUsQ/0/*)\")\n    .expect(\"Valid ranged descriptor\");\nlet result = descriptor.at_derivation_index(0).unwrap().derived_descriptor(&secp).expect(\"Non-hardened derivation\");\nassert_eq!(result.to_string(), \"tr(03cc8a4bc64d897bddc5fbc2f670f7a8ba0b386779106cf1223c6fc5d7cd6fc115)#6qm9h8ym\");
    \n
    §Errors
    \n

    This function will return an error if hardened derivation is attempted.

    \n
    ",0,"bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl Descriptor<DefiniteDescriptorKey>

    pub fn plan<P>(\n self,\n provider: &P\n) -> Result<Plan, Descriptor<DefiniteDescriptorKey>>
    where\n P: AssetProvider<DefiniteDescriptorKey>,

    Returns a plan if the provided assets are sufficient to produce a non-malleable satisfaction

    \n

    If the assets aren’t sufficient for generating a Plan, the descriptor is returned

    \n

    pub fn plan_mall<P>(\n self,\n provider: &P\n) -> Result<Plan, Descriptor<DefiniteDescriptorKey>>
    where\n P: AssetProvider<DefiniteDescriptorKey>,

    Returns a plan if the provided assets are sufficient to produce a malleable satisfaction

    \n

    If the assets aren’t sufficient for generating a Plan, the descriptor is returned

    \n
    ",0,"bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl Descriptor<DescriptorPublicKey>

    pub fn is_deriveable(&self) -> bool

    👎Deprecated: use has_wildcards instead

    Whether or not the descriptor has any wildcards

    \n

    pub fn has_wildcard(&self) -> bool

    Whether or not the descriptor has any wildcards i.e. /*.

    \n

    pub fn at_derivation_index(\n &self,\n index: u32\n) -> Result<Descriptor<DefiniteDescriptorKey>, ConversionError>

    Replaces all wildcards (i.e. /*) in the descriptor with a particular derivation index,\nturning it into a definite descriptor.

    \n
    §Errors
    \n
      \n
    • If index ≥ 2^31
    • \n
    \n

    pub fn derive(\n &self,\n index: u32\n) -> Result<Descriptor<DefiniteDescriptorKey>, ConversionError>

    👎Deprecated: use at_derivation_index instead

    Deprecated name for Self::at_derivation_index.

    \n

    pub fn derived_descriptor<C>(\n &self,\n secp: &Secp256k1<C>,\n index: u32\n) -> Result<Descriptor<PublicKey>, ConversionError>
    where\n C: Verification,

    Convert all the public keys in the descriptor to [bitcoin::PublicKey] by deriving them or\notherwise converting them. All [bitcoin::secp256k1::XOnlyPublicKey]s are converted to by adding a\ndefault(0x02) y-coordinate.

    \n

    This is a shorthand for:

    \n\n
        .expect(\"Valid ranged descriptor\");\nlet derived_descriptor = descriptor.at_derivation_index(index).unwrap().derived_descriptor(&secp).unwrap();
    \n

    and is only here really here for backwards compatibility.\nSee at_derivation_index and [derived_descriptor] for more documentation.

    \n
    §Errors
    \n

    This function will return an error if hardened derivation is attempted.

    \n

    pub fn parse_descriptor<C>(\n secp: &Secp256k1<C>,\n s: &str\n) -> Result<(Descriptor<DescriptorPublicKey>, BTreeMap<DescriptorPublicKey, DescriptorSecretKey>), Error>
    where\n C: Signing,

    Parse a descriptor that may contain secret keys

    \n

    Internally turns every secret key found into the corresponding public key and then returns a\na descriptor that only contains public keys and a map to lookup the secret key given a public key.

    \n

    pub fn to_string_with_secret(\n &self,\n key_map: &BTreeMap<DescriptorPublicKey, DescriptorSecretKey>\n) -> String

    Serialize a descriptor to string with its secret keys

    \n

    pub fn find_derivation_index_for_spk<C>(\n &self,\n secp: &Secp256k1<C>,\n script_pubkey: &Script,\n range: Range<u32>\n) -> Result<Option<(u32, Descriptor<PublicKey>)>, ConversionError>
    where\n C: Verification,

    Utility method for deriving the descriptor at each index in a range to find one matching\nscript_pubkey.

    \n

    If it finds a match then it returns the index it was derived at and the concrete\ndescriptor at that index. If the descriptor is non-derivable then it will simply check the\nscript pubkey against the descriptor and return it if it matches (in this case the index\nreturned will be meaningless).

    \n

    pub fn is_multipath(&self) -> bool

    Whether this descriptor contains a key that has multiple derivation paths.

    \n

    pub fn into_single_descriptors(\n self\n) -> Result<Vec<Descriptor<DescriptorPublicKey>>, Error>

    Get as many descriptors as different paths in this descriptor.

    \n

    For multipath descriptors it will return as many descriptors as there is\n“parallel” paths. For regular descriptors it will just return itself.

    \n
    ",0,"bdk_wallet::descriptor::ExtendedDescriptor"],["
    §

    impl<Pk> Descriptor<Pk>
    where\n Pk: MiniscriptKey + ToPublicKey,

    pub fn address(&self, network: Network) -> Result<Address, Error>

    Computes the Bitcoin address of the descriptor, if one exists

    \n

    Some descriptors like pk() don’t have an address.

    \n
    §Errors
    \n

    For raw/bare descriptors that don’t have an address.

    \n

    pub fn script_pubkey(&self) -> ScriptBuf

    Computes the scriptpubkey of the descriptor.

    \n

    pub fn unsigned_script_sig(&self) -> ScriptBuf

    Computes the scriptSig that will be in place for an unsigned input\nspending an output with this descriptor. For pre-segwit descriptors,\nwhich use the scriptSig for signatures, this returns the empty script.

    \n

    This is used in Segwit transactions to produce an unsigned transaction\nwhose txid will not change during signing (since only the witness data\nwill change).

    \n

    pub fn explicit_script(&self) -> Result<ScriptBuf, Error>

    Computes the the underlying script before any hashing is done. For\nBare, Pkh and Wpkh this is the scriptPubkey; for ShWpkh and Sh\nthis is the redeemScript; for the others it is the witness script.

    \n
    §Errors
    \n

    If the descriptor is a taproot descriptor.

    \n

    pub fn script_code(&self) -> Result<ScriptBuf, Error>

    Computes the scriptCode of a transaction output.

    \n

    The scriptCode is the Script of the previous transaction output being\nserialized in the sighash when evaluating a CHECKSIG & co. OP code.

    \n
    §Errors
    \n

    If the descriptor is a taproot descriptor.

    \n

    pub fn get_satisfaction<S>(\n &self,\n satisfier: S\n) -> Result<(Vec<Vec<u8>>, ScriptBuf), Error>
    where\n S: Satisfier<Pk>,

    Returns satisfying non-malleable witness and scriptSig to spend an\noutput controlled by the given descriptor if it possible to\nconstruct one using the satisfier S.

    \n

    pub fn get_satisfaction_mall<S>(\n &self,\n satisfier: S\n) -> Result<(Vec<Vec<u8>>, ScriptBuf), Error>
    where\n S: Satisfier<Pk>,

    Returns a possilbly mallable satisfying non-malleable witness and scriptSig to spend an\noutput controlled by the given descriptor if it possible to\nconstruct one using the satisfier S.

    \n

    pub fn satisfy<S>(&self, txin: &mut TxIn, satisfier: S) -> Result<(), Error>
    where\n S: Satisfier<Pk>,

    Attempts to produce a non-malleable satisfying witness and scriptSig to spend an\noutput controlled by the given descriptor; add the data to a given\nTxIn output.

    \n
    ",0,"bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    pub fn new_pk(pk: Pk) -> Descriptor<Pk>

    Create a new pk descriptor

    \n

    pub fn new_pkh(pk: Pk) -> Result<Descriptor<Pk>, Error>

    Create a new PkH descriptor

    \n

    pub fn new_wpkh(pk: Pk) -> Result<Descriptor<Pk>, Error>

    Create a new Wpkh descriptor\nWill return Err if uncompressed key is used

    \n

    pub fn new_sh_wpkh(pk: Pk) -> Result<Descriptor<Pk>, Error>

    Create a new sh wrapped wpkh from Pk.\nErrors when uncompressed keys are supplied

    \n

    pub fn new_sh(ms: Miniscript<Pk, Legacy>) -> Result<Descriptor<Pk>, Error>

    Create a new sh for a given redeem script\nErrors when miniscript exceeds resource limits under p2sh context\nor does not type check at the top level

    \n

    pub fn new_wsh(ms: Miniscript<Pk, Segwitv0>) -> Result<Descriptor<Pk>, Error>

    Create a new wsh descriptor from witness script\nErrors when miniscript exceeds resource limits under p2sh context\nor does not type check at the top level

    \n

    pub fn new_sh_wsh(ms: Miniscript<Pk, Segwitv0>) -> Result<Descriptor<Pk>, Error>

    Create a new sh wrapped wsh descriptor with witness script\nErrors when miniscript exceeds resource limits under wsh context\nor does not type check at the top level

    \n

    pub fn new_bare(ms: Miniscript<Pk, BareCtx>) -> Result<Descriptor<Pk>, Error>

    Create a new bare descriptor from witness script\nErrors when miniscript exceeds resource limits under bare context\nor does not type check at the top level

    \n

    pub fn new_sh_with_wpkh(wpkh: Wpkh<Pk>) -> Descriptor<Pk>

    Create a new sh wrapper for the given wpkh descriptor

    \n

    pub fn new_sh_with_wsh(wsh: Wsh<Pk>) -> Descriptor<Pk>

    Create a new sh wrapper for the given wsh descriptor

    \n

    pub fn new_sh_sortedmulti(\n k: usize,\n pks: Vec<Pk>\n) -> Result<Descriptor<Pk>, Error>

    Create a new sh sortedmulti descriptor with threshold k\nand Vec of pks.\nErrors when miniscript exceeds resource limits under p2sh context

    \n

    pub fn new_sh_wsh_sortedmulti(\n k: usize,\n pks: Vec<Pk>\n) -> Result<Descriptor<Pk>, Error>

    Create a new sh wrapped wsh sortedmulti descriptor from threshold\nk and Vec of pks\nErrors when miniscript exceeds resource limits under segwit context

    \n

    pub fn new_wsh_sortedmulti(\n k: usize,\n pks: Vec<Pk>\n) -> Result<Descriptor<Pk>, Error>

    Create a new wsh sorted multi descriptor\nErrors when miniscript exceeds resource limits under p2sh context

    \n

    pub fn new_tr(\n key: Pk,\n script: Option<TapTree<Pk>>\n) -> Result<Descriptor<Pk>, Error>

    Create new tr descriptor\nErrors when miniscript exceeds resource limits under Tap context

    \n

    pub fn desc_type(&self) -> DescriptorType

    Get the [DescriptorType] of Descriptor

    \n

    pub fn sanity_check(&self) -> Result<(), Error>

    Checks whether the descriptor is safe.

    \n

    Checks whether all the spend paths in the descriptor are possible on the\nbitcoin network under the current standardness and consensus rules. Also\nchecks whether the descriptor requires signatures on all spend paths and\nwhether the script is malleable.

    \n

    In general, all the guarantees of miniscript hold only for safe scripts.\nThe signer may not be able to find satisfactions even if one exists.

    \n

    pub fn max_weight_to_satisfy(&self) -> Result<Weight, Error>

    Computes an upper bound on the difference between a non-satisfied\nTxIn’s segwit_weight and a satisfied TxIn’s segwit_weight

    \n

    Since this method uses segwit_weight instead of legacy_weight,\nif you want to include only legacy inputs in your transaction,\nyou should remove 1WU from each input’s max_weight_to_satisfy\nfor a more accurate estimate.

    \n

    In other words, for segwit inputs or legacy inputs included in\nsegwit transactions, the following will hold for each input if\nthat input was satisfied with the largest possible witness:

    \n\n
    ⓘ
    for i in 0..transaction.input.len() {\n    assert_eq!(\n        descriptor_for_input[i].max_weight_to_satisfy(),\n        transaction.input[i].segwit_weight() - TxIn::default().segwit_weight()\n    );\n}
    \n

    Instead, for legacy transactions, the following will hold for each input\nif that input was satisfied with the largest possible witness:

    \n\n
    ⓘ
    for i in 0..transaction.input.len() {\n    assert_eq!(\n        descriptor_for_input[i].max_weight_to_satisfy(),\n        transaction.input[i].legacy_weight() - TxIn::default().legacy_weight()\n    );\n}
    \n

    Assumes all ECDSA signatures are 73 bytes, including push opcode and\nsighash suffix.\nAssumes all Schnorr signatures are 66 bytes, including push opcode and\nsighash suffix.

    \n
    §Errors
    \n

    When the descriptor is impossible to safisfy (ex: sh(OP_FALSE)).

    \n

    pub fn max_satisfaction_weight(&self) -> Result<usize, Error>

    👎Deprecated since 10.0.0: Use max_weight_to_satisfy instead. The method to count bytes was redesigned and the results will differ from max_weight_to_satisfy. For more details check rust-bitcoin/rust-miniscript#476.

    Computes an upper bound on the weight of a satisfying witness to the\ntransaction.

    \n

    Assumes all ec-signatures are 73 bytes, including push opcode and\nsighash suffix. Includes the weight of the VarInts encoding the\nscriptSig and witness stack length.

    \n
    §Errors
    \n

    When the descriptor is impossible to safisfy (ex: sh(OP_FALSE)).

    \n
    ",0,"bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    source§

    impl DescriptorExt for Descriptor<DescriptorPublicKey>

    source§

    fn dust_value(&self) -> u64

    Returns the minimum value (in satoshis) at which an output is broadcastable.\nPanics if the descriptor wildcard is hardened.
    source§

    fn descriptor_id(&self) -> DescriptorId

    Returns the descriptor ID, calculated as the sha256 hash of the spk derived from the\ndescriptor at index 0.
    ","DescriptorExt","bdk_wallet::descriptor::ExtendedDescriptor"],["
    §

    impl<'de, Pk> Deserialize<'de> for Descriptor<Pk>
    where\n Pk: FromStrKey,

    §

    fn deserialize<D>(\n deserializer: D\n) -> Result<Descriptor<Pk>, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Display for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Display","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    source§

    impl ExtractPolicy for Descriptor<DescriptorPublicKey>

    source§

    fn extract_policy(\n &self,\n signers: &SignersContainer,\n build_sat: BuildSatisfaction<'_>,\n secp: &Secp256k1<All>\n) -> Result<Option<Policy>, Error>

    Extract the spending policy
    ","ExtractPolicy","bdk_wallet::descriptor::ExtendedDescriptor"],["
    §

    impl<Pk> ForEachKey<Pk> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn for_each_key<'a, F>(&'a self, pred: F) -> bool
    where\n F: FnMut(&'a Pk) -> bool,

    Run a predicate on every key in the descriptor, returning whether\nthe predicate returned true for every key
    §

    fn for_any_key<'a, F>(&'a self, pred: F) -> bool
    where\n F: FnMut(&'a Pk) -> bool,\n Pk: 'a,

    Run a predicate on every key in the descriptor, returning whether\nthe predicate returned true for any key
    ","ForEachKey","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Bare<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Bare<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Pkh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Pkh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Sh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Sh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Tr<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Tr<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Wpkh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Wpkh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Wsh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Wsh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> FromStr for Descriptor<Pk>
    where\n Pk: FromStrKey,

    §

    type Err = Error

    The associated error which can be returned from parsing.
    §

    fn from_str(s: &str) -> Result<Descriptor<Pk>, Error>

    Parses a string s to return a value of this type. Read more
    ","FromStr","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> FromTree for Descriptor<Pk>
    where\n Pk: FromStrKey,

    §

    fn from_tree(top: &Tree<'_>) -> Result<Descriptor<Pk>, Error>

    Parse an expression tree into a descriptor.

    \n
    ","FromTree","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Hash for Descriptor<Pk>
    where\n Pk: Hash + MiniscriptKey,

    §

    fn hash<__H>(&self, state: &mut __H)
    where\n __H: Hasher,

    Feeds this value into the given Hasher. Read more
    1.3.0 · source§

    fn hash_slice<H>(data: &[Self], state: &mut H)
    where\n H: Hasher,\n Self: Sized,

    Feeds a slice of this type into the given Hasher. Read more
    ","Hash","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Liftable<Pk> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn lift(&self) -> Result<Policy<Pk>, Error>

    Converts this object into an abstract policy.
    ","Liftable","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Ord for Descriptor<Pk>
    where\n Pk: Ord + MiniscriptKey,

    §

    fn cmp(&self, other: &Descriptor<Pk>) -> 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","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> PartialEq for Descriptor<Pk>
    where\n Pk: PartialEq + MiniscriptKey,

    §

    fn eq(&self, other: &Descriptor<Pk>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> PartialOrd for Descriptor<Pk>
    where\n Pk: PartialOrd + MiniscriptKey,

    §

    fn partial_cmp(&self, other: &Descriptor<Pk>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<'de, Pk> Serialize for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<P, Q> TranslatePk<P, Q> for Descriptor<P>
    where\n P: MiniscriptKey,\n Q: MiniscriptKey,

    §

    fn translate_pk<T, E>(\n &self,\n t: &mut T\n) -> Result<<Descriptor<P> as TranslatePk<P, Q>>::Output, TranslateErr<E>>
    where\n T: Translator<P, Q, E>,

    Converts a descriptor using abstract keys to one using specific keys.

    \n
    §

    type Output = Descriptor<Q>

    The associated output type. This must be Self<Q>.
    ","TranslatePk","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Eq for Descriptor<Pk>
    where\n Pk: Eq + MiniscriptKey,

    ","Eq","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> StructuralPartialEq for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    ","StructuralPartialEq","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"]] +"bdk_wallet":[["
    §

    impl<Pk> Clone for Descriptor<Pk>
    where\n Pk: Clone + MiniscriptKey,

    §

    fn clone(&self) -> Descriptor<Pk>

    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","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Debug for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Debug","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl Descriptor<DefiniteDescriptorKey>

    pub fn derived_descriptor<C>(\n &self,\n secp: &Secp256k1<C>\n) -> Result<Descriptor<PublicKey>, ConversionError>
    where\n C: Verification,

    Convert all the public keys in the descriptor to [bitcoin::PublicKey] by deriving them or\notherwise converting them. All [bitcoin::secp256k1::XOnlyPublicKey]s are converted to by adding a\ndefault(0x02) y-coordinate.

    \n
    §Examples
    \n
    use miniscript::descriptor::{Descriptor, DescriptorPublicKey};\nuse miniscript::bitcoin::secp256k1;\nuse std::str::FromStr;\n\n// test from bip 86\nlet secp = secp256k1::Secp256k1::verification_only();\nlet descriptor = Descriptor::<DescriptorPublicKey>::from_str(\"tr(xpub6BgBgsespWvERF3LHQu6CnqdvfEvtMcQjYrcRzx53QJjSxarj2afYWcLteoGVky7D3UKDP9QyrLprQ3VCECoY49yfdDEHGCtMMj92pReUsQ/0/*)\")\n    .expect(\"Valid ranged descriptor\");\nlet result = descriptor.at_derivation_index(0).unwrap().derived_descriptor(&secp).expect(\"Non-hardened derivation\");\nassert_eq!(result.to_string(), \"tr(03cc8a4bc64d897bddc5fbc2f670f7a8ba0b386779106cf1223c6fc5d7cd6fc115)#6qm9h8ym\");
    \n
    §Errors
    \n

    This function will return an error if hardened derivation is attempted.

    \n
    ",0,"bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl Descriptor<DefiniteDescriptorKey>

    pub fn plan<P>(\n self,\n provider: &P\n) -> Result<Plan, Descriptor<DefiniteDescriptorKey>>
    where\n P: AssetProvider<DefiniteDescriptorKey>,

    Returns a plan if the provided assets are sufficient to produce a non-malleable satisfaction

    \n

    If the assets aren’t sufficient for generating a Plan, the descriptor is returned

    \n

    pub fn plan_mall<P>(\n self,\n provider: &P\n) -> Result<Plan, Descriptor<DefiniteDescriptorKey>>
    where\n P: AssetProvider<DefiniteDescriptorKey>,

    Returns a plan if the provided assets are sufficient to produce a malleable satisfaction

    \n

    If the assets aren’t sufficient for generating a Plan, the descriptor is returned

    \n
    ",0,"bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl Descriptor<DescriptorPublicKey>

    pub fn is_deriveable(&self) -> bool

    👎Deprecated: use has_wildcards instead

    Whether or not the descriptor has any wildcards

    \n

    pub fn has_wildcard(&self) -> bool

    Whether or not the descriptor has any wildcards i.e. /*.

    \n

    pub fn at_derivation_index(\n &self,\n index: u32\n) -> Result<Descriptor<DefiniteDescriptorKey>, ConversionError>

    Replaces all wildcards (i.e. /*) in the descriptor with a particular derivation index,\nturning it into a definite descriptor.

    \n
    §Errors
    \n
      \n
    • If index ≥ 2^31
    • \n
    \n

    pub fn derive(\n &self,\n index: u32\n) -> Result<Descriptor<DefiniteDescriptorKey>, ConversionError>

    👎Deprecated: use at_derivation_index instead

    Deprecated name for Self::at_derivation_index.

    \n

    pub fn derived_descriptor<C>(\n &self,\n secp: &Secp256k1<C>,\n index: u32\n) -> Result<Descriptor<PublicKey>, ConversionError>
    where\n C: Verification,

    Convert all the public keys in the descriptor to [bitcoin::PublicKey] by deriving them or\notherwise converting them. All [bitcoin::secp256k1::XOnlyPublicKey]s are converted to by adding a\ndefault(0x02) y-coordinate.

    \n

    This is a shorthand for:

    \n\n
        .expect(\"Valid ranged descriptor\");\nlet derived_descriptor = descriptor.at_derivation_index(index).unwrap().derived_descriptor(&secp).unwrap();
    \n

    and is only here really here for backwards compatibility.\nSee at_derivation_index and [derived_descriptor] for more documentation.

    \n
    §Errors
    \n

    This function will return an error if hardened derivation is attempted.

    \n

    pub fn parse_descriptor<C>(\n secp: &Secp256k1<C>,\n s: &str\n) -> Result<(Descriptor<DescriptorPublicKey>, BTreeMap<DescriptorPublicKey, DescriptorSecretKey>), Error>
    where\n C: Signing,

    Parse a descriptor that may contain secret keys

    \n

    Internally turns every secret key found into the corresponding public key and then returns a\na descriptor that only contains public keys and a map to lookup the secret key given a public key.

    \n

    pub fn to_string_with_secret(\n &self,\n key_map: &BTreeMap<DescriptorPublicKey, DescriptorSecretKey>\n) -> String

    Serialize a descriptor to string with its secret keys

    \n

    pub fn find_derivation_index_for_spk<C>(\n &self,\n secp: &Secp256k1<C>,\n script_pubkey: &Script,\n range: Range<u32>\n) -> Result<Option<(u32, Descriptor<PublicKey>)>, ConversionError>
    where\n C: Verification,

    Utility method for deriving the descriptor at each index in a range to find one matching\nscript_pubkey.

    \n

    If it finds a match then it returns the index it was derived at and the concrete\ndescriptor at that index. If the descriptor is non-derivable then it will simply check the\nscript pubkey against the descriptor and return it if it matches (in this case the index\nreturned will be meaningless).

    \n

    pub fn is_multipath(&self) -> bool

    Whether this descriptor contains a key that has multiple derivation paths.

    \n

    pub fn into_single_descriptors(\n self\n) -> Result<Vec<Descriptor<DescriptorPublicKey>>, Error>

    Get as many descriptors as different paths in this descriptor.

    \n

    For multipath descriptors it will return as many descriptors as there is\n“parallel” paths. For regular descriptors it will just return itself.

    \n
    ",0,"bdk_wallet::descriptor::ExtendedDescriptor"],["
    §

    impl<Pk> Descriptor<Pk>
    where\n Pk: MiniscriptKey + ToPublicKey,

    pub fn address(&self, network: Network) -> Result<Address, Error>

    Computes the Bitcoin address of the descriptor, if one exists

    \n

    Some descriptors like pk() don’t have an address.

    \n
    §Errors
    \n

    For raw/bare descriptors that don’t have an address.

    \n

    pub fn script_pubkey(&self) -> ScriptBuf

    Computes the scriptpubkey of the descriptor.

    \n

    pub fn unsigned_script_sig(&self) -> ScriptBuf

    Computes the scriptSig that will be in place for an unsigned input\nspending an output with this descriptor. For pre-segwit descriptors,\nwhich use the scriptSig for signatures, this returns the empty script.

    \n

    This is used in Segwit transactions to produce an unsigned transaction\nwhose txid will not change during signing (since only the witness data\nwill change).

    \n

    pub fn explicit_script(&self) -> Result<ScriptBuf, Error>

    Computes the the underlying script before any hashing is done. For\nBare, Pkh and Wpkh this is the scriptPubkey; for ShWpkh and Sh\nthis is the redeemScript; for the others it is the witness script.

    \n
    §Errors
    \n

    If the descriptor is a taproot descriptor.

    \n

    pub fn script_code(&self) -> Result<ScriptBuf, Error>

    Computes the scriptCode of a transaction output.

    \n

    The scriptCode is the Script of the previous transaction output being\nserialized in the sighash when evaluating a CHECKSIG & co. OP code.

    \n
    §Errors
    \n

    If the descriptor is a taproot descriptor.

    \n

    pub fn get_satisfaction<S>(\n &self,\n satisfier: S\n) -> Result<(Vec<Vec<u8>>, ScriptBuf), Error>
    where\n S: Satisfier<Pk>,

    Returns satisfying non-malleable witness and scriptSig to spend an\noutput controlled by the given descriptor if it possible to\nconstruct one using the satisfier S.

    \n

    pub fn get_satisfaction_mall<S>(\n &self,\n satisfier: S\n) -> Result<(Vec<Vec<u8>>, ScriptBuf), Error>
    where\n S: Satisfier<Pk>,

    Returns a possilbly mallable satisfying non-malleable witness and scriptSig to spend an\noutput controlled by the given descriptor if it possible to\nconstruct one using the satisfier S.

    \n

    pub fn satisfy<S>(&self, txin: &mut TxIn, satisfier: S) -> Result<(), Error>
    where\n S: Satisfier<Pk>,

    Attempts to produce a non-malleable satisfying witness and scriptSig to spend an\noutput controlled by the given descriptor; add the data to a given\nTxIn output.

    \n
    ",0,"bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    pub fn new_pk(pk: Pk) -> Descriptor<Pk>

    Create a new pk descriptor

    \n

    pub fn new_pkh(pk: Pk) -> Result<Descriptor<Pk>, Error>

    Create a new PkH descriptor

    \n

    pub fn new_wpkh(pk: Pk) -> Result<Descriptor<Pk>, Error>

    Create a new Wpkh descriptor\nWill return Err if uncompressed key is used

    \n

    pub fn new_sh_wpkh(pk: Pk) -> Result<Descriptor<Pk>, Error>

    Create a new sh wrapped wpkh from Pk.\nErrors when uncompressed keys are supplied

    \n

    pub fn new_sh(ms: Miniscript<Pk, Legacy>) -> Result<Descriptor<Pk>, Error>

    Create a new sh for a given redeem script\nErrors when miniscript exceeds resource limits under p2sh context\nor does not type check at the top level

    \n

    pub fn new_wsh(ms: Miniscript<Pk, Segwitv0>) -> Result<Descriptor<Pk>, Error>

    Create a new wsh descriptor from witness script\nErrors when miniscript exceeds resource limits under p2sh context\nor does not type check at the top level

    \n

    pub fn new_sh_wsh(ms: Miniscript<Pk, Segwitv0>) -> Result<Descriptor<Pk>, Error>

    Create a new sh wrapped wsh descriptor with witness script\nErrors when miniscript exceeds resource limits under wsh context\nor does not type check at the top level

    \n

    pub fn new_bare(ms: Miniscript<Pk, BareCtx>) -> Result<Descriptor<Pk>, Error>

    Create a new bare descriptor from witness script\nErrors when miniscript exceeds resource limits under bare context\nor does not type check at the top level

    \n

    pub fn new_sh_with_wpkh(wpkh: Wpkh<Pk>) -> Descriptor<Pk>

    Create a new sh wrapper for the given wpkh descriptor

    \n

    pub fn new_sh_with_wsh(wsh: Wsh<Pk>) -> Descriptor<Pk>

    Create a new sh wrapper for the given wsh descriptor

    \n

    pub fn new_sh_sortedmulti(\n k: usize,\n pks: Vec<Pk>\n) -> Result<Descriptor<Pk>, Error>

    Create a new sh sortedmulti descriptor with threshold k\nand Vec of pks.\nErrors when miniscript exceeds resource limits under p2sh context

    \n

    pub fn new_sh_wsh_sortedmulti(\n k: usize,\n pks: Vec<Pk>\n) -> Result<Descriptor<Pk>, Error>

    Create a new sh wrapped wsh sortedmulti descriptor from threshold\nk and Vec of pks\nErrors when miniscript exceeds resource limits under segwit context

    \n

    pub fn new_wsh_sortedmulti(\n k: usize,\n pks: Vec<Pk>\n) -> Result<Descriptor<Pk>, Error>

    Create a new wsh sorted multi descriptor\nErrors when miniscript exceeds resource limits under p2sh context

    \n

    pub fn new_tr(\n key: Pk,\n script: Option<TapTree<Pk>>\n) -> Result<Descriptor<Pk>, Error>

    Create new tr descriptor\nErrors when miniscript exceeds resource limits under Tap context

    \n

    pub fn desc_type(&self) -> DescriptorType

    Get the [DescriptorType] of Descriptor

    \n

    pub fn sanity_check(&self) -> Result<(), Error>

    Checks whether the descriptor is safe.

    \n

    Checks whether all the spend paths in the descriptor are possible on the\nbitcoin network under the current standardness and consensus rules. Also\nchecks whether the descriptor requires signatures on all spend paths and\nwhether the script is malleable.

    \n

    In general, all the guarantees of miniscript hold only for safe scripts.\nThe signer may not be able to find satisfactions even if one exists.

    \n

    pub fn max_weight_to_satisfy(&self) -> Result<Weight, Error>

    Computes an upper bound on the difference between a non-satisfied\nTxIn’s segwit_weight and a satisfied TxIn’s segwit_weight

    \n

    Since this method uses segwit_weight instead of legacy_weight,\nif you want to include only legacy inputs in your transaction,\nyou should remove 1WU from each input’s max_weight_to_satisfy\nfor a more accurate estimate.

    \n

    In other words, for segwit inputs or legacy inputs included in\nsegwit transactions, the following will hold for each input if\nthat input was satisfied with the largest possible witness:

    \n\n
    ⓘ
    for i in 0..transaction.input.len() {\n    assert_eq!(\n        descriptor_for_input[i].max_weight_to_satisfy(),\n        transaction.input[i].segwit_weight() - TxIn::default().segwit_weight()\n    );\n}
    \n

    Instead, for legacy transactions, the following will hold for each input\nif that input was satisfied with the largest possible witness:

    \n\n
    ⓘ
    for i in 0..transaction.input.len() {\n    assert_eq!(\n        descriptor_for_input[i].max_weight_to_satisfy(),\n        transaction.input[i].legacy_weight() - TxIn::default().legacy_weight()\n    );\n}
    \n

    Assumes all ECDSA signatures are 73 bytes, including push opcode and\nsighash suffix.\nAssumes all Schnorr signatures are 66 bytes, including push opcode and\nsighash suffix.

    \n
    §Errors
    \n

    When the descriptor is impossible to safisfy (ex: sh(OP_FALSE)).

    \n

    pub fn max_satisfaction_weight(&self) -> Result<usize, Error>

    👎Deprecated since 10.0.0: Use max_weight_to_satisfy instead. The method to count bytes was redesigned and the results will differ from max_weight_to_satisfy. For more details check rust-bitcoin/rust-miniscript#476.

    Computes an upper bound on the weight of a satisfying witness to the\ntransaction.

    \n

    Assumes all ec-signatures are 73 bytes, including push opcode and\nsighash suffix. Includes the weight of the VarInts encoding the\nscriptSig and witness stack length.

    \n
    §Errors
    \n

    When the descriptor is impossible to safisfy (ex: sh(OP_FALSE)).

    \n
    ",0,"bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl DescriptorExt for Descriptor<DescriptorPublicKey>

    §

    fn dust_value(&self) -> u64

    Returns the minimum value (in satoshis) at which an output is broadcastable.\nPanics if the descriptor wildcard is hardened.
    §

    fn descriptor_id(&self) -> DescriptorId

    Returns the descriptor ID, calculated as the sha256 hash of the spk derived from the\ndescriptor at index 0.
    ","DescriptorExt","bdk_wallet::descriptor::ExtendedDescriptor"],["
    §

    impl<'de, Pk> Deserialize<'de> for Descriptor<Pk>
    where\n Pk: FromStrKey,

    §

    fn deserialize<D>(\n deserializer: D\n) -> Result<Descriptor<Pk>, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Display for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

    Formats the value using the given formatter. Read more
    ","Display","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    source§

    impl ExtractPolicy for Descriptor<DescriptorPublicKey>

    source§

    fn extract_policy(\n &self,\n signers: &SignersContainer,\n build_sat: BuildSatisfaction<'_>,\n secp: &Secp256k1<All>\n) -> Result<Option<Policy>, Error>

    Extract the spending policy
    ","ExtractPolicy","bdk_wallet::descriptor::ExtendedDescriptor"],["
    §

    impl<Pk> ForEachKey<Pk> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn for_each_key<'a, F>(&'a self, pred: F) -> bool
    where\n F: FnMut(&'a Pk) -> bool,

    Run a predicate on every key in the descriptor, returning whether\nthe predicate returned true for every key
    §

    fn for_any_key<'a, F>(&'a self, pred: F) -> bool
    where\n F: FnMut(&'a Pk) -> bool,\n Pk: 'a,

    Run a predicate on every key in the descriptor, returning whether\nthe predicate returned true for any key
    ","ForEachKey","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Bare<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Bare<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Pkh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Pkh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Sh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Sh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Tr<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Tr<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Wpkh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Wpkh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> From<Wsh<Pk>> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn from(inner: Wsh<Pk>) -> Descriptor<Pk>

    Converts to this type from the input type.
    ","From>","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> FromStr for Descriptor<Pk>
    where\n Pk: FromStrKey,

    §

    type Err = Error

    The associated error which can be returned from parsing.
    §

    fn from_str(s: &str) -> Result<Descriptor<Pk>, Error>

    Parses a string s to return a value of this type. Read more
    ","FromStr","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> FromTree for Descriptor<Pk>
    where\n Pk: FromStrKey,

    §

    fn from_tree(top: &Tree<'_>) -> Result<Descriptor<Pk>, Error>

    Parse an expression tree into a descriptor.

    \n
    ","FromTree","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Hash for Descriptor<Pk>
    where\n Pk: Hash + MiniscriptKey,

    §

    fn hash<__H>(&self, state: &mut __H)
    where\n __H: Hasher,

    Feeds this value into the given Hasher. Read more
    1.3.0 · source§

    fn hash_slice<H>(data: &[Self], state: &mut H)
    where\n H: Hasher,\n Self: Sized,

    Feeds a slice of this type into the given Hasher. Read more
    ","Hash","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Liftable<Pk> for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn lift(&self) -> Result<Policy<Pk>, Error>

    Converts this object into an abstract policy.
    ","Liftable","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Ord for Descriptor<Pk>
    where\n Pk: Ord + MiniscriptKey,

    §

    fn cmp(&self, other: &Descriptor<Pk>) -> 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","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> PartialEq for Descriptor<Pk>
    where\n Pk: PartialEq + MiniscriptKey,

    §

    fn eq(&self, other: &Descriptor<Pk>) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> PartialOrd for Descriptor<Pk>
    where\n Pk: PartialOrd + MiniscriptKey,

    §

    fn partial_cmp(&self, other: &Descriptor<Pk>) -> Option<Ordering>

    This method returns an ordering between self and other values if one exists. Read more
    1.0.0 · source§

    fn lt(&self, other: &Rhs) -> bool

    This method tests less than (for self and other) and is used by the < operator. Read more
    1.0.0 · source§

    fn le(&self, other: &Rhs) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    1.0.0 · source§

    fn gt(&self, other: &Rhs) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    1.0.0 · source§

    fn ge(&self, other: &Rhs) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    ","PartialOrd","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<'de, Pk> Serialize for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    §

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<P, Q> TranslatePk<P, Q> for Descriptor<P>
    where\n P: MiniscriptKey,\n Q: MiniscriptKey,

    §

    fn translate_pk<T, E>(\n &self,\n t: &mut T\n) -> Result<<Descriptor<P> as TranslatePk<P, Q>>::Output, TranslateErr<E>>
    where\n T: Translator<P, Q, E>,

    Converts a descriptor using abstract keys to one using specific keys.

    \n
    §

    type Output = Descriptor<Q>

    The associated output type. This must be Self<Q>.
    ","TranslatePk","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> Eq for Descriptor<Pk>
    where\n Pk: Eq + MiniscriptKey,

    ","Eq","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"],["
    §

    impl<Pk> StructuralPartialEq for Descriptor<Pk>
    where\n Pk: MiniscriptKey,

    ","StructuralPartialEq","bdk_wallet::descriptor::ExtendedDescriptor","bdk_wallet::descriptor::DerivedDescriptor"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i32.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i32.js index 42903cb786..b9d9f19d98 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i32.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i32.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_chain":[["
    1.0.0 · source§

    impl Add<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 (const: unstable) · source§

    impl Add for i32

    §

    type Output = i32

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: i32) -> i32

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl AddAssign<&i32> for i32

    source§

    fn add_assign(&mut self, other: &i32)

    Performs the += operation. Read more
    ","AddAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl AddAssign for i32

    source§

    fn add_assign(&mut self, other: i32)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitAnd<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitAnd for i32

    §

    type Output = i32

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: i32) -> i32

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl BitAndAssign<&i32> for i32

    source§

    fn bitand_assign(&mut self, other: &i32)

    Performs the &= operation. Read more
    ","BitAndAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl BitAndAssign for i32

    source§

    fn bitand_assign(&mut self, other: i32)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitOr<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitOr for i32

    §

    type Output = i32

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: i32) -> i32

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl BitOrAssign<&i32> for i32

    source§

    fn bitor_assign(&mut self, other: &i32)

    Performs the |= operation. Read more
    ","BitOrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl BitOrAssign for i32

    source§

    fn bitor_assign(&mut self, other: i32)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitXor<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitXor for i32

    §

    type Output = i32

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: i32) -> i32

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl BitXorAssign<&i32> for i32

    source§

    fn bitxor_assign(&mut self, other: &i32)

    Performs the ^= operation. Read more
    ","BitXorAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl BitXorAssign for i32

    source§

    fn bitxor_assign(&mut self, other: i32)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl Decodable for i32

    §

    fn consensus_decode<R>(r: &mut R) -> Result<i32, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Default for i32

    source§

    fn default() -> i32

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl<'de> Deserialize<'de> for i32

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<i32, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Div<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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
    §

    type Output = i32

    The resulting type after applying the / operator.
    source§

    fn div(self, other: i32) -> i32

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl DivAssign<&i32> for i32

    source§

    fn div_assign(&mut self, other: &i32)

    Performs the /= operation. Read more
    ","DivAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl DivAssign for i32

    source§

    fn div_assign(&mut self, other: i32)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl Encodable for i32

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl<O> From<I16<O>> for i32
    where\n O: ByteOrder,

    §

    fn from(x: I16<O>) -> i32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl<O> From<I32<O>> for i32
    where\n O: ByteOrder,

    §

    fn from(x: I32<O>) -> i32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl From<Parity> for i32

    The conversion returns 0 for even parity and 1 for odd.

    \n
    §

    fn from(parity: Parity) -> i32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<i16> for i32

    source§

    fn from(small: i16) -> i32

    Converts i16 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<i8> for i32

    source§

    fn from(small: i8) -> i32

    Converts i8 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<u16> for i32

    source§

    fn from(small: u16) -> i32

    Converts u16 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<u8> for i32

    source§

    fn from(small: u8) -> i32

    Converts u8 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl FromStr for i32

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for i32
    where\n E: Error,

    §

    type Deserializer = I32Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> I32Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Mul<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Mul for i32

    §

    type Output = i32

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: i32) -> i32

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl MulAssign<&i32> for i32

    source§

    fn mul_assign(&mut self, other: &i32)

    Performs the *= operation. Read more
    ","MulAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl MulAssign for i32

    source§

    fn mul_assign(&mut self, other: i32)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Neg for i32

    §

    type Output = i32

    The resulting type after applying the - operator.
    source§

    fn neg(self) -> i32

    Performs the unary - operation. Read more
    ","Neg","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Not for i32

    §

    type Output = i32

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> i32

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl PartialEq<Value> for i32

    source§

    fn eq(&self, other: &Value) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for i32

    const: unstable · source§

    fn eq(&self, other: &i32) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &i32) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &i32) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &i32) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &i32) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.12.0 · source§

    impl Product for i32

    source§

    fn product<I>(iter: I) -> i32
    where\n I: Iterator<Item = i32>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Rem<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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
    §

    type Output = i32

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: i32) -> i32

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl RemAssign<&i32> for i32

    source§

    fn rem_assign(&mut self, other: &i32)

    Performs the %= operation. Read more
    ","RemAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl RemAssign for i32

    source§

    fn rem_assign(&mut self, other: i32)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl SampleUniform for i32

    §

    type Sampler = UniformInt<i32>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl Serialize for i32

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&isize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&usize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i128> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i16> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i64> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i8> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<isize> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u128> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u16> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u32> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u64> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u8> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<usize> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i128> for i32

    source§

    fn shl_assign(&mut self, other: &i128)

    Performs the <<= operation. Read more
    ","ShlAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i16> for i32

    source§

    fn shl_assign(&mut self, other: &i16)

    Performs the <<= operation. Read more
    ","ShlAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i32> for i32

    source§

    fn shl_assign(&mut self, other: &i32)

    Performs the <<= operation. Read more
    ","ShlAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i64> for i32

    source§

    fn shl_assign(&mut self, other: &i64)

    Performs the <<= operation. Read more
    ","ShlAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i8> for i32

    source§

    fn shl_assign(&mut self, other: &i8)

    Performs the <<= operation. Read more
    ","ShlAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&isize> for i32

    source§

    fn shl_assign(&mut self, other: &isize)

    Performs the <<= operation. Read more
    ","ShlAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u128> for i32

    source§

    fn shl_assign(&mut self, other: &u128)

    Performs the <<= operation. Read more
    ","ShlAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u16> for i32

    source§

    fn shl_assign(&mut self, other: &u16)

    Performs the <<= operation. Read more
    ","ShlAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u32> for i32

    source§

    fn shl_assign(&mut self, other: &u32)

    Performs the <<= operation. Read more
    ","ShlAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u64> for i32

    source§

    fn shl_assign(&mut self, other: &u64)

    Performs the <<= operation. Read more
    ","ShlAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u8> for i32

    source§

    fn shl_assign(&mut self, other: &u8)

    Performs the <<= operation. Read more
    ","ShlAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&usize> for i32

    source§

    fn shl_assign(&mut self, other: &usize)

    Performs the <<= operation. Read more
    ","ShlAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i128> for i32

    source§

    fn shl_assign(&mut self, other: i128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i16> for i32

    source§

    fn shl_assign(&mut self, other: i16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i64> for i32

    source§

    fn shl_assign(&mut self, other: i64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i8> for i32

    source§

    fn shl_assign(&mut self, other: i8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<isize> for i32

    source§

    fn shl_assign(&mut self, other: isize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u128> for i32

    source§

    fn shl_assign(&mut self, other: u128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u16> for i32

    source§

    fn shl_assign(&mut self, other: u16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u32> for i32

    source§

    fn shl_assign(&mut self, other: u32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u64> for i32

    source§

    fn shl_assign(&mut self, other: u64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u8> for i32

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<usize> for i32

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign for i32

    source§

    fn shl_assign(&mut self, other: i32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&isize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&usize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i128> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i16> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i64> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i8> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<isize> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u128> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u16> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u32> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u64> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u8> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<usize> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i128> for i32

    source§

    fn shr_assign(&mut self, other: &i128)

    Performs the >>= operation. Read more
    ","ShrAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i16> for i32

    source§

    fn shr_assign(&mut self, other: &i16)

    Performs the >>= operation. Read more
    ","ShrAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i32> for i32

    source§

    fn shr_assign(&mut self, other: &i32)

    Performs the >>= operation. Read more
    ","ShrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i64> for i32

    source§

    fn shr_assign(&mut self, other: &i64)

    Performs the >>= operation. Read more
    ","ShrAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i8> for i32

    source§

    fn shr_assign(&mut self, other: &i8)

    Performs the >>= operation. Read more
    ","ShrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&isize> for i32

    source§

    fn shr_assign(&mut self, other: &isize)

    Performs the >>= operation. Read more
    ","ShrAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u128> for i32

    source§

    fn shr_assign(&mut self, other: &u128)

    Performs the >>= operation. Read more
    ","ShrAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u16> for i32

    source§

    fn shr_assign(&mut self, other: &u16)

    Performs the >>= operation. Read more
    ","ShrAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u32> for i32

    source§

    fn shr_assign(&mut self, other: &u32)

    Performs the >>= operation. Read more
    ","ShrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u64> for i32

    source§

    fn shr_assign(&mut self, other: &u64)

    Performs the >>= operation. Read more
    ","ShrAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u8> for i32

    source§

    fn shr_assign(&mut self, other: &u8)

    Performs the >>= operation. Read more
    ","ShrAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&usize> for i32

    source§

    fn shr_assign(&mut self, other: &usize)

    Performs the >>= operation. Read more
    ","ShrAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i128> for i32

    source§

    fn shr_assign(&mut self, other: i128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i16> for i32

    source§

    fn shr_assign(&mut self, other: i16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i64> for i32

    source§

    fn shr_assign(&mut self, other: i64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i8> for i32

    source§

    fn shr_assign(&mut self, other: i8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<isize> for i32

    source§

    fn shr_assign(&mut self, other: isize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u128> for i32

    source§

    fn shr_assign(&mut self, other: u128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u16> for i32

    source§

    fn shr_assign(&mut self, other: u16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u32> for i32

    source§

    fn shr_assign(&mut self, other: u32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u64> for i32

    source§

    fn shr_assign(&mut self, other: u64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u8> for i32

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<usize> for i32

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign for i32

    source§

    fn shr_assign(&mut self, other: i32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl SimdElement for i32

    §

    type Mask = i32

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Sub<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Sub for i32

    §

    type Output = i32

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: i32) -> i32

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl SubAssign<&i32> for i32

    source§

    fn sub_assign(&mut self, other: &i32)

    Performs the -= operation. Read more
    ","SubAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl SubAssign for i32

    source§

    fn sub_assign(&mut self, other: i32)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.12.0 · source§

    impl Sum for i32

    source§

    fn sum<I>(iter: I) -> i32
    where\n I: Iterator<Item = i32>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<i128> for i32

    source§

    fn try_from(u: i128) -> Result<i32, <i32 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<i64> for i32

    source§

    fn try_from(u: i64) -> Result<i32, <i32 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<isize> for i32

    source§

    fn try_from(u: isize) -> Result<i32, <i32 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<u128> for i32

    source§

    fn try_from(u: u128) -> Result<i32, <i32 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<u32> for i32

    source§

    fn try_from(u: u32) -> Result<i32, <i32 as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<u64> for i32

    source§

    fn try_from(u: u64) -> Result<i32, <i32 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<usize> for i32

    source§

    fn try_from(u: usize) -> Result<i32, <i32 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl ConstParamTy for i32

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Copy for i32

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Eq for i32

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl MaskElement for i32

    ","MaskElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl SimdCast for i32

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl StructuralPartialEq for i32

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl TrustedStep for i32

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl Weight for i32

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl ZeroablePrimitive for i32

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"]] +"bdk_chain":[["
    1.0.0 · source§

    impl Add<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 (const: unstable) · source§

    impl Add for i32

    §

    type Output = i32

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: i32) -> i32

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl AddAssign<&i32> for i32

    source§

    fn add_assign(&mut self, other: &i32)

    Performs the += operation. Read more
    ","AddAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl AddAssign for i32

    source§

    fn add_assign(&mut self, other: i32)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitAnd<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitAnd for i32

    §

    type Output = i32

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: i32) -> i32

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl BitAndAssign<&i32> for i32

    source§

    fn bitand_assign(&mut self, other: &i32)

    Performs the &= operation. Read more
    ","BitAndAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl BitAndAssign for i32

    source§

    fn bitand_assign(&mut self, other: i32)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitOr<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitOr for i32

    §

    type Output = i32

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: i32) -> i32

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl BitOrAssign<&i32> for i32

    source§

    fn bitor_assign(&mut self, other: &i32)

    Performs the |= operation. Read more
    ","BitOrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl BitOrAssign for i32

    source§

    fn bitor_assign(&mut self, other: i32)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitXor<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl BitXor for i32

    §

    type Output = i32

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: i32) -> i32

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl BitXorAssign<&i32> for i32

    source§

    fn bitxor_assign(&mut self, other: &i32)

    Performs the ^= operation. Read more
    ","BitXorAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl BitXorAssign for i32

    source§

    fn bitxor_assign(&mut self, other: i32)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl Decodable for i32

    §

    fn consensus_decode<R>(r: &mut R) -> Result<i32, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Default for i32

    source§

    fn default() -> i32

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl<'de> Deserialize<'de> for i32

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<i32, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Div<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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
    §

    type Output = i32

    The resulting type after applying the / operator.
    source§

    fn div(self, other: i32) -> i32

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl DivAssign<&i32> for i32

    source§

    fn div_assign(&mut self, other: &i32)

    Performs the /= operation. Read more
    ","DivAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl DivAssign for i32

    source§

    fn div_assign(&mut self, other: i32)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl Encodable for i32

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl<O> From<I16<O>> for i32
    where\n O: ByteOrder,

    §

    fn from(x: I16<O>) -> i32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl<O> From<I32<O>> for i32
    where\n O: ByteOrder,

    §

    fn from(x: I32<O>) -> i32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    §

    impl From<Parity> for i32

    The conversion returns 0 for even parity and 1 for odd.

    \n
    §

    fn from(parity: Parity) -> i32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<i16> for i32

    source§

    fn from(small: i16) -> i32

    Converts i16 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<i8> for i32

    source§

    fn from(small: i8) -> i32

    Converts i8 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<u16> for i32

    source§

    fn from(small: u16) -> i32

    Converts u16 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.5.0 · source§

    impl From<u8> for i32

    source§

    fn from(small: u8) -> i32

    Converts u8 to i32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl FromStr for i32

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for i32
    where\n E: Error,

    §

    type Deserializer = I32Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> I32Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Mul<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Mul for i32

    §

    type Output = i32

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: i32) -> i32

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl MulAssign<&i32> for i32

    source§

    fn mul_assign(&mut self, other: &i32)

    Performs the *= operation. Read more
    ","MulAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl MulAssign for i32

    source§

    fn mul_assign(&mut self, other: i32)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Neg for i32

    §

    type Output = i32

    The resulting type after applying the - operator.
    source§

    fn neg(self) -> i32

    Performs the unary - operation. Read more
    ","Neg","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Not for i32

    §

    type Output = i32

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> i32

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for i32

    const: unstable · source§

    fn eq(&self, other: &i32) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &i32) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &i32) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &i32) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &i32) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.12.0 · source§

    impl Product for i32

    source§

    fn product<I>(iter: I) -> i32
    where\n I: Iterator<Item = i32>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Rem<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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
    §

    type Output = i32

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: i32) -> i32

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl RemAssign<&i32> for i32

    source§

    fn rem_assign(&mut self, other: &i32)

    Performs the %= operation. Read more
    ","RemAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl RemAssign for i32

    source§

    fn rem_assign(&mut self, other: i32)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl SampleUniform for i32

    §

    type Sampler = UniformInt<i32>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl Serialize for i32

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&i8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&isize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&u8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<&usize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i128> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i16> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i64> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<i8> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<isize> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u128> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u16> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u32> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u64> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<u8> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl<usize> for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shl for i32

    §

    type Output = i32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> i32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i128> for i32

    source§

    fn shl_assign(&mut self, other: &i128)

    Performs the <<= operation. Read more
    ","ShlAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i16> for i32

    source§

    fn shl_assign(&mut self, other: &i16)

    Performs the <<= operation. Read more
    ","ShlAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i32> for i32

    source§

    fn shl_assign(&mut self, other: &i32)

    Performs the <<= operation. Read more
    ","ShlAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i64> for i32

    source§

    fn shl_assign(&mut self, other: &i64)

    Performs the <<= operation. Read more
    ","ShlAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&i8> for i32

    source§

    fn shl_assign(&mut self, other: &i8)

    Performs the <<= operation. Read more
    ","ShlAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&isize> for i32

    source§

    fn shl_assign(&mut self, other: &isize)

    Performs the <<= operation. Read more
    ","ShlAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u128> for i32

    source§

    fn shl_assign(&mut self, other: &u128)

    Performs the <<= operation. Read more
    ","ShlAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u16> for i32

    source§

    fn shl_assign(&mut self, other: &u16)

    Performs the <<= operation. Read more
    ","ShlAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u32> for i32

    source§

    fn shl_assign(&mut self, other: &u32)

    Performs the <<= operation. Read more
    ","ShlAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u64> for i32

    source§

    fn shl_assign(&mut self, other: &u64)

    Performs the <<= operation. Read more
    ","ShlAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&u8> for i32

    source§

    fn shl_assign(&mut self, other: &u8)

    Performs the <<= operation. Read more
    ","ShlAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShlAssign<&usize> for i32

    source§

    fn shl_assign(&mut self, other: &usize)

    Performs the <<= operation. Read more
    ","ShlAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i128> for i32

    source§

    fn shl_assign(&mut self, other: i128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i16> for i32

    source§

    fn shl_assign(&mut self, other: i16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i64> for i32

    source§

    fn shl_assign(&mut self, other: i64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<i8> for i32

    source§

    fn shl_assign(&mut self, other: i8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<isize> for i32

    source§

    fn shl_assign(&mut self, other: isize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u128> for i32

    source§

    fn shl_assign(&mut self, other: u128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u16> for i32

    source§

    fn shl_assign(&mut self, other: u16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u32> for i32

    source§

    fn shl_assign(&mut self, other: u32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u64> for i32

    source§

    fn shl_assign(&mut self, other: u64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<u8> for i32

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign<usize> for i32

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShlAssign for i32

    source§

    fn shl_assign(&mut self, other: i32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&i8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&isize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u128> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u16> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u64> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&u8> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<&usize> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i128> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i16> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i64> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<i8> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<isize> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u128> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u16> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u32> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u64> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<u8> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr<usize> for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Shr for i32

    §

    type Output = i32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> i32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i128> for i32

    source§

    fn shr_assign(&mut self, other: &i128)

    Performs the >>= operation. Read more
    ","ShrAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i16> for i32

    source§

    fn shr_assign(&mut self, other: &i16)

    Performs the >>= operation. Read more
    ","ShrAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i32> for i32

    source§

    fn shr_assign(&mut self, other: &i32)

    Performs the >>= operation. Read more
    ","ShrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i64> for i32

    source§

    fn shr_assign(&mut self, other: &i64)

    Performs the >>= operation. Read more
    ","ShrAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&i8> for i32

    source§

    fn shr_assign(&mut self, other: &i8)

    Performs the >>= operation. Read more
    ","ShrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&isize> for i32

    source§

    fn shr_assign(&mut self, other: &isize)

    Performs the >>= operation. Read more
    ","ShrAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u128> for i32

    source§

    fn shr_assign(&mut self, other: &u128)

    Performs the >>= operation. Read more
    ","ShrAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u16> for i32

    source§

    fn shr_assign(&mut self, other: &u16)

    Performs the >>= operation. Read more
    ","ShrAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u32> for i32

    source§

    fn shr_assign(&mut self, other: &u32)

    Performs the >>= operation. Read more
    ","ShrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u64> for i32

    source§

    fn shr_assign(&mut self, other: &u64)

    Performs the >>= operation. Read more
    ","ShrAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&u8> for i32

    source§

    fn shr_assign(&mut self, other: &u8)

    Performs the >>= operation. Read more
    ","ShrAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl ShrAssign<&usize> for i32

    source§

    fn shr_assign(&mut self, other: &usize)

    Performs the >>= operation. Read more
    ","ShrAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i128> for i32

    source§

    fn shr_assign(&mut self, other: i128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i16> for i32

    source§

    fn shr_assign(&mut self, other: i16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i64> for i32

    source§

    fn shr_assign(&mut self, other: i64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<i8> for i32

    source§

    fn shr_assign(&mut self, other: i8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<isize> for i32

    source§

    fn shr_assign(&mut self, other: isize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u128> for i32

    source§

    fn shr_assign(&mut self, other: u128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u16> for i32

    source§

    fn shr_assign(&mut self, other: u16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u32> for i32

    source§

    fn shr_assign(&mut self, other: u32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u64> for i32

    source§

    fn shr_assign(&mut self, other: u64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<u8> for i32

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign<usize> for i32

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl ShrAssign for i32

    source§

    fn shr_assign(&mut self, other: i32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl SimdElement for i32

    §

    type Mask = i32

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Sub<&i32> for i32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Sub for i32

    §

    type Output = i32

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: i32) -> i32

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.22.0 · source§

    impl SubAssign<&i32> for i32

    source§

    fn sub_assign(&mut self, other: &i32)

    Performs the -= operation. Read more
    ","SubAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.8.0 · source§

    impl SubAssign for i32

    source§

    fn sub_assign(&mut self, other: i32)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.12.0 · source§

    impl Sum for i32

    source§

    fn sum<I>(iter: I) -> i32
    where\n I: Iterator<Item = i32>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<i128> for i32

    source§

    fn try_from(u: i128) -> Result<i32, <i32 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<i64> for i32

    source§

    fn try_from(u: i64) -> Result<i32, <i32 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<isize> for i32

    source§

    fn try_from(u: isize) -> Result<i32, <i32 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<u128> for i32

    source§

    fn try_from(u: u128) -> Result<i32, <i32 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<u32> for i32

    source§

    fn try_from(u: u32) -> Result<i32, <i32 as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<u64> for i32

    source§

    fn try_from(u: u64) -> Result<i32, <i32 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.34.0 · source§

    impl TryFrom<usize> for i32

    source§

    fn try_from(u: usize) -> Result<i32, <i32 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl ConstParamTy for i32

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Copy for i32

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    1.0.0 · source§

    impl Eq for i32

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl MaskElement for i32

    ","MaskElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl SimdCast for i32

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl StructuralPartialEq for i32

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl TrustedStep for i32

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl Weight for i32

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"],["
    source§

    impl ZeroablePrimitive for i32

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::c_int"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i8.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i8.js index b80dadbdb5..041c863d3c 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i8.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.i8.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_chain":[["
    1.0.0 · source§

    impl Add<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 (const: unstable) · source§

    impl Add for i8

    §

    type Output = i8

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: i8) -> i8

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl AddAssign<&i8> for i8

    source§

    fn add_assign(&mut self, other: &i8)

    Performs the += operation. Read more
    ","AddAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl AddAssign for i8

    source§

    fn add_assign(&mut self, other: i8)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitAnd<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitAnd for i8

    §

    type Output = i8

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: i8) -> i8

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl BitAndAssign<&i8> for i8

    source§

    fn bitand_assign(&mut self, other: &i8)

    Performs the &= operation. Read more
    ","BitAndAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl BitAndAssign for i8

    source§

    fn bitand_assign(&mut self, other: i8)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitOr<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitOr for i8

    §

    type Output = i8

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: i8) -> i8

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl BitOrAssign<&i8> for i8

    source§

    fn bitor_assign(&mut self, other: &i8)

    Performs the |= operation. Read more
    ","BitOrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl BitOrAssign for i8

    source§

    fn bitor_assign(&mut self, other: i8)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitXor<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitXor for i8

    §

    type Output = i8

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: i8) -> i8

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl BitXorAssign<&i8> for i8

    source§

    fn bitxor_assign(&mut self, other: &i8)

    Performs the ^= operation. Read more
    ","BitXorAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl BitXorAssign for i8

    source§

    fn bitxor_assign(&mut self, other: i8)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    §

    impl Decodable for i8

    §

    fn consensus_decode<R>(r: &mut R) -> Result<i8, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Default for i8

    source§

    fn default() -> i8

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl<'de> Deserialize<'de> for i8

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<i8, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Div<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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
    §

    type Output = i8

    The resulting type after applying the / operator.
    source§

    fn div(self, other: i8) -> i8

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl DivAssign<&i8> for i8

    source§

    fn div_assign(&mut self, other: &i8)

    Performs the /= operation. Read more
    ","DivAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl DivAssign for i8

    source§

    fn div_assign(&mut self, other: i8)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    §

    impl Encodable for i8

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl FromStr for i8

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for i8
    where\n E: Error,

    §

    type Deserializer = I8Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> I8Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Mul<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Mul for i8

    §

    type Output = i8

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: i8) -> i8

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl MulAssign<&i8> for i8

    source§

    fn mul_assign(&mut self, other: &i8)

    Performs the *= operation. Read more
    ","MulAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl MulAssign for i8

    source§

    fn mul_assign(&mut self, other: i8)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Neg for i8

    §

    type Output = i8

    The resulting type after applying the - operator.
    source§

    fn neg(self) -> i8

    Performs the unary - operation. Read more
    ","Neg","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Not for i8

    §

    type Output = i8

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> i8

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl PartialEq<Value> for i8

    source§

    fn eq(&self, other: &Value) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for i8

    const: unstable · source§

    fn eq(&self, other: &i8) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &i8) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &i8) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &i8) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &i8) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.12.0 · source§

    impl Product for i8

    source§

    fn product<I>(iter: I) -> i8
    where\n I: Iterator<Item = i8>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Rem<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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
    §

    type Output = i8

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: i8) -> i8

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl RemAssign<&i8> for i8

    source§

    fn rem_assign(&mut self, other: &i8)

    Performs the %= operation. Read more
    ","RemAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl RemAssign for i8

    source§

    fn rem_assign(&mut self, other: i8)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl SampleUniform for i8

    §

    type Sampler = UniformInt<i8>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl Serialize for i8

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&isize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&usize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i128> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i16> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i32> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i64> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<isize> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u128> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u16> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u32> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u64> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u8> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<usize> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i128> for i8

    source§

    fn shl_assign(&mut self, other: &i128)

    Performs the <<= operation. Read more
    ","ShlAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i16> for i8

    source§

    fn shl_assign(&mut self, other: &i16)

    Performs the <<= operation. Read more
    ","ShlAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i32> for i8

    source§

    fn shl_assign(&mut self, other: &i32)

    Performs the <<= operation. Read more
    ","ShlAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i64> for i8

    source§

    fn shl_assign(&mut self, other: &i64)

    Performs the <<= operation. Read more
    ","ShlAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i8> for i8

    source§

    fn shl_assign(&mut self, other: &i8)

    Performs the <<= operation. Read more
    ","ShlAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&isize> for i8

    source§

    fn shl_assign(&mut self, other: &isize)

    Performs the <<= operation. Read more
    ","ShlAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u128> for i8

    source§

    fn shl_assign(&mut self, other: &u128)

    Performs the <<= operation. Read more
    ","ShlAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u16> for i8

    source§

    fn shl_assign(&mut self, other: &u16)

    Performs the <<= operation. Read more
    ","ShlAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u32> for i8

    source§

    fn shl_assign(&mut self, other: &u32)

    Performs the <<= operation. Read more
    ","ShlAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u64> for i8

    source§

    fn shl_assign(&mut self, other: &u64)

    Performs the <<= operation. Read more
    ","ShlAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u8> for i8

    source§

    fn shl_assign(&mut self, other: &u8)

    Performs the <<= operation. Read more
    ","ShlAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&usize> for i8

    source§

    fn shl_assign(&mut self, other: &usize)

    Performs the <<= operation. Read more
    ","ShlAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i128> for i8

    source§

    fn shl_assign(&mut self, other: i128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i16> for i8

    source§

    fn shl_assign(&mut self, other: i16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i32> for i8

    source§

    fn shl_assign(&mut self, other: i32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i64> for i8

    source§

    fn shl_assign(&mut self, other: i64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<isize> for i8

    source§

    fn shl_assign(&mut self, other: isize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u128> for i8

    source§

    fn shl_assign(&mut self, other: u128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u16> for i8

    source§

    fn shl_assign(&mut self, other: u16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u32> for i8

    source§

    fn shl_assign(&mut self, other: u32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u64> for i8

    source§

    fn shl_assign(&mut self, other: u64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u8> for i8

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<usize> for i8

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign for i8

    source§

    fn shl_assign(&mut self, other: i8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&isize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&usize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i128> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i16> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i32> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i64> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<isize> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u128> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u16> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u32> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u64> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u8> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<usize> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i128> for i8

    source§

    fn shr_assign(&mut self, other: &i128)

    Performs the >>= operation. Read more
    ","ShrAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i16> for i8

    source§

    fn shr_assign(&mut self, other: &i16)

    Performs the >>= operation. Read more
    ","ShrAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i32> for i8

    source§

    fn shr_assign(&mut self, other: &i32)

    Performs the >>= operation. Read more
    ","ShrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i64> for i8

    source§

    fn shr_assign(&mut self, other: &i64)

    Performs the >>= operation. Read more
    ","ShrAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i8> for i8

    source§

    fn shr_assign(&mut self, other: &i8)

    Performs the >>= operation. Read more
    ","ShrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&isize> for i8

    source§

    fn shr_assign(&mut self, other: &isize)

    Performs the >>= operation. Read more
    ","ShrAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u128> for i8

    source§

    fn shr_assign(&mut self, other: &u128)

    Performs the >>= operation. Read more
    ","ShrAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u16> for i8

    source§

    fn shr_assign(&mut self, other: &u16)

    Performs the >>= operation. Read more
    ","ShrAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u32> for i8

    source§

    fn shr_assign(&mut self, other: &u32)

    Performs the >>= operation. Read more
    ","ShrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u64> for i8

    source§

    fn shr_assign(&mut self, other: &u64)

    Performs the >>= operation. Read more
    ","ShrAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u8> for i8

    source§

    fn shr_assign(&mut self, other: &u8)

    Performs the >>= operation. Read more
    ","ShrAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&usize> for i8

    source§

    fn shr_assign(&mut self, other: &usize)

    Performs the >>= operation. Read more
    ","ShrAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i128> for i8

    source§

    fn shr_assign(&mut self, other: i128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i16> for i8

    source§

    fn shr_assign(&mut self, other: i16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i32> for i8

    source§

    fn shr_assign(&mut self, other: i32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i64> for i8

    source§

    fn shr_assign(&mut self, other: i64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<isize> for i8

    source§

    fn shr_assign(&mut self, other: isize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u128> for i8

    source§

    fn shr_assign(&mut self, other: u128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u16> for i8

    source§

    fn shr_assign(&mut self, other: u16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u32> for i8

    source§

    fn shr_assign(&mut self, other: u32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u64> for i8

    source§

    fn shr_assign(&mut self, other: u64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u8> for i8

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<usize> for i8

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign for i8

    source§

    fn shr_assign(&mut self, other: i8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl SimdElement for i8

    §

    type Mask = i8

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Sub<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Sub for i8

    §

    type Output = i8

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: i8) -> i8

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl SubAssign<&i8> for i8

    source§

    fn sub_assign(&mut self, other: &i8)

    Performs the -= operation. Read more
    ","SubAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl SubAssign for i8

    source§

    fn sub_assign(&mut self, other: i8)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.12.0 · source§

    impl Sum for i8

    source§

    fn sum<I>(iter: I) -> i8
    where\n I: Iterator<Item = i8>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i128> for i8

    source§

    fn try_from(u: i128) -> Result<i8, <i8 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i16> for i8

    source§

    fn try_from(u: i16) -> Result<i8, <i8 as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i32> for i8

    source§

    fn try_from(u: i32) -> Result<i8, <i8 as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i64> for i8

    source§

    fn try_from(u: i64) -> Result<i8, <i8 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<isize> for i8

    source§

    fn try_from(u: isize) -> Result<i8, <i8 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u128> for i8

    source§

    fn try_from(u: u128) -> Result<i8, <i8 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u16> for i8

    source§

    fn try_from(u: u16) -> Result<i8, <i8 as TryFrom<u16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u32> for i8

    source§

    fn try_from(u: u32) -> Result<i8, <i8 as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u64> for i8

    source§

    fn try_from(u: u64) -> Result<i8, <i8 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u8> for i8

    source§

    fn try_from(u: u8) -> Result<i8, <i8 as TryFrom<u8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<usize> for i8

    source§

    fn try_from(u: usize) -> Result<i8, <i8 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl ConstParamTy for i8

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Copy for i8

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Eq for i8

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl MaskElement for i8

    ","MaskElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl SimdCast for i8

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl StructuralPartialEq for i8

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl TrustedStep for i8

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl Weight for i8

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl ZeroablePrimitive for i8

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"]] +"bdk_chain":[["
    1.0.0 · source§

    impl Add<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 (const: unstable) · source§

    impl Add for i8

    §

    type Output = i8

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: i8) -> i8

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl AddAssign<&i8> for i8

    source§

    fn add_assign(&mut self, other: &i8)

    Performs the += operation. Read more
    ","AddAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl AddAssign for i8

    source§

    fn add_assign(&mut self, other: i8)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitAnd<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitAnd for i8

    §

    type Output = i8

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: i8) -> i8

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl BitAndAssign<&i8> for i8

    source§

    fn bitand_assign(&mut self, other: &i8)

    Performs the &= operation. Read more
    ","BitAndAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl BitAndAssign for i8

    source§

    fn bitand_assign(&mut self, other: i8)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitOr<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitOr for i8

    §

    type Output = i8

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: i8) -> i8

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl BitOrAssign<&i8> for i8

    source§

    fn bitor_assign(&mut self, other: &i8)

    Performs the |= operation. Read more
    ","BitOrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl BitOrAssign for i8

    source§

    fn bitor_assign(&mut self, other: i8)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitXor<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl BitXor for i8

    §

    type Output = i8

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: i8) -> i8

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl BitXorAssign<&i8> for i8

    source§

    fn bitxor_assign(&mut self, other: &i8)

    Performs the ^= operation. Read more
    ","BitXorAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl BitXorAssign for i8

    source§

    fn bitxor_assign(&mut self, other: i8)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    §

    impl Decodable for i8

    §

    fn consensus_decode<R>(r: &mut R) -> Result<i8, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Default for i8

    source§

    fn default() -> i8

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl<'de> Deserialize<'de> for i8

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<i8, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Div<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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
    §

    type Output = i8

    The resulting type after applying the / operator.
    source§

    fn div(self, other: i8) -> i8

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl DivAssign<&i8> for i8

    source§

    fn div_assign(&mut self, other: &i8)

    Performs the /= operation. Read more
    ","DivAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl DivAssign for i8

    source§

    fn div_assign(&mut self, other: i8)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    §

    impl Encodable for i8

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl FromStr for i8

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for i8
    where\n E: Error,

    §

    type Deserializer = I8Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> I8Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Mul<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Mul for i8

    §

    type Output = i8

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: i8) -> i8

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl MulAssign<&i8> for i8

    source§

    fn mul_assign(&mut self, other: &i8)

    Performs the *= operation. Read more
    ","MulAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl MulAssign for i8

    source§

    fn mul_assign(&mut self, other: i8)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Neg for i8

    §

    type Output = i8

    The resulting type after applying the - operator.
    source§

    fn neg(self) -> i8

    Performs the unary - operation. Read more
    ","Neg","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Not for i8

    §

    type Output = i8

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> i8

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for i8

    const: unstable · source§

    fn eq(&self, other: &i8) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &i8) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &i8) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &i8) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &i8) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.12.0 · source§

    impl Product for i8

    source§

    fn product<I>(iter: I) -> i8
    where\n I: Iterator<Item = i8>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Rem<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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
    §

    type Output = i8

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: i8) -> i8

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl RemAssign<&i8> for i8

    source§

    fn rem_assign(&mut self, other: &i8)

    Performs the %= operation. Read more
    ","RemAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl RemAssign for i8

    source§

    fn rem_assign(&mut self, other: i8)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl SampleUniform for i8

    §

    type Sampler = UniformInt<i8>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl Serialize for i8

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&isize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&u8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<&usize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i128> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i16> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i32> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<i64> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<isize> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u128> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u16> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u32> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u64> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<u8> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl<usize> for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shl for i8

    §

    type Output = i8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> i8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i128> for i8

    source§

    fn shl_assign(&mut self, other: &i128)

    Performs the <<= operation. Read more
    ","ShlAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i16> for i8

    source§

    fn shl_assign(&mut self, other: &i16)

    Performs the <<= operation. Read more
    ","ShlAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i32> for i8

    source§

    fn shl_assign(&mut self, other: &i32)

    Performs the <<= operation. Read more
    ","ShlAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i64> for i8

    source§

    fn shl_assign(&mut self, other: &i64)

    Performs the <<= operation. Read more
    ","ShlAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&i8> for i8

    source§

    fn shl_assign(&mut self, other: &i8)

    Performs the <<= operation. Read more
    ","ShlAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&isize> for i8

    source§

    fn shl_assign(&mut self, other: &isize)

    Performs the <<= operation. Read more
    ","ShlAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u128> for i8

    source§

    fn shl_assign(&mut self, other: &u128)

    Performs the <<= operation. Read more
    ","ShlAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u16> for i8

    source§

    fn shl_assign(&mut self, other: &u16)

    Performs the <<= operation. Read more
    ","ShlAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u32> for i8

    source§

    fn shl_assign(&mut self, other: &u32)

    Performs the <<= operation. Read more
    ","ShlAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u64> for i8

    source§

    fn shl_assign(&mut self, other: &u64)

    Performs the <<= operation. Read more
    ","ShlAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&u8> for i8

    source§

    fn shl_assign(&mut self, other: &u8)

    Performs the <<= operation. Read more
    ","ShlAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShlAssign<&usize> for i8

    source§

    fn shl_assign(&mut self, other: &usize)

    Performs the <<= operation. Read more
    ","ShlAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i128> for i8

    source§

    fn shl_assign(&mut self, other: i128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i16> for i8

    source§

    fn shl_assign(&mut self, other: i16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i32> for i8

    source§

    fn shl_assign(&mut self, other: i32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<i64> for i8

    source§

    fn shl_assign(&mut self, other: i64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<isize> for i8

    source§

    fn shl_assign(&mut self, other: isize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u128> for i8

    source§

    fn shl_assign(&mut self, other: u128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u16> for i8

    source§

    fn shl_assign(&mut self, other: u16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u32> for i8

    source§

    fn shl_assign(&mut self, other: u32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u64> for i8

    source§

    fn shl_assign(&mut self, other: u64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<u8> for i8

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign<usize> for i8

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShlAssign for i8

    source§

    fn shl_assign(&mut self, other: i8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&isize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u128> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u16> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u32> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u64> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&u8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<&usize> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i128> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i16> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i32> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<i64> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<isize> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u128> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u16> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u32> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u64> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<u8> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr<usize> for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Shr for i8

    §

    type Output = i8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> i8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i128> for i8

    source§

    fn shr_assign(&mut self, other: &i128)

    Performs the >>= operation. Read more
    ","ShrAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i16> for i8

    source§

    fn shr_assign(&mut self, other: &i16)

    Performs the >>= operation. Read more
    ","ShrAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i32> for i8

    source§

    fn shr_assign(&mut self, other: &i32)

    Performs the >>= operation. Read more
    ","ShrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i64> for i8

    source§

    fn shr_assign(&mut self, other: &i64)

    Performs the >>= operation. Read more
    ","ShrAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&i8> for i8

    source§

    fn shr_assign(&mut self, other: &i8)

    Performs the >>= operation. Read more
    ","ShrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&isize> for i8

    source§

    fn shr_assign(&mut self, other: &isize)

    Performs the >>= operation. Read more
    ","ShrAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u128> for i8

    source§

    fn shr_assign(&mut self, other: &u128)

    Performs the >>= operation. Read more
    ","ShrAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u16> for i8

    source§

    fn shr_assign(&mut self, other: &u16)

    Performs the >>= operation. Read more
    ","ShrAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u32> for i8

    source§

    fn shr_assign(&mut self, other: &u32)

    Performs the >>= operation. Read more
    ","ShrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u64> for i8

    source§

    fn shr_assign(&mut self, other: &u64)

    Performs the >>= operation. Read more
    ","ShrAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&u8> for i8

    source§

    fn shr_assign(&mut self, other: &u8)

    Performs the >>= operation. Read more
    ","ShrAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl ShrAssign<&usize> for i8

    source§

    fn shr_assign(&mut self, other: &usize)

    Performs the >>= operation. Read more
    ","ShrAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i128> for i8

    source§

    fn shr_assign(&mut self, other: i128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i16> for i8

    source§

    fn shr_assign(&mut self, other: i16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i32> for i8

    source§

    fn shr_assign(&mut self, other: i32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<i64> for i8

    source§

    fn shr_assign(&mut self, other: i64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<isize> for i8

    source§

    fn shr_assign(&mut self, other: isize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u128> for i8

    source§

    fn shr_assign(&mut self, other: u128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u16> for i8

    source§

    fn shr_assign(&mut self, other: u16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u32> for i8

    source§

    fn shr_assign(&mut self, other: u32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u64> for i8

    source§

    fn shr_assign(&mut self, other: u64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<u8> for i8

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign<usize> for i8

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl ShrAssign for i8

    source§

    fn shr_assign(&mut self, other: i8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl SimdElement for i8

    §

    type Mask = i8

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Sub<&i8> for i8

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Sub for i8

    §

    type Output = i8

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: i8) -> i8

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.22.0 · source§

    impl SubAssign<&i8> for i8

    source§

    fn sub_assign(&mut self, other: &i8)

    Performs the -= operation. Read more
    ","SubAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.8.0 · source§

    impl SubAssign for i8

    source§

    fn sub_assign(&mut self, other: i8)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.12.0 · source§

    impl Sum for i8

    source§

    fn sum<I>(iter: I) -> i8
    where\n I: Iterator<Item = i8>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i128> for i8

    source§

    fn try_from(u: i128) -> Result<i8, <i8 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i16> for i8

    source§

    fn try_from(u: i16) -> Result<i8, <i8 as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i32> for i8

    source§

    fn try_from(u: i32) -> Result<i8, <i8 as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<i64> for i8

    source§

    fn try_from(u: i64) -> Result<i8, <i8 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<isize> for i8

    source§

    fn try_from(u: isize) -> Result<i8, <i8 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u128> for i8

    source§

    fn try_from(u: u128) -> Result<i8, <i8 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u16> for i8

    source§

    fn try_from(u: u16) -> Result<i8, <i8 as TryFrom<u16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u32> for i8

    source§

    fn try_from(u: u32) -> Result<i8, <i8 as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u64> for i8

    source§

    fn try_from(u: u64) -> Result<i8, <i8 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<u8> for i8

    source§

    fn try_from(u: u8) -> Result<i8, <i8 as TryFrom<u8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.34.0 · source§

    impl TryFrom<usize> for i8

    source§

    fn try_from(u: usize) -> Result<i8, <i8 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl ConstParamTy for i8

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Copy for i8

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    1.0.0 · source§

    impl Eq for i8

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl MaskElement for i8

    ","MaskElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl SimdCast for i8

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl StructuralPartialEq for i8

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl TrustedStep for i8

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl Weight for i8

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"],["
    source§

    impl ZeroablePrimitive for i8

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::c_char"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u32.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u32.js index 99ca6d4798..d6b856d077 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u32.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u32.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_chain":[["
    1.0.0 · source§

    impl Add<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 (const: unstable) · source§

    impl Add for u32

    §

    type Output = u32

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: u32) -> u32

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl AddAssign<&u32> for u32

    source§

    fn add_assign(&mut self, other: &u32)

    Performs the += operation. Read more
    ","AddAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl AddAssign for u32

    source§

    fn add_assign(&mut self, other: u32)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitAnd<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitAnd for u32

    §

    type Output = u32

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: u32) -> u32

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl BitAndAssign<&u32> for u32

    source§

    fn bitand_assign(&mut self, other: &u32)

    Performs the &= operation. Read more
    ","BitAndAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl BitAndAssign for u32

    source§

    fn bitand_assign(&mut self, other: u32)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitOr<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitOr for u32

    §

    type Output = u32

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: u32) -> u32

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl BitOrAssign<&u32> for u32

    source§

    fn bitor_assign(&mut self, other: &u32)

    Performs the |= operation. Read more
    ","BitOrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl BitOrAssign for u32

    source§

    fn bitor_assign(&mut self, other: u32)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitXor<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitXor for u32

    §

    type Output = u32

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: u32) -> u32

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl BitXorAssign<&u32> for u32

    source§

    fn bitxor_assign(&mut self, other: &u32)

    Performs the ^= operation. Read more
    ","BitXorAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl BitXorAssign for u32

    source§

    fn bitxor_assign(&mut self, other: u32)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl Decodable for u32

    §

    fn consensus_decode<R>(r: &mut R) -> Result<u32, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Default for u32

    source§

    fn default() -> u32

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl<'de> Deserialize<'de> for u32

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<u32, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Div<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the / operator.
    ","Div>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the / operator.
    source§

    fn div(self, other: u32) -> u32

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl DivAssign<&u32> for u32

    source§

    fn div_assign(&mut self, other: &u32)

    Performs the /= operation. Read more
    ","DivAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl DivAssign for u32

    source§

    fn div_assign(&mut self, other: u32)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl Encodable for u32

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl From<AsciiChar> for u32

    source§

    fn from(chr: AsciiChar) -> u32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl From<ChildNumber> for u32

    §

    fn from(cnum: ChildNumber) -> u32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl From<Sequence> for u32

    §

    fn from(sequence: Sequence) -> u32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl<O> From<U16<O>> for u32
    where\n O: ByteOrder,

    §

    fn from(x: U16<O>) -> u32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl<O> From<U32<O>> for u32
    where\n O: ByteOrder,

    §

    fn from(x: U32<O>) -> u32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.5.0 · source§

    impl From<u16> for u32

    source§

    fn from(small: u16) -> u32

    Converts u16 to u32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.5.0 · source§

    impl From<u8> for u32

    source§

    fn from(small: u8) -> u32

    Converts u8 to u32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl FromStr for u32

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for u32
    where\n E: Error,

    §

    type Deserializer = U32Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> U32Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Mul<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.31.0 · source§

    impl Mul<Duration> for u32

    §

    type Output = Duration

    The resulting type after applying the * operator.
    source§

    fn mul(self, rhs: Duration) -> Duration

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Mul for u32

    §

    type Output = u32

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: u32) -> u32

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl MulAssign<&u32> for u32

    source§

    fn mul_assign(&mut self, other: &u32)

    Performs the *= operation. Read more
    ","MulAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl MulAssign for u32

    source§

    fn mul_assign(&mut self, other: u32)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Not for u32

    §

    type Output = u32

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> u32

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl PackedFe32 for u32

    §

    const ONE: u32 = 1u32

    The one constant, for which stdlib provides no existing trait.
    §

    fn unpack(&self, n: usize) -> u8

    Extracts the coefficient of the x^n from the packed polynomial.
    §

    fn mul_by_x_then_add(&mut self, degree: usize, add: u8) -> u8

    Multiply the polynomial by x, drop its highest coefficient (and return it), and\nadd a new field element to the now-0 constant coefficient. Read more
    §

    const WIDTH: usize = _

    The number of fe32s that can fit into the type; computed as floor(bitwidth / 5).
    ","PackedFe32","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl PartialEq<Value> for u32

    source§

    fn eq(&self, other: &Value) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for u32

    const: unstable · source§

    fn eq(&self, other: &u32) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &u32) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &u32) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &u32) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &u32) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.12.0 · source§

    impl Product for u32

    source§

    fn product<I>(iter: I) -> u32
    where\n I: Iterator<Item = u32>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Rem<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the % operator.
    ","Rem>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: u32) -> u32

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl RemAssign<&u32> for u32

    source§

    fn rem_assign(&mut self, other: &u32)

    Performs the %= operation. Read more
    ","RemAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl RemAssign for u32

    source§

    fn rem_assign(&mut self, other: u32)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl SampleUniform for u32

    §

    type Sampler = UniformInt<u32>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl Serialize for u32

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&isize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&usize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i128> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i16> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i32> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i64> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i8> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<isize> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u128> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u16> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u64> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u8> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<usize> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i128> for u32

    source§

    fn shl_assign(&mut self, other: &i128)

    Performs the <<= operation. Read more
    ","ShlAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i16> for u32

    source§

    fn shl_assign(&mut self, other: &i16)

    Performs the <<= operation. Read more
    ","ShlAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i32> for u32

    source§

    fn shl_assign(&mut self, other: &i32)

    Performs the <<= operation. Read more
    ","ShlAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i64> for u32

    source§

    fn shl_assign(&mut self, other: &i64)

    Performs the <<= operation. Read more
    ","ShlAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i8> for u32

    source§

    fn shl_assign(&mut self, other: &i8)

    Performs the <<= operation. Read more
    ","ShlAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&isize> for u32

    source§

    fn shl_assign(&mut self, other: &isize)

    Performs the <<= operation. Read more
    ","ShlAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u128> for u32

    source§

    fn shl_assign(&mut self, other: &u128)

    Performs the <<= operation. Read more
    ","ShlAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u16> for u32

    source§

    fn shl_assign(&mut self, other: &u16)

    Performs the <<= operation. Read more
    ","ShlAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u32> for u32

    source§

    fn shl_assign(&mut self, other: &u32)

    Performs the <<= operation. Read more
    ","ShlAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u64> for u32

    source§

    fn shl_assign(&mut self, other: &u64)

    Performs the <<= operation. Read more
    ","ShlAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u8> for u32

    source§

    fn shl_assign(&mut self, other: &u8)

    Performs the <<= operation. Read more
    ","ShlAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&usize> for u32

    source§

    fn shl_assign(&mut self, other: &usize)

    Performs the <<= operation. Read more
    ","ShlAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i128> for u32

    source§

    fn shl_assign(&mut self, other: i128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i16> for u32

    source§

    fn shl_assign(&mut self, other: i16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i32> for u32

    source§

    fn shl_assign(&mut self, other: i32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i64> for u32

    source§

    fn shl_assign(&mut self, other: i64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i8> for u32

    source§

    fn shl_assign(&mut self, other: i8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<isize> for u32

    source§

    fn shl_assign(&mut self, other: isize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u128> for u32

    source§

    fn shl_assign(&mut self, other: u128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u16> for u32

    source§

    fn shl_assign(&mut self, other: u16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u64> for u32

    source§

    fn shl_assign(&mut self, other: u64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u8> for u32

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<usize> for u32

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign for u32

    source§

    fn shl_assign(&mut self, other: u32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&isize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&usize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i128> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i16> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i32> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i64> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i8> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<isize> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u128> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u16> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u64> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u8> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<usize> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i128> for u32

    source§

    fn shr_assign(&mut self, other: &i128)

    Performs the >>= operation. Read more
    ","ShrAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i16> for u32

    source§

    fn shr_assign(&mut self, other: &i16)

    Performs the >>= operation. Read more
    ","ShrAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i32> for u32

    source§

    fn shr_assign(&mut self, other: &i32)

    Performs the >>= operation. Read more
    ","ShrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i64> for u32

    source§

    fn shr_assign(&mut self, other: &i64)

    Performs the >>= operation. Read more
    ","ShrAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i8> for u32

    source§

    fn shr_assign(&mut self, other: &i8)

    Performs the >>= operation. Read more
    ","ShrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&isize> for u32

    source§

    fn shr_assign(&mut self, other: &isize)

    Performs the >>= operation. Read more
    ","ShrAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u128> for u32

    source§

    fn shr_assign(&mut self, other: &u128)

    Performs the >>= operation. Read more
    ","ShrAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u16> for u32

    source§

    fn shr_assign(&mut self, other: &u16)

    Performs the >>= operation. Read more
    ","ShrAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u32> for u32

    source§

    fn shr_assign(&mut self, other: &u32)

    Performs the >>= operation. Read more
    ","ShrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u64> for u32

    source§

    fn shr_assign(&mut self, other: &u64)

    Performs the >>= operation. Read more
    ","ShrAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u8> for u32

    source§

    fn shr_assign(&mut self, other: &u8)

    Performs the >>= operation. Read more
    ","ShrAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&usize> for u32

    source§

    fn shr_assign(&mut self, other: &usize)

    Performs the >>= operation. Read more
    ","ShrAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i128> for u32

    source§

    fn shr_assign(&mut self, other: i128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i16> for u32

    source§

    fn shr_assign(&mut self, other: i16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i32> for u32

    source§

    fn shr_assign(&mut self, other: i32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i64> for u32

    source§

    fn shr_assign(&mut self, other: i64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i8> for u32

    source§

    fn shr_assign(&mut self, other: i8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<isize> for u32

    source§

    fn shr_assign(&mut self, other: isize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u128> for u32

    source§

    fn shr_assign(&mut self, other: u128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u16> for u32

    source§

    fn shr_assign(&mut self, other: u16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u64> for u32

    source§

    fn shr_assign(&mut self, other: u64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u8> for u32

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<usize> for u32

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign for u32

    source§

    fn shr_assign(&mut self, other: u32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl SimdElement for u32

    §

    type Mask = i32

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Sub<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Sub for u32

    §

    type Output = u32

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: u32) -> u32

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl SubAssign<&u32> for u32

    source§

    fn sub_assign(&mut self, other: &u32)

    Performs the -= operation. Read more
    ","SubAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl SubAssign for u32

    source§

    fn sub_assign(&mut self, other: u32)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.12.0 · source§

    impl Sum for u32

    source§

    fn sum<I>(iter: I) -> u32
    where\n I: Iterator<Item = u32>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i128> for u32

    source§

    fn try_from(u: i128) -> Result<u32, <u32 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i16> for u32

    source§

    fn try_from(u: i16) -> Result<u32, <u32 as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i32> for u32

    source§

    fn try_from(u: i32) -> Result<u32, <u32 as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i64> for u32

    source§

    fn try_from(u: i64) -> Result<u32, <u32 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i8> for u32

    source§

    fn try_from(u: i8) -> Result<u32, <u32 as TryFrom<i8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<isize> for u32

    source§

    fn try_from(u: isize) -> Result<u32, <u32 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<u128> for u32

    source§

    fn try_from(u: u128) -> Result<u32, <u32 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<u64> for u32

    source§

    fn try_from(u: u64) -> Result<u32, <u32 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<usize> for u32

    source§

    fn try_from(u: usize) -> Result<u32, <u32 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl ConstParamTy for u32

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Copy for u32

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Eq for u32

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl SimdCast for u32

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl StructuralPartialEq for u32

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl TrustedStep for u32

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl Weight for u32

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl ZeroablePrimitive for u32

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"]] +"bdk_chain":[["
    1.0.0 · source§

    impl Add<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 (const: unstable) · source§

    impl Add for u32

    §

    type Output = u32

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: u32) -> u32

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl AddAssign<&u32> for u32

    source§

    fn add_assign(&mut self, other: &u32)

    Performs the += operation. Read more
    ","AddAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl AddAssign for u32

    source§

    fn add_assign(&mut self, other: u32)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitAnd<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitAnd for u32

    §

    type Output = u32

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: u32) -> u32

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl BitAndAssign<&u32> for u32

    source§

    fn bitand_assign(&mut self, other: &u32)

    Performs the &= operation. Read more
    ","BitAndAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl BitAndAssign for u32

    source§

    fn bitand_assign(&mut self, other: u32)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitOr<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitOr for u32

    §

    type Output = u32

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: u32) -> u32

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl BitOrAssign<&u32> for u32

    source§

    fn bitor_assign(&mut self, other: &u32)

    Performs the |= operation. Read more
    ","BitOrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl BitOrAssign for u32

    source§

    fn bitor_assign(&mut self, other: u32)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitXor<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl BitXor for u32

    §

    type Output = u32

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: u32) -> u32

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl BitXorAssign<&u32> for u32

    source§

    fn bitxor_assign(&mut self, other: &u32)

    Performs the ^= operation. Read more
    ","BitXorAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl BitXorAssign for u32

    source§

    fn bitxor_assign(&mut self, other: u32)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl Decodable for u32

    §

    fn consensus_decode<R>(r: &mut R) -> Result<u32, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Default for u32

    source§

    fn default() -> u32

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl<'de> Deserialize<'de> for u32

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<u32, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Div<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the / operator.
    ","Div>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the / operator.
    source§

    fn div(self, other: u32) -> u32

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl DivAssign<&u32> for u32

    source§

    fn div_assign(&mut self, other: &u32)

    Performs the /= operation. Read more
    ","DivAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl DivAssign for u32

    source§

    fn div_assign(&mut self, other: u32)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl Encodable for u32

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl From<AsciiChar> for u32

    source§

    fn from(chr: AsciiChar) -> u32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl From<ChildNumber> for u32

    §

    fn from(cnum: ChildNumber) -> u32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl From<Sequence> for u32

    §

    fn from(sequence: Sequence) -> u32

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl<O> From<U16<O>> for u32
    where\n O: ByteOrder,

    §

    fn from(x: U16<O>) -> u32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl<O> From<U32<O>> for u32
    where\n O: ByteOrder,

    §

    fn from(x: U32<O>) -> u32

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.5.0 · source§

    impl From<u16> for u32

    source§

    fn from(small: u16) -> u32

    Converts u16 to u32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.5.0 · source§

    impl From<u8> for u32

    source§

    fn from(small: u8) -> u32

    Converts u8 to u32 losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl FromStr for u32

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for u32
    where\n E: Error,

    §

    type Deserializer = U32Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> U32Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Mul<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.31.0 · source§

    impl Mul<Duration> for u32

    §

    type Output = Duration

    The resulting type after applying the * operator.
    source§

    fn mul(self, rhs: Duration) -> Duration

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Mul for u32

    §

    type Output = u32

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: u32) -> u32

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl MulAssign<&u32> for u32

    source§

    fn mul_assign(&mut self, other: &u32)

    Performs the *= operation. Read more
    ","MulAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl MulAssign for u32

    source§

    fn mul_assign(&mut self, other: u32)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Not for u32

    §

    type Output = u32

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> u32

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    §

    impl PackedFe32 for u32

    §

    const ONE: u32 = 1u32

    The one constant, for which stdlib provides no existing trait.
    §

    fn unpack(&self, n: usize) -> u8

    Extracts the coefficient of the x^n from the packed polynomial.
    §

    fn mul_by_x_then_add(&mut self, degree: usize, add: u8) -> u8

    Multiply the polynomial by x, drop its highest coefficient (and return it), and\nadd a new field element to the now-0 constant coefficient. Read more
    §

    const WIDTH: usize = _

    The number of fe32s that can fit into the type; computed as floor(bitwidth / 5).
    ","PackedFe32","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for u32

    const: unstable · source§

    fn eq(&self, other: &u32) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &u32) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &u32) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &u32) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &u32) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.12.0 · source§

    impl Product for u32

    source§

    fn product<I>(iter: I) -> u32
    where\n I: Iterator<Item = u32>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Rem<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the % operator.
    ","Rem>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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
    §

    type Output = u32

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: u32) -> u32

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl RemAssign<&u32> for u32

    source§

    fn rem_assign(&mut self, other: &u32)

    Performs the %= operation. Read more
    ","RemAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl RemAssign for u32

    source§

    fn rem_assign(&mut self, other: u32)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl SampleUniform for u32

    §

    type Sampler = UniformInt<u32>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl Serialize for u32

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&i8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&isize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&u8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<&usize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i128> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i16> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i32> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i64> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<i8> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<isize> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u128> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u16> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u64> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<u8> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl<usize> for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shl for u32

    §

    type Output = u32

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> u32

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i128> for u32

    source§

    fn shl_assign(&mut self, other: &i128)

    Performs the <<= operation. Read more
    ","ShlAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i16> for u32

    source§

    fn shl_assign(&mut self, other: &i16)

    Performs the <<= operation. Read more
    ","ShlAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i32> for u32

    source§

    fn shl_assign(&mut self, other: &i32)

    Performs the <<= operation. Read more
    ","ShlAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i64> for u32

    source§

    fn shl_assign(&mut self, other: &i64)

    Performs the <<= operation. Read more
    ","ShlAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&i8> for u32

    source§

    fn shl_assign(&mut self, other: &i8)

    Performs the <<= operation. Read more
    ","ShlAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&isize> for u32

    source§

    fn shl_assign(&mut self, other: &isize)

    Performs the <<= operation. Read more
    ","ShlAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u128> for u32

    source§

    fn shl_assign(&mut self, other: &u128)

    Performs the <<= operation. Read more
    ","ShlAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u16> for u32

    source§

    fn shl_assign(&mut self, other: &u16)

    Performs the <<= operation. Read more
    ","ShlAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u32> for u32

    source§

    fn shl_assign(&mut self, other: &u32)

    Performs the <<= operation. Read more
    ","ShlAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u64> for u32

    source§

    fn shl_assign(&mut self, other: &u64)

    Performs the <<= operation. Read more
    ","ShlAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&u8> for u32

    source§

    fn shl_assign(&mut self, other: &u8)

    Performs the <<= operation. Read more
    ","ShlAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShlAssign<&usize> for u32

    source§

    fn shl_assign(&mut self, other: &usize)

    Performs the <<= operation. Read more
    ","ShlAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i128> for u32

    source§

    fn shl_assign(&mut self, other: i128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i16> for u32

    source§

    fn shl_assign(&mut self, other: i16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i32> for u32

    source§

    fn shl_assign(&mut self, other: i32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i64> for u32

    source§

    fn shl_assign(&mut self, other: i64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<i8> for u32

    source§

    fn shl_assign(&mut self, other: i8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<isize> for u32

    source§

    fn shl_assign(&mut self, other: isize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u128> for u32

    source§

    fn shl_assign(&mut self, other: u128)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u16> for u32

    source§

    fn shl_assign(&mut self, other: u16)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u64> for u32

    source§

    fn shl_assign(&mut self, other: u64)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<u8> for u32

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign<usize> for u32

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShlAssign for u32

    source§

    fn shl_assign(&mut self, other: u32)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&i8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&isize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u128> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u16> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u64> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&u8> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<&usize> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i128> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i16> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i32> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i64> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<i8> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<isize> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u128> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u16> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u64> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<u8> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr<usize> for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Shr for u32

    §

    type Output = u32

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> u32

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i128> for u32

    source§

    fn shr_assign(&mut self, other: &i128)

    Performs the >>= operation. Read more
    ","ShrAssign<&i128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i16> for u32

    source§

    fn shr_assign(&mut self, other: &i16)

    Performs the >>= operation. Read more
    ","ShrAssign<&i16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i32> for u32

    source§

    fn shr_assign(&mut self, other: &i32)

    Performs the >>= operation. Read more
    ","ShrAssign<&i32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i64> for u32

    source§

    fn shr_assign(&mut self, other: &i64)

    Performs the >>= operation. Read more
    ","ShrAssign<&i64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&i8> for u32

    source§

    fn shr_assign(&mut self, other: &i8)

    Performs the >>= operation. Read more
    ","ShrAssign<&i8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&isize> for u32

    source§

    fn shr_assign(&mut self, other: &isize)

    Performs the >>= operation. Read more
    ","ShrAssign<&isize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u128> for u32

    source§

    fn shr_assign(&mut self, other: &u128)

    Performs the >>= operation. Read more
    ","ShrAssign<&u128>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u16> for u32

    source§

    fn shr_assign(&mut self, other: &u16)

    Performs the >>= operation. Read more
    ","ShrAssign<&u16>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u32> for u32

    source§

    fn shr_assign(&mut self, other: &u32)

    Performs the >>= operation. Read more
    ","ShrAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u64> for u32

    source§

    fn shr_assign(&mut self, other: &u64)

    Performs the >>= operation. Read more
    ","ShrAssign<&u64>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&u8> for u32

    source§

    fn shr_assign(&mut self, other: &u8)

    Performs the >>= operation. Read more
    ","ShrAssign<&u8>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl ShrAssign<&usize> for u32

    source§

    fn shr_assign(&mut self, other: &usize)

    Performs the >>= operation. Read more
    ","ShrAssign<&usize>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i128> for u32

    source§

    fn shr_assign(&mut self, other: i128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i16> for u32

    source§

    fn shr_assign(&mut self, other: i16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i32> for u32

    source§

    fn shr_assign(&mut self, other: i32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i64> for u32

    source§

    fn shr_assign(&mut self, other: i64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<i8> for u32

    source§

    fn shr_assign(&mut self, other: i8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<isize> for u32

    source§

    fn shr_assign(&mut self, other: isize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u128> for u32

    source§

    fn shr_assign(&mut self, other: u128)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u16> for u32

    source§

    fn shr_assign(&mut self, other: u16)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u64> for u32

    source§

    fn shr_assign(&mut self, other: u64)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<u8> for u32

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign<usize> for u32

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl ShrAssign for u32

    source§

    fn shr_assign(&mut self, other: u32)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl SimdElement for u32

    §

    type Mask = i32

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Sub<&u32> for u32

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Sub for u32

    §

    type Output = u32

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: u32) -> u32

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.22.0 · source§

    impl SubAssign<&u32> for u32

    source§

    fn sub_assign(&mut self, other: &u32)

    Performs the -= operation. Read more
    ","SubAssign<&u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.8.0 · source§

    impl SubAssign for u32

    source§

    fn sub_assign(&mut self, other: u32)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a u32>","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.12.0 · source§

    impl Sum for u32

    source§

    fn sum<I>(iter: I) -> u32
    where\n I: Iterator<Item = u32>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i128> for u32

    source§

    fn try_from(u: i128) -> Result<u32, <u32 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i16> for u32

    source§

    fn try_from(u: i16) -> Result<u32, <u32 as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i32> for u32

    source§

    fn try_from(u: i32) -> Result<u32, <u32 as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i64> for u32

    source§

    fn try_from(u: i64) -> Result<u32, <u32 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<i8> for u32

    source§

    fn try_from(u: i8) -> Result<u32, <u32 as TryFrom<i8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<isize> for u32

    source§

    fn try_from(u: isize) -> Result<u32, <u32 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<u128> for u32

    source§

    fn try_from(u: u128) -> Result<u32, <u32 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<u64> for u32

    source§

    fn try_from(u: u64) -> Result<u32, <u32 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.34.0 · source§

    impl TryFrom<usize> for u32

    source§

    fn try_from(u: usize) -> Result<u32, <u32 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    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","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl ConstParamTy for u32

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Copy for u32

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    1.0.0 · source§

    impl Eq for u32

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl SimdCast for u32

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl StructuralPartialEq for u32

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl TrustedStep for u32

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl Weight for u32

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"],["
    source§

    impl ZeroablePrimitive for u32

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::c_uint"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u8.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u8.js index 6c037a708d..dd1d14d865 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u8.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.u8.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_chain":[["
    1.0.0 · source§

    impl Add<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 (const: unstable) · source§

    impl Add for u8

    §

    type Output = u8

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: u8) -> u8

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl AddAssign for u8

    source§

    fn add_assign(&mut self, other: u8)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitAnd<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitAnd for u8

    §

    type Output = u8

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: u8) -> u8

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl BitAndAssign for u8

    source§

    fn bitand_assign(&mut self, other: u8)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitOr<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitOr for u8

    §

    type Output = u8

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: u8) -> u8

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl BitOrAssign for u8

    source§

    fn bitor_assign(&mut self, other: u8)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitXor<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitXor for u8

    §

    type Output = u8

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: u8) -> u8

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl BitXorAssign for u8

    source§

    fn bitxor_assign(&mut self, other: u8)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl Decodable for u8

    §

    fn consensus_decode<R>(r: &mut R) -> Result<u8, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Default for u8

    source§

    fn default() -> u8

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl<'de> Deserialize<'de> for u8

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<u8, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Div<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the / operator.
    ","Div>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the / operator.
    source§

    fn div(self, other: u8) -> u8

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl DivAssign for u8

    source§

    fn div_assign(&mut self, other: u8)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl Encodable for u8

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl From<AsciiChar> for u8

    source§

    fn from(chr: AsciiChar) -> u8

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl From<Fe32> for u8

    §

    fn from(v: Fe32) -> u8

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl From<Parity> for u8

    The conversion returns 0 for even parity and 1 for odd.

    \n
    §

    fn from(parity: Parity) -> u8

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl FromStr for u8

    §

    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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for u8
    where\n E: Error,

    §

    type Deserializer = U8Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> U8Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Mul<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Mul for u8

    §

    type Output = u8

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: u8) -> u8

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl MulAssign for u8

    source§

    fn mul_assign(&mut self, other: u8)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Not for u8

    §

    type Output = u8

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> u8

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl PartialEq<Value> for u8

    source§

    fn eq(&self, other: &Value) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for u8

    const: unstable · source§

    fn eq(&self, other: &u8) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &u8) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &u8) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &u8) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &u8) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a u8>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.12.0 · source§

    impl Product for u8

    source§

    fn product<I>(iter: I) -> u8
    where\n I: Iterator<Item = u8>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Rem<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the % operator.
    ","Rem>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: u8) -> u8

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl RemAssign for u8

    source§

    fn rem_assign(&mut self, other: u8)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl SampleUniform for u8

    §

    type Sampler = UniformInt<u8>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl Serialize for u8

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&isize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&usize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i128> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i16> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i32> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i64> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i8> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<isize> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u128> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u16> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u32> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u64> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<usize> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl ShlAssign for u8

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&isize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&usize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i128> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i16> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i32> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i64> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i8> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<isize> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u128> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u16> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u32> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u64> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<usize> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl ShrAssign for u8

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl SimdElement for u8

    §

    type Mask = i8

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Sub<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Sub for u8

    §

    type Output = u8

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: u8) -> u8

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl SubAssign for u8

    source§

    fn sub_assign(&mut self, other: u8)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a u8>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.12.0 · source§

    impl Sum for u8

    source§

    fn sum<I>(iter: I) -> u8
    where\n I: Iterator<Item = u8>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Error = TryFromCharError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i128> for u8

    source§

    fn try_from(u: i128) -> Result<u8, <u8 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i16> for u8

    source§

    fn try_from(u: i16) -> Result<u8, <u8 as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i32> for u8

    source§

    fn try_from(u: i32) -> Result<u8, <u8 as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i64> for u8

    source§

    fn try_from(u: i64) -> Result<u8, <u8 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i8> for u8

    source§

    fn try_from(u: i8) -> Result<u8, <u8 as TryFrom<i8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<isize> for u8

    source§

    fn try_from(u: isize) -> Result<u8, <u8 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u128> for u8

    source§

    fn try_from(u: u128) -> Result<u8, <u8 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u16> for u8

    source§

    fn try_from(u: u16) -> Result<u8, <u8 as TryFrom<u16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u32> for u8

    source§

    fn try_from(u: u32) -> Result<u8, <u8 as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u64> for u8

    source§

    fn try_from(u: u64) -> Result<u8, <u8 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<usize> for u8

    source§

    fn try_from(u: usize) -> Result<u8, <u8 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl ConstParamTy for u8

    ","ConstParamTy","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Copy for u8

    ","Copy","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Eq for u8

    ","Eq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl SimdCast for u8

    ","SimdCast","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl StructuralPartialEq for u8

    ","StructuralPartialEq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl TrustedStep for u8

    ","TrustedStep","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl Weight for u8

    ","Weight","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl ZeroablePrimitive for u8

    ","ZeroablePrimitive","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"]] +"bdk_chain":[["
    1.0.0 · source§

    impl Add<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 (const: unstable) · source§

    impl Add for u8

    §

    type Output = u8

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: u8) -> u8

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl AddAssign for u8

    source§

    fn add_assign(&mut self, other: u8)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitAnd<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitAnd for u8

    §

    type Output = u8

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: u8) -> u8

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl BitAndAssign for u8

    source§

    fn bitand_assign(&mut self, other: u8)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitOr<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitOr for u8

    §

    type Output = u8

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: u8) -> u8

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl BitOrAssign for u8

    source§

    fn bitor_assign(&mut self, other: u8)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitXor<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl BitXor for u8

    §

    type Output = u8

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: u8) -> u8

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl BitXorAssign for u8

    source§

    fn bitxor_assign(&mut self, other: u8)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl Decodable for u8

    §

    fn consensus_decode<R>(r: &mut R) -> Result<u8, Error>
    where\n R: Read + ?Sized,

    Decode an object with a well-defined format. Read more
    §

    fn consensus_decode_from_finite_reader<R>(reader: &mut R) -> Result<Self, Error>
    where\n R: Read + ?Sized,

    Decode Self from a size-limited reader. Read more
    ","Decodable","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Default for u8

    source§

    fn default() -> u8

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl<'de> Deserialize<'de> for u8

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<u8, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Div<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the / operator.
    ","Div>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the / operator.
    source§

    fn div(self, other: u8) -> u8

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl DivAssign for u8

    source§

    fn div_assign(&mut self, other: u8)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl Encodable for u8

    §

    fn consensus_encode<W>(&self, w: &mut W) -> Result<usize, Error>
    where\n W: Write + ?Sized,

    Encodes an object with a well-defined format. Read more
    ","Encodable","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl From<AsciiChar> for u8

    source§

    fn from(chr: AsciiChar) -> u8

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl From<Fe32> for u8

    §

    fn from(v: Fe32) -> u8

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    §

    impl From<Parity> for u8

    The conversion returns 0 for even parity and 1 for odd.

    \n
    §

    fn from(parity: Parity) -> u8

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl FromStr for u8

    §

    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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for u8
    where\n E: Error,

    §

    type Deserializer = U8Deserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> U8Deserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Mul<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Mul for u8

    §

    type Output = u8

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: u8) -> u8

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl MulAssign for u8

    source§

    fn mul_assign(&mut self, other: u8)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Not for u8

    §

    type Output = u8

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> u8

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for u8

    const: unstable · source§

    fn eq(&self, other: &u8) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &u8) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &u8) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &u8) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &u8) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a u8>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.12.0 · source§

    impl Product for u8

    source§

    fn product<I>(iter: I) -> u8
    where\n I: Iterator<Item = u8>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Rem<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the % operator.
    ","Rem>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = u8

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: u8) -> u8

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl RemAssign for u8

    source§

    fn rem_assign(&mut self, other: u8)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl SampleUniform for u8

    §

    type Sampler = UniformInt<u8>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl Serialize for u8

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&i8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&isize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<&usize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i128> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i16> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i32> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i64> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<i8> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<isize> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u128> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u16> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u32> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<u64> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl<usize> for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shl for u8

    §

    type Output = u8

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> u8

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl ShlAssign for u8

    source§

    fn shl_assign(&mut self, other: u8)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&i8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&isize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u128> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u16> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u32> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u64> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<&usize> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i128> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i16> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i32> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i64> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<i8> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<isize> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u128> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u16> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u32> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<u64> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr<usize> for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Shr for u8

    §

    type Output = u8

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> u8

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl ShrAssign for u8

    source§

    fn shr_assign(&mut self, other: u8)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl SimdElement for u8

    §

    type Mask = i8

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Sub<&u8> for u8

    §

    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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Sub for u8

    §

    type Output = u8

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: u8) -> u8

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.8.0 · source§

    impl SubAssign for u8

    source§

    fn sub_assign(&mut self, other: u8)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a u8>","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.12.0 · source§

    impl Sum for u8

    source§

    fn sum<I>(iter: I) -> u8
    where\n I: Iterator<Item = u8>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Error = TryFromCharError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i128> for u8

    source§

    fn try_from(u: i128) -> Result<u8, <u8 as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i16> for u8

    source§

    fn try_from(u: i16) -> Result<u8, <u8 as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i32> for u8

    source§

    fn try_from(u: i32) -> Result<u8, <u8 as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i64> for u8

    source§

    fn try_from(u: i64) -> Result<u8, <u8 as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<i8> for u8

    source§

    fn try_from(u: i8) -> Result<u8, <u8 as TryFrom<i8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<isize> for u8

    source§

    fn try_from(u: isize) -> Result<u8, <u8 as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u128> for u8

    source§

    fn try_from(u: u128) -> Result<u8, <u8 as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u16> for u8

    source§

    fn try_from(u: u16) -> Result<u8, <u8 as TryFrom<u16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u32> for u8

    source§

    fn try_from(u: u32) -> Result<u8, <u8 as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<u64> for u8

    source§

    fn try_from(u: u64) -> Result<u8, <u8 as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.34.0 · source§

    impl TryFrom<usize> for u8

    source§

    fn try_from(u: usize) -> Result<u8, <u8 as TryFrom<usize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl ConstParamTy for u8

    ","ConstParamTy","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Copy for u8

    ","Copy","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    1.0.0 · source§

    impl Eq for u8

    ","Eq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl SimdCast for u8

    ","SimdCast","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl StructuralPartialEq for u8

    ","StructuralPartialEq","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl TrustedStep for u8

    ","TrustedStep","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl Weight for u8

    ","Weight","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"],["
    source§

    impl ZeroablePrimitive for u8

    ","ZeroablePrimitive","bdk_chain::bitcoin::psbt::raw::ProprietaryType","bdk_chain::bitcoin::secp256k1::ffi::types::c_uchar"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file diff --git a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.usize.js b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.usize.js index ee1cfe4464..702ad84a67 100644 --- a/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.usize.js +++ b/docs/.vuepress/public/docs-rs/bdk/nightly/latest/type.impl/std/primitive.usize.js @@ -1,3 +1,3 @@ (function() {var type_impls = { -"bdk_chain":[["
    1.0.0 · source§

    impl Add<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 (const: unstable) · source§

    impl Add for usize

    §

    type Output = usize

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: usize) -> usize

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl AddAssign for usize

    source§

    fn add_assign(&mut self, other: usize)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitAnd<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitAnd for usize

    §

    type Output = usize

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: usize) -> usize

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl BitAndAssign for usize

    source§

    fn bitand_assign(&mut self, other: usize)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitOr<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitOr for usize

    §

    type Output = usize

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: usize) -> usize

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl BitOrAssign for usize

    source§

    fn bitor_assign(&mut self, other: usize)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitXor<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitXor for usize

    §

    type Output = usize

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: usize) -> usize

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl BitXorAssign for usize

    source§

    fn bitxor_assign(&mut self, other: usize)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Default for usize

    source§

    fn default() -> usize

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl<'de> Deserialize<'de> for usize

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<usize, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Div<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the / operator.
    ","Div>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the / operator.
    source§

    fn div(self, other: usize) -> usize

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl DivAssign for usize

    source§

    fn div_assign(&mut self, other: usize)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl From<Alignment> for usize

    source§

    fn from(align: Alignment) -> usize

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    §

    impl<O> From<U16<O>> for usize
    where\n O: ByteOrder,

    §

    fn from(x: U16<O>) -> usize

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.26.0 · source§

    impl From<u16> for usize

    source§

    fn from(small: u16) -> usize

    Converts u16 to usize losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.5.0 · source§

    impl From<u8> for usize

    source§

    fn from(small: u8) -> usize

    Converts u8 to usize losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl FromStr for usize

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for usize
    where\n E: Error,

    §

    type Deserializer = UsizeDeserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> UsizeDeserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Mul<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Mul for usize

    §

    type Output = usize

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: usize) -> usize

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl MulAssign for usize

    source§

    fn mul_assign(&mut self, other: usize)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Not for usize

    §

    type Output = usize

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> usize

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl PartialEq<Value> for usize

    source§

    fn eq(&self, other: &Value) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    1.0.0 · source§

    fn ne(&self, other: &Rhs) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for usize

    const: unstable · source§

    fn eq(&self, other: &usize) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &usize) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &usize) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &usize) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &usize) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a usize>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.12.0 · source§

    impl Product for usize

    source§

    fn product<I>(iter: I) -> usize
    where\n I: Iterator<Item = usize>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Rem<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the % operator.
    ","Rem>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: usize) -> usize

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl RemAssign for usize

    source§

    fn rem_assign(&mut self, other: usize)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl SampleUniform for usize

    §

    type Sampler = UniformInt<usize>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl Serialize for usize

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&isize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i128> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i16> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i32> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i64> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i8> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<isize> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u128> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u16> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u32> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u64> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u8> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl ShlAssign for usize

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&isize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i128> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i16> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i32> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i64> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i8> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<isize> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u128> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u16> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u32> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u64> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u8> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl ShrAssign for usize

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl SimdElement for usize

    §

    type Mask = isize

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = T

    The output type returned by methods.
    const: unstable · 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.
    const: unstable · 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.
    const: unstable · 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.\nCalling this method with an out-of-bounds index or a dangling slice pointer\nis undefined behavior even if the resulting pointer is not used.
    const: unstable · 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.\nCalling this method with an out-of-bounds index or a dangling slice pointer\nis undefined behavior even if the resulting pointer is not used.
    const: unstable · 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.
    const: unstable · 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]>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Sub<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Sub for usize

    §

    type Output = usize

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: usize) -> usize

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl SubAssign for usize

    source§

    fn sub_assign(&mut self, other: usize)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a usize>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.12.0 · source§

    impl Sum for usize

    source§

    fn sum<I>(iter: I) -> usize
    where\n I: Iterator<Item = usize>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i128> for usize

    source§

    fn try_from(u: i128) -> Result<usize, <usize as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i16> for usize

    source§

    fn try_from(u: i16) -> Result<usize, <usize as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i32> for usize

    source§

    fn try_from(u: i32) -> Result<usize, <usize as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i64> for usize

    source§

    fn try_from(u: i64) -> Result<usize, <usize as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i8> for usize

    source§

    fn try_from(u: i8) -> Result<usize, <usize as TryFrom<i8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<isize> for usize

    source§

    fn try_from(u: isize) -> Result<usize, <usize as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<u128> for usize

    source§

    fn try_from(u: u128) -> Result<usize, <usize as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<u32> for usize

    source§

    fn try_from(value: u32) -> Result<usize, <usize as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<u64> for usize

    source§

    fn try_from(value: u64) -> Result<usize, <usize as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl ConstParamTy for usize

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Copy for usize

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Eq for usize

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl SimdCast for usize

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl StructuralPartialEq for usize

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl TrustedStep for usize

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl Weight for usize

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl ZeroablePrimitive for usize

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"]] +"bdk_chain":[["
    1.0.0 · source§

    impl Add<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 (const: unstable) · source§

    impl Add for usize

    §

    type Output = usize

    The resulting type after applying the + operator.
    const: unstable · source§

    fn add(self, other: usize) -> usize

    Performs the + operation. Read more
    ","Add","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl AddAssign for usize

    source§

    fn add_assign(&mut self, other: usize)

    Performs the += operation. Read more
    ","AddAssign","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitAnd<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitAnd for usize

    §

    type Output = usize

    The resulting type after applying the & operator.
    source§

    fn bitand(self, rhs: usize) -> usize

    Performs the & operation. Read more
    ","BitAnd","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl BitAndAssign for usize

    source§

    fn bitand_assign(&mut self, other: usize)

    Performs the &= operation. Read more
    ","BitAndAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitOr<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitOr for usize

    §

    type Output = usize

    The resulting type after applying the | operator.
    source§

    fn bitor(self, rhs: usize) -> usize

    Performs the | operation. Read more
    ","BitOr","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl BitOrAssign for usize

    source§

    fn bitor_assign(&mut self, other: usize)

    Performs the |= operation. Read more
    ","BitOrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitXor<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl BitXor for usize

    §

    type Output = usize

    The resulting type after applying the ^ operator.
    source§

    fn bitxor(self, other: usize) -> usize

    Performs the ^ operation. Read more
    ","BitXor","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl BitXorAssign for usize

    source§

    fn bitxor_assign(&mut self, other: usize)

    Performs the ^= operation. Read more
    ","BitXorAssign","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Default for usize

    source§

    fn default() -> usize

    Returns the default value of 0

    \n
    ","Default","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl<'de> Deserialize<'de> for usize

    source§

    fn deserialize<D>(\n deserializer: D\n) -> Result<usize, <D as Deserializer<'de>>::Error>
    where\n D: Deserializer<'de>,

    Deserialize this value from the given Serde deserializer. Read more
    ","Deserialize<'de>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Div<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the / operator.
    ","Div>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the / operator.
    source§

    fn div(self, other: usize) -> usize

    Performs the / operation. Read more
    ","Div","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl DivAssign for usize

    source§

    fn div_assign(&mut self, other: usize)

    Performs the /= operation. Read more
    ","DivAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl From<Alignment> for usize

    source§

    fn from(align: Alignment) -> usize

    Converts to this type from the input type.
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    §

    impl<O> From<U16<O>> for usize
    where\n O: ByteOrder,

    §

    fn from(x: U16<O>) -> usize

    Converts to this type from the input type.
    ","From>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.26.0 · source§

    impl From<u16> for usize

    source§

    fn from(small: u16) -> usize

    Converts u16 to usize losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.5.0 · source§

    impl From<u8> for usize

    source§

    fn from(small: u8) -> usize

    Converts u8 to usize losslessly.

    \n
    ","From","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl FromStr for usize

    §

    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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl<'de, E> IntoDeserializer<'de, E> for usize
    where\n E: Error,

    §

    type Deserializer = UsizeDeserializer<E>

    The type of the deserializer being converted into.
    source§

    fn into_deserializer(self) -> UsizeDeserializer<E>

    Convert this value into a deserializer.
    ","IntoDeserializer<'de, E>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Mul<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Mul for usize

    §

    type Output = usize

    The resulting type after applying the * operator.
    source§

    fn mul(self, other: usize) -> usize

    Performs the * operation. Read more
    ","Mul","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl MulAssign for usize

    source§

    fn mul_assign(&mut self, other: usize)

    Performs the *= operation. Read more
    ","MulAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Not for usize

    §

    type Output = usize

    The resulting type after applying the ! operator.
    source§

    fn not(self) -> usize

    Performs the unary ! operation. Read more
    ","Not","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 (const: unstable) · source§

    impl PartialEq for usize

    const: unstable · source§

    fn eq(&self, other: &usize) -> bool

    This method tests for self and other values to be equal, and is used\nby ==.
    const: unstable · source§

    fn ne(&self, other: &usize) -> bool

    This method tests for !=. The default implementation is almost always\nsufficient, and should not be overridden without very good reason.
    ","PartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::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

    This method tests less than (for self and other) and is used by the < operator. Read more
    source§

    fn le(&self, other: &usize) -> bool

    This method tests less than or equal to (for self and other) and is used by the <=\noperator. Read more
    source§

    fn ge(&self, other: &usize) -> bool

    This method tests greater than or equal to (for self and other) and is used by the >=\noperator. Read more
    source§

    fn gt(&self, other: &usize) -> bool

    This method tests greater than (for self and other) and is used by the > operator. Read more
    ","PartialOrd","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product<&'a usize>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.12.0 · source§

    impl Product for usize

    source§

    fn product<I>(iter: I) -> usize
    where\n I: Iterator<Item = usize>,

    Method which takes an iterator and generates Self from the elements by\nmultiplying the items.
    ","Product","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Rem<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the % operator.
    ","Rem>","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = usize

    The resulting type after applying the % operator.
    source§

    fn rem(self, other: usize) -> usize

    Performs the % operation. Read more
    ","Rem","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl RemAssign for usize

    source§

    fn rem_assign(&mut self, other: usize)

    Performs the %= operation. Read more
    ","RemAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl SampleUniform for usize

    §

    type Sampler = UniformInt<usize>

    The UniformSampler implementation supporting type X.
    ","SampleUniform","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl Serialize for usize

    source§

    fn serialize<S>(\n &self,\n serializer: S\n) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where\n S: Serializer,

    Serialize this value into the given Serde serializer. Read more
    ","Serialize","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&i8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&isize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&u8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i128> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i128) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i16> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i16) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i32> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i32) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i64> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i64) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<i8> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: i8) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<isize> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: isize) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u128> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u128) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u16> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u16) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u32> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u32) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u64> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u64) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl<u8> for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: u8) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shl for usize

    §

    type Output = usize

    The resulting type after applying the << operator.
    source§

    fn shl(self, other: usize) -> usize

    Performs the << operation. Read more
    ","Shl","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl ShlAssign for usize

    source§

    fn shl_assign(&mut self, other: usize)

    Performs the <<= operation. Read more
    ","ShlAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&i8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&isize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u128> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u16> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u32> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u64> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&u8> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i128> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i128) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i16> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i16) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i32> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i32) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i64> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i64) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<i8> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: i8) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<isize> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: isize) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u128> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u128) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u16> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u16) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u32> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u32) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u64> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u64) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr<u8> for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: u8) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Shr for usize

    §

    type Output = usize

    The resulting type after applying the >> operator.
    source§

    fn shr(self, other: usize) -> usize

    Performs the >> operation. Read more
    ","Shr","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl ShrAssign for usize

    source§

    fn shr_assign(&mut self, other: usize)

    Performs the >>= operation. Read more
    ","ShrAssign","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl SimdElement for usize

    §

    type Mask = isize

    🔬This is a nightly-only experimental API. (portable_simd)
    The mask element type corresponding to this element type.
    ","SimdElement","bdk_chain::bitcoin::secp256k1::ffi::types::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
    §

    type Output = T

    The output type returned by methods.
    const: unstable · 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.
    const: unstable · 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.
    const: unstable · 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.\nCalling this method with an out-of-bounds index or a dangling slice pointer\nis undefined behavior even if the resulting pointer is not used.
    const: unstable · 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.\nCalling this method with an out-of-bounds index or a dangling slice pointer\nis undefined behavior even if the resulting pointer is not used.
    const: unstable · 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.
    const: unstable · 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]>","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Sub<&usize> for usize

    §

    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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Sub for usize

    §

    type Output = usize

    The resulting type after applying the - operator.
    source§

    fn sub(self, other: usize) -> usize

    Performs the - operation. Read more
    ","Sub","bdk_chain::bitcoin::secp256k1::ffi::types::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>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.8.0 · source§

    impl SubAssign for usize

    source§

    fn sub_assign(&mut self, other: usize)

    Performs the -= operation. Read more
    ","SubAssign","bdk_chain::bitcoin::secp256k1::ffi::types::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>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum<&'a usize>","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.12.0 · source§

    impl Sum for usize

    source§

    fn sum<I>(iter: I) -> usize
    where\n I: Iterator<Item = usize>,

    Method which takes an iterator and generates Self from the elements by\n“summing up” the items.
    ","Sum","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i128> for usize

    source§

    fn try_from(u: i128) -> Result<usize, <usize as TryFrom<i128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i16> for usize

    source§

    fn try_from(u: i16) -> Result<usize, <usize as TryFrom<i16>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i32> for usize

    source§

    fn try_from(u: i32) -> Result<usize, <usize as TryFrom<i32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i64> for usize

    source§

    fn try_from(u: i64) -> Result<usize, <usize as TryFrom<i64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<i8> for usize

    source§

    fn try_from(u: i8) -> Result<usize, <usize as TryFrom<i8>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<isize> for usize

    source§

    fn try_from(u: isize) -> Result<usize, <usize as TryFrom<isize>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<u128> for usize

    source§

    fn try_from(u: u128) -> Result<usize, <usize as TryFrom<u128>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<u32> for usize

    source§

    fn try_from(value: u32) -> Result<usize, <usize as TryFrom<u32>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.34.0 · source§

    impl TryFrom<u64> for usize

    source§

    fn try_from(value: u64) -> Result<usize, <usize as TryFrom<u64>>::Error>

    Try 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
    §

    type Error = TryFromIntError

    The type returned in the event of a conversion error.
    ","TryFrom","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::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","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl ConstParamTy for usize

    ","ConstParamTy","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Copy for usize

    ","Copy","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    1.0.0 · source§

    impl Eq for usize

    ","Eq","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl SimdCast for usize

    ","SimdCast","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl StructuralPartialEq for usize

    ","StructuralPartialEq","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl TrustedStep for usize

    ","TrustedStep","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl Weight for usize

    ","Weight","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"],["
    source§

    impl ZeroablePrimitive for usize

    ","ZeroablePrimitive","bdk_chain::bitcoin::secp256k1::ffi::types::size_t"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file