diff --git a/.gitignore b/.gitignore index 3d7787a..db82bfc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ .anchor .DS_Store -target **/*.rs.bk node_modules test-ledger diff --git a/programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs b/programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs index 7e6d0d3..c76ac65 100644 --- a/programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs +++ b/programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs @@ -34,7 +34,7 @@ pub struct CreateProposal<'info> { pub fn handler( ctx: Context, recipient: Pubkey, image: String, title: String, subtitle: String, - spl: Pubkey, tags: String, amount: u64 + spl: Pubkey, tags: String, amount: u64, is_owner: bool ) -> Result<()> { let identifier = &mut ctx.accounts.identifier; let proposal = &mut ctx.accounts.proposal; @@ -64,6 +64,7 @@ pub fn handler( proposal.spl = spl; proposal.amount = amount; proposal.tags = tags; + proposal.owner = is_owner; proposal.identifier = identifier.count; proposal.status = 0; diff --git a/programs/superteam-dao-contract/src/lib.rs b/programs/superteam-dao-contract/src/lib.rs index 82ed850..a7e365f 100644 --- a/programs/superteam-dao-contract/src/lib.rs +++ b/programs/superteam-dao-contract/src/lib.rs @@ -22,8 +22,8 @@ pub mod superteam_dao_contract { } pub fn create_proposal(ctx: Context, recipient: Pubkey, image: String, title: String, subtitle: String, - spl: Pubkey, tags: String, amount: u64) -> Result<()> { - create_proposal::handler(ctx, recipient, image, title, subtitle, spl, tags, amount); + spl: Pubkey, tags: String, amount: u64, is_owner: bool) -> Result<()> { + create_proposal::handler(ctx, recipient, image, title, subtitle, spl, tags, amount, is_owner); Ok(()) } diff --git a/programs/superteam-dao-contract/src/schemas/proposal.rs b/programs/superteam-dao-contract/src/schemas/proposal.rs index 602a647..6dbc5e1 100644 --- a/programs/superteam-dao-contract/src/schemas/proposal.rs +++ b/programs/superteam-dao-contract/src/schemas/proposal.rs @@ -8,13 +8,14 @@ pub struct Proposal { pub recipient: Pubkey, pub sender: Pubkey, pub status: u8, + pub owner: bool, + pub spl: Pubkey, + pub amount: u64, pub tags: String, pub transaction: Option, pub image: String, pub title: String, pub subtitle: String, - pub spl: Pubkey, - pub amount: u64, pub identifier: u64, } @@ -25,13 +26,14 @@ impl Proposal { PUBKEY_SIZE + // recipient PUBKEY_SIZE + // sender 1 + // status: 0-pending 1-cancel 2-approve 3-reject + 1 + // owner + PUBKEY_SIZE + // spl + U64_SIZE + // amount + 4 + MAX_LENGTH_TAGS + // tags 1 + 4 + LENGTH_TRANSACTION_HASH + // transaction hash 4 + MAX_LENGTH_IMAGE + // image 4 + MAX_LENGTH_TITLE + // title 4 + MAX_LENGTH_SUBTITLE + // subtitle - PUBKEY_SIZE + // spl - U64_SIZE + // amount - 4 + MAX_LENGTH_TAGS + // tags 8 // identifier } } diff --git a/target/.rustc_info.json b/target/.rustc_info.json new file mode 100644 index 0000000..54746da --- /dev/null +++ b/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":6632251955565830193,"outputs":{"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n","stderr":""},"16203822066534773252":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.62.0-dev\nbinary: rustc\ncommit-hash: unknown\ncommit-date: unknown\nhost: x86_64-apple-darwin\nrelease: 1.62.0-dev\nLLVM version: 14.0.5\n","stderr":""},"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/quanghuy/.cache/solana/v1.29/bpf-tools/rust\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"llvm14-builtins-abi\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"ssse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store=\"128\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"5377892648921972743":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\n___.so\nlib___.a\n/Users/quanghuy/.cache/solana/v1.29/bpf-tools/rust\ndebug_assertions\npanic=\"abort\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"bpf\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_feature=\"llvm14-builtins-abi\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"solana\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"solana\"\n","stderr":"warning: dropping unsupported crate type `dylib` for target `bpfel-unknown-unknown`\n\nwarning: dropping unsupported crate type `proc-macro` for target `bpfel-unknown-unknown`\n\nwarning: 2 warnings emitted\n\n"}},"successes":{}} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/CACHEDIR.TAG b/target/bpfel-unknown-unknown/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/target/bpfel-unknown-unknown/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/target/bpfel-unknown-unknown/release/.cargo-lock b/target/bpfel-unknown-unknown/release/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/dep-lib-ahash b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/dep-lib-ahash new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/dep-lib-ahash differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/lib-ahash b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/lib-ahash new file mode 100644 index 0000000..257264d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/lib-ahash @@ -0,0 +1 @@ +53eb4d5acdbea698 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/lib-ahash.json b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/lib-ahash.json new file mode 100644 index 0000000..14c7035 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/lib-ahash.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17564961922320999190,"profile":3188463645652688667,"path":3255580554280402883,"deps":[[5429148392333926843,"once_cell",false,8002793946084783818],[6564554279330852038,"build_script_build",false,3395339761657011240]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/dep-lib-ahash"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":6548036084630991988,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/ahash-dabfca2bc3b0c1dd/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-dabfca2bc3b0c1dd/run-build-script-build-script-build new file mode 100644 index 0000000..bad9651 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-dabfca2bc3b0c1dd/run-build-script-build-script-build @@ -0,0 +1 @@ +285c532186ab1e2f \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/ahash-dabfca2bc3b0c1dd/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-dabfca2bc3b0c1dd/run-build-script-build-script-build.json new file mode 100644 index 0000000..ff26068 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/ahash-dabfca2bc3b0c1dd/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6564554279330852038,"build_script_build",false,9107079993064650970]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/dep-lib-anchor-lang b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/dep-lib-anchor-lang new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/dep-lib-anchor-lang differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/lib-anchor-lang b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/lib-anchor-lang new file mode 100644 index 0000000..db480a0 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/lib-anchor-lang @@ -0,0 +1 @@ +0ffa6545d8aa9b6c \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/lib-anchor-lang.json b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/lib-anchor-lang.json new file mode 100644 index 0000000..f634a3f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/lib-anchor-lang.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"derive\", \"init-if-needed\"]","target":14769178442973885228,"profile":3188463645652688667,"path":11849608759687746880,"deps":[[323429331743837663,"anchor_attribute_interface",false,17675782664664859038],[413444663484405820,"anchor_attribute_constant",false,789406329348731646],[2237233735950521307,"bytemuck",false,831923489600250674],[2460075646832256811,"anchor_attribute_program",false,15613449016552207155],[3749852952842194459,"anchor_attribute_account",false,14012809224756519590],[3910685653900278224,"anchor_derive_accounts",false,5860081228534136370],[4174244234723058678,"arrayref",false,13934941302426343774],[4790332501662844689,"base64",false,885614249555248580],[5350860216513583043,"anchor_attribute_state",false,6707499523255009425],[6147790641371885936,"thiserror",false,2379563226906744716],[8471858776488485135,"anchor_attribute_event",false,17330028599675789484],[9957987110813333963,"solana_program",false,15026316037246536099],[12639858850933718058,"bincode",false,4041933787034621020],[13434381959712907675,"borsh",false,107933844335850117],[16141541804300825675,"anchor_attribute_error",false,12214136414968738723],[16921882576896437047,"anchor_attribute_access_control",false,2072632845817029107]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/dep-lib-anchor-lang"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":12451300207677867161,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/dep-lib-anchor-spl b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/dep-lib-anchor-spl new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/dep-lib-anchor-spl differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/lib-anchor-spl b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/lib-anchor-spl new file mode 100644 index 0000000..abc3f2c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/lib-anchor-spl @@ -0,0 +1 @@ +6f64bd8c943db707 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/lib-anchor-spl.json b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/lib-anchor-spl.json new file mode 100644 index 0000000..e5a457f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/lib-anchor-spl.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"associated_token\", \"default\", \"mint\", \"spl-associated-token-account\", \"spl-token\", \"token\"]","target":6022960205461011764,"profile":3188463645652688667,"path":9275652321895239257,"deps":[[844940212579727508,"anchor_lang",false,7826036623340337679],[6302459069424122163,"spl_associated_token_account",false,17323982177908643476],[9338744480042532245,"spl_token",false,3261036190287987447],[9957987110813333963,"solana_program",false,15026316037246536099]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/dep-lib-anchor-spl"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13935969994132114007,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/dep-lib-arrayref b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/dep-lib-arrayref new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/dep-lib-arrayref differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/lib-arrayref b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/lib-arrayref new file mode 100644 index 0000000..90cdb12 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/lib-arrayref @@ -0,0 +1 @@ +5e990ab948db62c1 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/lib-arrayref.json b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/lib-arrayref.json new file mode 100644 index 0000000..d26bfe8 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/lib-arrayref.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":15391159540545039354,"profile":3188463645652688667,"path":2565288443218755094,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/dep-lib-arrayref"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5065701478231546975,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/dep-lib-arrayvec b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/dep-lib-arrayvec new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/dep-lib-arrayvec differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/lib-arrayvec b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/lib-arrayvec new file mode 100644 index 0000000..2665d7c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/lib-arrayvec @@ -0,0 +1 @@ +dcb24a652911b5b2 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/lib-arrayvec.json b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/lib-arrayvec.json new file mode 100644 index 0000000..966e459 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/lib-arrayvec.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":15141271784968785197,"profile":3188463645652688667,"path":4735061081257666163,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/dep-lib-arrayvec"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5019420986621020735,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/dep-lib-base64 b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/dep-lib-base64 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/dep-lib-base64 differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/lib-base64 b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/lib-base64 new file mode 100644 index 0000000..7aa2d93 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/lib-base64 @@ -0,0 +1 @@ +c4c5c3c077554a0c \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/lib-base64.json b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/lib-base64.json new file mode 100644 index 0000000..6720267 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/lib-base64.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":9667411782827515189,"profile":3188463645652688667,"path":3520527699411924459,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/dep-lib-base64"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13936919950537592407,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/dep-lib-bincode b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/dep-lib-bincode new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/dep-lib-bincode differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/lib-bincode b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/lib-bincode new file mode 100644 index 0000000..e1568f5 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/lib-bincode @@ -0,0 +1 @@ +5c14d93d5dd51738 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/lib-bincode.json b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/lib-bincode.json new file mode 100644 index 0000000..ea81c31 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/lib-bincode.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17413867883071742746,"profile":3188463645652688667,"path":6995372157040200038,"deps":[[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/dep-lib-bincode"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8466748156696077862,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/blake3-a9891ffac17129c7/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-a9891ffac17129c7/run-build-script-build-script-build new file mode 100644 index 0000000..8bf5298 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-a9891ffac17129c7/run-build-script-build-script-build @@ -0,0 +1 @@ +b8bca8f986598dca \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/blake3-a9891ffac17129c7/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-a9891ffac17129c7/run-build-script-build-script-build.json new file mode 100644 index 0000000..4b5f7cc --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-a9891ffac17129c7/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[7044288671118729987,"build_script_build",false,1543373914289258710]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/output","paths":["c/blake3_sse41_x86-64_windows_msvc.asm","c/blake3_avx512_x86-64_windows_msvc.asm","c/blake3_sse2_x86-64_unix.S","c/blake3_sse2_x86-64_windows_msvc.asm","c/blake3_sse41_x86-64_unix.S","c/blake3.h","c/blake3_dispatch.c","c/blake3_sse41.c","c/blake3_avx512_x86-64_windows_gnu.S","c/Makefile.testing","c/test.py","c/blake3_portable.c","c/blake3_neon.c","c/blake3_avx512.c","c/README.md","c/example.c","c/blake3_avx2.c","c/main.c","c/.gitignore","c/blake3_avx2_x86-64_unix.S","c/blake3_avx2_x86-64_windows_gnu.S","c/blake3.c","c/blake3_sse2_x86-64_windows_gnu.S","c/blake3_impl.h","c/blake3_sse41_x86-64_windows_gnu.S","c/blake3_avx2_x86-64_windows_msvc.asm","c/blake3_sse2.c","c/blake3_avx512_x86-64_unix.S"]}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_PURE","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_NO_NEON","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_NO_NEON","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_PURE","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":"/Users/quanghuy/.local/share/solana/install/releases/1.14.10/solana-release/bin/sdk/bpf/dependencies/bpf-tools/llvm/bin/clang"}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/dep-lib-blake3 b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/dep-lib-blake3 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/dep-lib-blake3 differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/lib-blake3 b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/lib-blake3 new file mode 100644 index 0000000..e38021c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/lib-blake3 @@ -0,0 +1 @@ +440f4e9d3bac365b \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/lib-blake3.json b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/lib-blake3.json new file mode 100644 index 0000000..593e2de --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/lib-blake3.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"digest\", \"std\", \"traits-preview\"]","target":9064378672912024434,"profile":3188463645652688667,"path":14765280308072070739,"deps":[[53766558065908284,"constant_time_eq",false,7898040348755891446],[2452538001284770427,"cfg_if",false,18338716342890501705],[4174244234723058678,"arrayref",false,13934941302426343774],[7044288671118729987,"build_script_build",false,14595420403626720440],[8013147862121382061,"arrayvec",false,12877217579026526940],[8521755248767573771,"digest",false,16002447881788268692]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/dep-lib-blake3"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":15248861160739124439,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/dep-lib-block-buffer b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/dep-lib-block-buffer new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/dep-lib-block-buffer differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/lib-block-buffer b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/lib-block-buffer new file mode 100644 index 0000000..330670f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/lib-block-buffer @@ -0,0 +1 @@ +bb7a9a06320ccd54 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/lib-block-buffer.json b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/lib-block-buffer.json new file mode 100644 index 0000000..97616b8 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/lib-block-buffer.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":597966434043285633,"profile":3188463645652688667,"path":7358170553645635423,"deps":[[10353982180171461258,"generic_array",false,1781241717886361214]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/dep-lib-block-buffer"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5573904726092117450,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/dep-lib-borsh b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/dep-lib-borsh new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/dep-lib-borsh differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/lib-borsh b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/lib-borsh new file mode 100644 index 0000000..3e89116 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/lib-borsh @@ -0,0 +1 @@ +8572e17242757f01 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/lib-borsh.json b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/lib-borsh.json new file mode 100644 index 0000000..91666cd --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/lib-borsh.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":3730488758921852561,"profile":3188463645652688667,"path":15946090286340665144,"deps":[[1759060122986695407,"borsh_derive",false,2275537850582280715],[16284710795702459458,"hashbrown",false,9824290921925073709]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/dep-lib-borsh"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":7032358266178414993,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/dep-lib-bs58 b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/dep-lib-bs58 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/dep-lib-bs58 differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/lib-bs58 b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/lib-bs58 new file mode 100644 index 0000000..b2e3b1d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/lib-bs58 @@ -0,0 +1 @@ +783d34e16ae739bb \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/lib-bs58.json b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/lib-bs58.json new file mode 100644 index 0000000..c4590a8 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/lib-bs58.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"std\"]","target":4860711247261189145,"profile":3188463645652688667,"path":5134708454509164649,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/dep-lib-bs58"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13637435404263704389,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/dep-lib-bv b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/dep-lib-bv new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/dep-lib-bv differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/lib-bv b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/lib-bv new file mode 100644 index 0000000..a5964de --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/lib-bv @@ -0,0 +1 @@ +3bfbe4786045f060 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/lib-bv.json b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/lib-bv.json new file mode 100644 index 0000000..647bb26 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/lib-bv.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"serde\"]","target":16248139679678993569,"profile":3188463645652688667,"path":9513805062784227720,"deps":[[12065847578846483130,"build_script_build",false,10204679701663021453],[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/dep-lib-bv"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":251181567152240604,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bv-adbb2994275f5d3c/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/bv-adbb2994275f5d3c/run-build-script-build-script-build new file mode 100644 index 0000000..48cbcdb --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bv-adbb2994275f5d3c/run-build-script-build-script-build @@ -0,0 +1 @@ +8d7943381f4e9e8d \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bv-adbb2994275f5d3c/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/bv-adbb2994275f5d3c/run-build-script-build-script-build.json new file mode 100644 index 0000000..f375c75 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bv-adbb2994275f5d3c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[12065847578846483130,"build_script_build",false,4507800217528482745]],"local":[{"Precalculated":"0.11.1"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/dep-lib-bytemuck b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/dep-lib-bytemuck new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/dep-lib-bytemuck differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/lib-bytemuck b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/lib-bytemuck new file mode 100644 index 0000000..de6b883 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/lib-bytemuck @@ -0,0 +1 @@ +3223ed8d01968b0b \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/lib-bytemuck.json b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/lib-bytemuck.json new file mode 100644 index 0000000..ca6d3cc --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/lib-bytemuck.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"bytemuck_derive\", \"derive\"]","target":17095924238635785037,"profile":3188463645652688667,"path":17719019524550005667,"deps":[[7303860194959237442,"bytemuck_derive",false,260353550253556121]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/dep-lib-bytemuck"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5417891915809776353,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/dep-lib-cfg-if b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/dep-lib-cfg-if new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/dep-lib-cfg-if differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/lib-cfg-if b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/lib-cfg-if new file mode 100644 index 0000000..5036183 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/lib-cfg-if @@ -0,0 +1 @@ +4996a3e6593580fe \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/lib-cfg-if.json b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/lib-cfg-if.json new file mode 100644 index 0000000..8f541bf --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/lib-cfg-if.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":10094334937643343087,"profile":3188463645652688667,"path":6870778980281362900,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/dep-lib-cfg-if"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/dep-lib-constant_time_eq b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/dep-lib-constant_time_eq new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/dep-lib-constant_time_eq differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/lib-constant_time_eq b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/lib-constant_time_eq new file mode 100644 index 0000000..afd84b2 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/lib-constant_time_eq @@ -0,0 +1 @@ +f6144c01da799b6d \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/lib-constant_time_eq.json b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/lib-constant_time_eq.json new file mode 100644 index 0000000..968320a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/lib-constant_time_eq.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":18110003449456326072,"profile":3188463645652688667,"path":11862861998845439230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/dep-lib-constant_time_eq"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":17632679035116730252,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/dep-lib-crypto-common b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/dep-lib-crypto-common new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/dep-lib-crypto-common differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/lib-crypto-common b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/lib-crypto-common new file mode 100644 index 0000000..7ef0a37 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/lib-crypto-common @@ -0,0 +1 @@ +5c7d8dea295f6f03 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/lib-crypto-common.json b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/lib-crypto-common.json new file mode 100644 index 0000000..205a935 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/lib-crypto-common.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"std\"]","target":3769126754866119548,"profile":3188463645652688667,"path":6646049090335043518,"deps":[[10353982180171461258,"generic_array",false,1781241717886361214],[11395083745183091805,"typenum",false,16617076635738972562]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/dep-lib-crypto-common"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":3401955368041756111,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/dep-lib-digest b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/dep-lib-digest new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/dep-lib-digest differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/lib-digest b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/lib-digest new file mode 100644 index 0000000..864266a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/lib-digest @@ -0,0 +1 @@ +9420b15a901d14de \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/lib-digest.json b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/lib-digest.json new file mode 100644 index 0000000..f58f45f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/lib-digest.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"block-buffer\", \"core-api\", \"default\", \"mac\", \"std\", \"subtle\"]","target":5694707155508738902,"profile":3188463645652688667,"path":1617207305886194505,"deps":[[3917011202626910884,"block_buffer",false,6110553678410316475],[14156852935330721123,"subtle",false,1203895733485512731],[15349877456970498084,"crypto_common",false,247521138162105692]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/digest-844a3e119b12a049/dep-lib-digest"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":2664789385760777065,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/dep-lib-either b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/dep-lib-either new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/dep-lib-either differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/lib-either b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/lib-either new file mode 100644 index 0000000..01a0f0b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/lib-either @@ -0,0 +1 @@ +af17a729b6434609 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/lib-either.json b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/lib-either.json new file mode 100644 index 0000000..287e6d2 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/lib-either.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"use_std\"]","target":8176234849247878678,"profile":3188463645652688667,"path":14412719594931970107,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/either-257ac34a238e4576/dep-lib-either"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":15700307601938671422,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/dep-lib-generic_array b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/dep-lib-generic_array new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/dep-lib-generic_array differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/lib-generic_array b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/lib-generic_array new file mode 100644 index 0000000..3a663cf --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/lib-generic_array @@ -0,0 +1 @@ +7e1eb9ade73db818 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/lib-generic_array.json b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/lib-generic_array.json new file mode 100644 index 0000000..9b92972 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/lib-generic_array.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"more_lengths\", \"serde\"]","target":3609202219292840517,"profile":3188463645652688667,"path":624659049960085588,"deps":[[10353982180171461258,"build_script_build",false,10559423346076917750],[11395083745183091805,"typenum",false,16617076635738972562],[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/generic-array-5b3b98a75cfe2afc/dep-lib-generic_array"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":3504643559825856545,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-f9aa56f246707c1e/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-f9aa56f246707c1e/run-build-script-build-script-build new file mode 100644 index 0000000..6fd4c03 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-f9aa56f246707c1e/run-build-script-build-script-build @@ -0,0 +1 @@ +f69fe147969b8a92 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-f9aa56f246707c1e/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-f9aa56f246707c1e/run-build-script-build-script-build.json new file mode 100644 index 0000000..6f64081 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/generic-array-f9aa56f246707c1e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[10353982180171461258,"build_script_build",false,1261308130635164378]],"local":[{"Precalculated":"0.14.6"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/dep-lib-hashbrown b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/dep-lib-hashbrown new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/dep-lib-hashbrown differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/lib-hashbrown b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/lib-hashbrown new file mode 100644 index 0000000..d7ab465 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/lib-hashbrown @@ -0,0 +1 @@ +2d5b70cb8ae45688 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/lib-hashbrown.json b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/lib-hashbrown.json new file mode 100644 index 0000000..591f8d1 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"ahash\", \"default\", \"inline-more\"]","target":7861740280460442625,"profile":3188463645652688667,"path":6682837178699392473,"deps":[[6564554279330852038,"ahash",false,10999688929091644243]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/hashbrown-23ee4b244c692ba7/dep-lib-hashbrown"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":6228333144549390726,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/dep-lib-itertools b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/dep-lib-itertools new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/dep-lib-itertools differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/lib-itertools b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/lib-itertools new file mode 100644 index 0000000..7bb1789 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/lib-itertools @@ -0,0 +1 @@ +7f12a64391806445 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/lib-itertools.json b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/lib-itertools.json new file mode 100644 index 0000000..ff5c6e4 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/lib-itertools.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"use_alloc\", \"use_std\"]","target":1752768026673683894,"profile":3188463645652688667,"path":12333218870996614516,"deps":[[5239889730035657011,"either",false,668296044373022639]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/itertools-2be45f9b93732cae/dep-lib-itertools"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":3730724209676955614,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/dep-lib-keccak b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/dep-lib-keccak new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/dep-lib-keccak differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/lib-keccak b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/lib-keccak new file mode 100644 index 0000000..e93d12f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/lib-keccak @@ -0,0 +1 @@ +407074b23890ea10 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/lib-keccak.json b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/lib-keccak.json new file mode 100644 index 0000000..f30c56d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/lib-keccak.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":187211068562423823,"profile":3188463645652688667,"path":11033596945173365025,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/keccak-a5e3a0e822362d6f/dep-lib-keccak"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":17580716165873092201,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/dep-lib-lazy_static b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/dep-lib-lazy_static new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/dep-lib-lazy_static differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/lib-lazy_static b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/lib-lazy_static new file mode 100644 index 0000000..c36ac80 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/lib-lazy_static @@ -0,0 +1 @@ +f5a4dfa87dcfb5e2 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/lib-lazy_static.json b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/lib-lazy_static.json new file mode 100644 index 0000000..8faec9e --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/lib-lazy_static.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":6139664849541123785,"profile":3188463645652688667,"path":1245929432135413076,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/lazy_static-ebe993c3d75921fc/dep-lib-lazy_static"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":111743654650316589,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/dep-lib-log b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/dep-lib-log new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/dep-lib-log differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/lib-log b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/lib-log new file mode 100644 index 0000000..f04eb0b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/lib-log @@ -0,0 +1 @@ +c8e98cfe9487b5f2 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/lib-log.json b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/lib-log.json new file mode 100644 index 0000000..5a4e4d3 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/lib-log.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":3529399203280365637,"profile":3188463645652688667,"path":16054523944213020723,"deps":[[2452538001284770427,"cfg_if",false,18338716342890501705],[6597564319215557603,"build_script_build",false,15852481522761335281]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/log-520137f102dd2ffb/dep-lib-log"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":179143468214550567,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/log-ed54378b49b29362/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/log-ed54378b49b29362/run-build-script-build-script-build new file mode 100644 index 0000000..af44674 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/log-ed54378b49b29362/run-build-script-build-script-build @@ -0,0 +1 @@ +f101a274f453ffdb \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/log-ed54378b49b29362/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/log-ed54378b49b29362/run-build-script-build-script-build.json new file mode 100644 index 0000000..3bed5bd --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/log-ed54378b49b29362/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6597564319215557603,"build_script_build",false,13599707095242785393]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/log-ed54378b49b29362/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/dep-lib-num-traits b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/dep-lib-num-traits new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/dep-lib-num-traits differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/lib-num-traits b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/lib-num-traits new file mode 100644 index 0000000..3a5336e --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/lib-num-traits @@ -0,0 +1 @@ +a3ce5db60a2a75b4 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/lib-num-traits.json b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/lib-num-traits.json new file mode 100644 index 0000000..30725bb --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/lib-num-traits.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":13149273197211247723,"profile":3188463645652688667,"path":12118494246692403309,"deps":[[8121635694596382552,"build_script_build",false,2303928376893901569]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/num-traits-1fa0c6b123383f3a/dep-lib-num-traits"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":14621636500951049976,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-807aaf61f994ecb3/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-807aaf61f994ecb3/run-build-script-build-script-build new file mode 100644 index 0000000..6eb6a28 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-807aaf61f994ecb3/run-build-script-build-script-build @@ -0,0 +1 @@ +010bb4eca632f91f \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-807aaf61f994ecb3/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-807aaf61f994ecb3/run-build-script-build-script-build.json new file mode 100644 index 0000000..19b58ae --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num-traits-807aaf61f994ecb3/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[8121635694596382552,"build_script_build",false,221825209563281552]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/dep-lib-num_enum b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/dep-lib-num_enum new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/dep-lib-num_enum differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/lib-num_enum b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/lib-num_enum new file mode 100644 index 0000000..1530cba --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/lib-num_enum @@ -0,0 +1 @@ +d85f0192955a19ea \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/lib-num_enum.json b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/lib-num_enum.json new file mode 100644 index 0000000..ae8ce5c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/lib-num_enum.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":16299386132452100174,"profile":3188463645652688667,"path":5979620069244800439,"deps":[[5409788205247883277,"num_enum_derive",false,4187151707281901973]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/num_enum-467a0bd2a80b8274/dep-lib-num_enum"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":15938360860676487883,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/dep-lib-once_cell b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/dep-lib-once_cell new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/dep-lib-once_cell differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/lib-once_cell b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/lib-once_cell new file mode 100644 index 0000000..413dc47 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/lib-once_cell @@ -0,0 +1 @@ +cab6077fb1a20f6f \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/lib-once_cell.json b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/lib-once_cell.json new file mode 100644 index 0000000..6711362 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","target":17253442120831005152,"profile":3188463645652688667,"path":8683663568980172843,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/once_cell-3f3cc0f7b64184bd/dep-lib-once_cell"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":14177539708254521827,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde-3d605163c337ab52/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/serde-3d605163c337ab52/run-build-script-build-script-build new file mode 100644 index 0000000..a4b4310 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde-3d605163c337ab52/run-build-script-build-script-build @@ -0,0 +1 @@ +54726ac0c020173b \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde-3d605163c337ab52/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/serde-3d605163c337ab52/run-build-script-build-script-build.json new file mode 100644 index 0000000..c2acdca --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde-3d605163c337ab52/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[13445702510275822123,"build_script_build",false,6066884917732752259]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/dep-lib-serde b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/dep-lib-serde new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/dep-lib-serde differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/lib-serde b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/lib-serde new file mode 100644 index 0000000..c518339 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/lib-serde @@ -0,0 +1 @@ +2726f77a7be12efe \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/lib-serde.json b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/lib-serde.json new file mode 100644 index 0000000..e84cafa --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/lib-serde.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","target":15771919462364234457,"profile":3188463645652688667,"path":9240072271348121403,"deps":[[4600690152067640602,"serde_derive",false,18115644426655460525],[13445702510275822123,"build_script_build",false,4257907984936104532]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/serde-fa5db7274d819308/dep-lib-serde"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/dep-lib-serde_bytes b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/dep-lib-serde_bytes new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/dep-lib-serde_bytes differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/lib-serde_bytes b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/lib-serde_bytes new file mode 100644 index 0000000..77e8be1 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/lib-serde_bytes @@ -0,0 +1 @@ +2b44fc33f65bc70e \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/lib-serde_bytes.json b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/lib-serde_bytes.json new file mode 100644 index 0000000..98677a6 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/lib-serde_bytes.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":8998211666479489701,"profile":3188463645652688667,"path":8320177950786617367,"deps":[[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/serde_bytes-46de238783bfe742/dep-lib-serde_bytes"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":3345639006982784610,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/dep-lib-sha2 b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/dep-lib-sha2 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/dep-lib-sha2 differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/lib-sha2 b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/lib-sha2 new file mode 100644 index 0000000..9ee4a05 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/lib-sha2 @@ -0,0 +1 @@ +393b3b6fae2a8101 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/lib-sha2.json b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/lib-sha2.json new file mode 100644 index 0000000..74036c7 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/lib-sha2.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":18376301184193729913,"profile":3188463645652688667,"path":4266682475900142868,"deps":[[2452538001284770427,"cfg_if",false,18338716342890501705],[8521755248767573771,"digest",false,16002447881788268692]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/sha2-bb60cecc061c1fde/dep-lib-sha2"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13125521705435454745,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/dep-lib-sha3 b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/dep-lib-sha3 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/dep-lib-sha3 differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/lib-sha3 b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/lib-sha3 new file mode 100644 index 0000000..2180987 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/lib-sha3 @@ -0,0 +1 @@ +0094499d848d3729 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/lib-sha3.json b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/lib-sha3.json new file mode 100644 index 0000000..a926c81 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/lib-sha3.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":8349084591288270624,"profile":3188463645652688667,"path":11117988096833216988,"deps":[[8521755248767573771,"digest",false,16002447881788268692],[8548069293649483615,"keccak",false,1218945222343684160]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/sha3-822a927a4a13ba23/dep-lib-sha3"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":1773086615371866852,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-2029b6272cd296ce/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-2029b6272cd296ce/run-build-script-build-script-build new file mode 100644 index 0000000..cc64b04 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-2029b6272cd296ce/run-build-script-build-script-build @@ -0,0 +1 @@ +b2105d725af1c1ad \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-2029b6272cd296ce/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-2029b6272cd296ce/run-build-script-build-script-build.json new file mode 100644 index 0000000..ad784a7 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-2029b6272cd296ce/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[9976875378875079208,"build_script_build",false,1881987293826369157]],"local":[{"Precalculated":"1.10.41"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/dep-lib-solana-frozen-abi b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/dep-lib-solana-frozen-abi new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/dep-lib-solana-frozen-abi differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/lib-solana-frozen-abi b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/lib-solana-frozen-abi new file mode 100644 index 0000000..5d74f44 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/lib-solana-frozen-abi @@ -0,0 +1 @@ +30c1b0a1ea062682 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/lib-solana-frozen-abi.json b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/lib-solana-frozen-abi.json new file mode 100644 index 0000000..4f6f08b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/lib-solana-frozen-abi.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":1606294514046539268,"profile":3188463645652688667,"path":12136096649134752111,"deps":[[2711478123133662383,"bs58",false,13491068604995878264],[4600690152067640602,"serde_derive",false,18115644426655460525],[6147790641371885936,"thiserror",false,2379563226906744716],[6289230257329224020,"solana_frozen_abi_macro",false,17440413692273065718],[6597564319215557603,"log",false,17489033801958746568],[6685014296130524576,"lazy_static",false,16336191361967432949],[9957501532593414149,"sha2",false,108414794712431417],[9976875378875079208,"build_script_build",false,12520553809834741938],[10979548927897115015,"serde_bytes",false,1064920949888664619],[12065847578846483130,"bv",false,6985159302699088699],[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/solana-frozen-abi-9d1ca6df5279755d/dep-lib-solana-frozen-abi"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":10761554926887348739,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-31203ccb78f34626/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-31203ccb78f34626/run-build-script-build-script-build new file mode 100644 index 0000000..bbc93c6 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-31203ccb78f34626/run-build-script-build-script-build @@ -0,0 +1 @@ +a181bcc6ede8eb8f \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-31203ccb78f34626/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-31203ccb78f34626/run-build-script-build-script-build.json new file mode 100644 index 0000000..9ea6154 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-31203ccb78f34626/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[9957987110813333963,"build_script_build",false,17536935292971273454]],"local":[{"Precalculated":"1.10.41"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/dep-lib-solana-program b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/dep-lib-solana-program new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/dep-lib-solana-program differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/lib-solana-program b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/lib-solana-program new file mode 100644 index 0000000..f749959 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/lib-solana-program @@ -0,0 +1 @@ +a3c9d5b2d23288d0 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/lib-solana-program.json b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/lib-solana-program.json new file mode 100644 index 0000000..e06aa57 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/lib-solana-program.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2909894134807516183,"profile":3188463645652688667,"path":5245545014788126660,"deps":[[73337003952838551,"solana_sdk_macro",false,7550300256085561670],[1759060122986695407,"borsh_derive",false,2275537850582280715],[2237233735950521307,"bytemuck",false,831923489600250674],[2554073919744498126,"rustversion",false,7571017585521110827],[2711478123133662383,"bs58",false,13491068604995878264],[4600690152067640602,"serde_derive",false,18115644426655460525],[6147790641371885936,"thiserror",false,2379563226906744716],[6289230257329224020,"solana_frozen_abi_macro",false,17440413692273065718],[6597564319215557603,"log",false,17489033801958746568],[6685014296130524576,"lazy_static",false,16336191361967432949],[7044288671118729987,"blake3",false,6572630078236004164],[8121635694596382552,"num_traits",false,13003345724599815843],[9957501532593414149,"sha2",false,108414794712431417],[9957987110813333963,"build_script_build",false,10370638674889834913],[9976875378875079208,"solana_frozen_abi",false,9378190878850466096],[10979548927897115015,"serde_bytes",false,1064920949888664619],[12065847578846483130,"bv",false,6985159302699088699],[12476079151637451836,"itertools",false,5000262847681663615],[12639858850933718058,"bincode",false,4041933787034621020],[13434381959712907675,"borsh",false,107933844335850117],[13445702510275822123,"serde",false,18315824655022630439],[16951555106074306941,"num_derive",false,6389540988903323612],[18351081423280439562,"sha3",false,2969998079988175872]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/solana-program-858d1fa05c88e3b1/dep-lib-solana-program"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":6823008017891525108,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/dep-lib-spl-associated-token-account b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/dep-lib-spl-associated-token-account new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/dep-lib-spl-associated-token-account differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/lib-spl-associated-token-account b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/lib-spl-associated-token-account new file mode 100644 index 0000000..4249c6a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/lib-spl-associated-token-account @@ -0,0 +1 @@ +9456712101266bf0 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/lib-spl-associated-token-account.json b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/lib-spl-associated-token-account.json new file mode 100644 index 0000000..893330a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/lib-spl-associated-token-account.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"no-entrypoint\", \"no-token-entrypoint\"]","target":16619773486716940958,"profile":3188463645652688667,"path":6543656181338981095,"deps":[[9338744480042532245,"spl_token",false,3261036190287987447],[9957987110813333963,"solana_program",false,15026316037246536099],[13434381959712907675,"borsh",false,107933844335850117]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/spl-associated-token-account-c7770ad4d488b65a/dep-lib-spl-associated-token-account"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":784065288020932736,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/dep-lib-spl-token b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/dep-lib-spl-token new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/dep-lib-spl-token differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/lib-spl-token b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/lib-spl-token new file mode 100644 index 0000000..f6e2d73 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/lib-spl-token @@ -0,0 +1 @@ +f702cf292387412d \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/lib-spl-token.json b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/lib-spl-token.json new file mode 100644 index 0000000..5823db9 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/lib-spl-token.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"no-entrypoint\"]","target":4609501184108094328,"profile":3188463645652688667,"path":14790309132234709031,"deps":[[1336372196111618170,"num_enum",false,16868613477739093976],[2237233735950521307,"bytemuck",false,831923489600250674],[4174244234723058678,"arrayref",false,13934941302426343774],[6147790641371885936,"thiserror",false,2379563226906744716],[8121635694596382552,"num_traits",false,13003345724599815843],[9957987110813333963,"solana_program",false,15026316037246536099],[16951555106074306941,"num_derive",false,6389540988903323612]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/spl-token-7f59c828209568e6/dep-lib-spl-token"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":15172569499351458450,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/dep-lib-subtle b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/dep-lib-subtle new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/dep-lib-subtle differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/lib-subtle b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/lib-subtle new file mode 100644 index 0000000..133a3ca --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/lib-subtle @@ -0,0 +1 @@ +1b280385ca18b510 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/lib-subtle.json b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/lib-subtle.json new file mode 100644 index 0000000..190e193 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/lib-subtle.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"std\"]","target":4524036504181758837,"profile":3188463645652688667,"path":7526796579174825615,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/subtle-aa75b6308016e5c4/dep-lib-subtle"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":9136318916805708739,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/dep-lib-superteam_dao_contract b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/dep-lib-superteam_dao_contract new file mode 100644 index 0000000..a59db75 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/dep-lib-superteam_dao_contract differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/lib-superteam_dao_contract b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/lib-superteam_dao_contract new file mode 100644 index 0000000..99df847 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/lib-superteam_dao_contract @@ -0,0 +1 @@ +89de2038df00a241 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/lib-superteam_dao_contract.json b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/lib-superteam_dao_contract.json new file mode 100644 index 0000000..c37ab73 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/lib-superteam_dao_contract.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\"]","target":15414686034331815050,"profile":3188463645652688667,"path":14029706870519694315,"deps":[[844940212579727508,"anchor_lang",false,7826036623340337679],[6973803449826840318,"anchor_spl",false,555980787229221999]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/dep-lib-superteam_dao_contract"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":4016031212386852110,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/output-lib-superteam_dao_contract b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/output-lib-superteam_dao_contract new file mode 100644 index 0000000..d2d2f42 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/superteam-dao-contract-91ad2ec4a660f24f/output-lib-superteam_dao_contract @@ -0,0 +1,17 @@ +{"message":"unused import: `crate::constants::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs","byte_start":34,"byte_end":53,"line_start":3,"line_end":3,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs","byte_start":30,"byte_end":54,"line_start":3,"line_end":3,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::constants::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::constants::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} +{"message":"unused import: `crate::constants::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs","byte_start":34,"byte_end":53,"line_start":3,"line_end":3,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs","byte_start":30,"byte_end":54,"line_start":3,"line_end":3,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::constants::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::constants::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused imports: `Mint`, `TokenAccount`, `self`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":53,"byte_end":57,"line_start":2,"line_end":2,"column_start":25,"column_end":29,"is_primary":true,"text":[{"text":"use anchor_spl::token::{self, Mint, Token, TokenAccount};","highlight_start":25,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":59,"byte_end":63,"line_start":2,"line_end":2,"column_start":31,"column_end":35,"is_primary":true,"text":[{"text":"use anchor_spl::token::{self, Mint, Token, TokenAccount};","highlight_start":31,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":72,"byte_end":84,"line_start":2,"line_end":2,"column_start":44,"column_end":56,"is_primary":true,"text":[{"text":"use anchor_spl::token::{self, Mint, Token, TokenAccount};","highlight_start":44,"highlight_end":56}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":53,"byte_end":65,"line_start":2,"line_end":2,"column_start":25,"column_end":37,"is_primary":true,"text":[{"text":"use anchor_spl::token::{self, Mint, Token, TokenAccount};","highlight_start":25,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":70,"byte_end":84,"line_start":2,"line_end":2,"column_start":42,"column_end":56,"is_primary":true,"text":[{"text":"use anchor_spl::token::{self, Mint, Token, TokenAccount};","highlight_start":42,"highlight_end":56}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `Mint`, `TokenAccount`, `self`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs:2:25\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse anchor_spl::token::{self, Mint, Token, TokenAccount};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `crate::constants::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":92,"byte_end":111,"line_start":4,"line_end":4,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs","byte_start":88,"byte_end":112,"line_start":4,"line_end":4,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::constants::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::constants::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `anchor_lang::error::Error::ProgramError`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs","byte_start":36,"byte_end":75,"line_start":2,"line_end":2,"column_start":5,"column_end":44,"is_primary":true,"text":[{"text":"use anchor_lang::error::Error::ProgramError;","highlight_start":5,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs","byte_start":32,"byte_end":76,"line_start":2,"line_end":2,"column_start":1,"column_end":45,"is_primary":true,"text":[{"text":"use anchor_lang::error::Error::ProgramError;","highlight_start":1,"highlight_end":45}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `anchor_lang::error::Error::ProgramError`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/proposal/close_proposal.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse anchor_lang::error::Error::ProgramError;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `crate::constants::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs","byte_start":111,"byte_end":130,"line_start":5,"line_end":5,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs","byte_start":107,"byte_end":131,"line_start":5,"line_end":5,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::constants::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/proposal/close_proposal.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::constants::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `crate::error::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs","byte_start":93,"byte_end":108,"line_start":5,"line_end":5,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":"use crate::error::*;","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs","byte_start":89,"byte_end":109,"line_start":5,"line_end":5,"column_start":1,"column_end":21,"is_primary":true,"text":[{"text":"use crate::error::*;","highlight_start":1,"highlight_end":21}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::error::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/instructions/identifier/create_identifier.rs:5:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::error::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `crate::constants::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":107,"byte_end":126,"line_start":7,"line_end":7,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":103,"byte_end":127,"line_start":7,"line_end":7,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"use crate::constants::*;","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::constants::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:7:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::constants::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `crate::error::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":132,"byte_end":147,"line_start":8,"line_end":8,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":"use crate::error::*;","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":128,"byte_end":148,"line_start":8,"line_end":8,"column_start":1,"column_end":21,"is_primary":true,"text":[{"text":"use crate::error::*;","highlight_start":1,"highlight_end":21}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `crate::error::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:8:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse crate::error::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused import: `schemas::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":175,"byte_end":185,"line_start":11,"line_end":11,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use schemas::*;","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":171,"byte_end":186,"line_start":11,"line_end":11,"column_start":1,"column_end":16,"is_primary":true,"text":[{"text":"use schemas::*;","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `schemas::*`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:11:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m11\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse schemas::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":398,"byte_end":430,"line_start":20,"line_end":20,"column_start":9,"column_end":41,"is_primary":true,"text":[{"text":" create_identifier::handler(ctx);","highlight_start":9,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_must_use)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:20:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m create_identifier::handler(ctx);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_must_use)]` on by default\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":684,"byte_end":778,"line_start":26,"line_end":26,"column_start":9,"column_end":103,"is_primary":true,"text":[{"text":" create_proposal::handler(ctx, recipient, image, title, subtitle, spl, tags, amount, is_owner);","highlight_start":9,"highlight_end":103}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:26:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m26\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m create_proposal::handler(ctx, recipient, image, title, subtitle, spl, tags, amount, is_owner);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":882,"byte_end":912,"line_start":31,"line_end":31,"column_start":9,"column_end":39,"is_primary":true,"text":[{"text":" cancel_proposal::handler(ctx);","highlight_start":9,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:31:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m31\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m cancel_proposal::handler(ctx);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":1016,"byte_end":1046,"line_start":36,"line_end":36,"column_start":9,"column_end":39,"is_primary":true,"text":[{"text":" reject_proposal::handler(ctx);","highlight_start":9,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:36:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m36\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m reject_proposal::handler(ctx);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":1186,"byte_end":1235,"line_start":41,"line_end":41,"column_start":9,"column_end":58,"is_primary":true,"text":[{"text":" approve_proposal::handler(ctx, transaction_hash);","highlight_start":9,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:41:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m41\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m approve_proposal::handler(ctx, transaction_hash);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"unused `std::result::Result` that must be used","code":{"code":"unused_must_use","explanation":null},"level":"warning","spans":[{"file_name":"programs/superteam-dao-contract/src/lib.rs","byte_start":1337,"byte_end":1366,"line_start":46,"line_end":46,"column_start":9,"column_end":38,"is_primary":true,"text":[{"text":" close_proposal::handler(ctx);","highlight_start":9,"highlight_end":38}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this `Result` may be an `Err` variant, which should be handled","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused `std::result::Result` that must be used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mprograms/superteam-dao-contract/src/lib.rs:46:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m46\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m close_proposal::handler(ctx);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this `Result` may be an `Err` variant, which should be handled\u001b[0m\n\n"} +{"message":"16 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 16 warnings emitted\u001b[0m\n\n"} diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-70dcb1f43238e31e/run-build-script-build-script-build b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-70dcb1f43238e31e/run-build-script-build-script-build new file mode 100644 index 0000000..b96bb5e --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-70dcb1f43238e31e/run-build-script-build-script-build @@ -0,0 +1 @@ +79e6b03907d1f5e7 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-70dcb1f43238e31e/run-build-script-build-script-build.json b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-70dcb1f43238e31e/run-build-script-build-script-build.json new file mode 100644 index 0000000..87b6401 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-70dcb1f43238e31e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6147790641371885936,"build_script_build",false,15756917513616186128]],"local":[{"Precalculated":"1.0.38"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/dep-lib-thiserror b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/dep-lib-thiserror new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/dep-lib-thiserror differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/lib-thiserror b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/lib-thiserror new file mode 100644 index 0000000..5772908 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/lib-thiserror @@ -0,0 +1 @@ +8cd75bbc25e80521 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/lib-thiserror.json b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/lib-thiserror.json new file mode 100644 index 0000000..e891868 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17224392688990046903,"profile":3188463645652688667,"path":17683627663954712738,"deps":[[3399379307741746710,"thiserror_impl",false,1715317386111368123],[6147790641371885936,"build_script_build",false,16714495421018334841]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/thiserror-84dbbd50f34f741f/dep-lib-thiserror"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":11722078131081488174,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/dep-lib-typenum b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/dep-lib-typenum new file mode 100644 index 0000000..2028591 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/dep-lib-typenum differ diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/invoked.timestamp b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/lib-typenum b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/lib-typenum new file mode 100644 index 0000000..a0a290d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/lib-typenum @@ -0,0 +1 @@ +9221aabe28b79be6 \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/lib-typenum.json b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/lib-typenum.json new file mode 100644 index 0000000..de8ee93 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/lib-typenum.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":9141277588366826021,"profile":3188463645652688667,"path":13053629959826936123,"deps":[[11395083745183091805,"build_script_main",false,18390793709340978279]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/typenum-346e054aad46714a/dep-lib-typenum"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5976975242777358168,"config":2202906307356721367,"compile_kind":15478459636706160263} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/typenum-b99af96f1da2f1b7/run-build-script-build-script-main b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-b99af96f1da2f1b7/run-build-script-build-script-main new file mode 100644 index 0000000..55496a6 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-b99af96f1da2f1b7/run-build-script-build-script-main @@ -0,0 +1 @@ +67ecc1a6703939ff \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/.fingerprint/typenum-b99af96f1da2f1b7/run-build-script-build-script-main.json b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-b99af96f1da2f1b7/run-build-script-build-script-main.json new file mode 100644 index 0000000..ff1fa09 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/.fingerprint/typenum-b99af96f1da2f1b7/run-build-script-build-script-main.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[11395083745183091805,"build_script_main",false,17426794712076629665]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/output","paths":["build/main.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/output b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/output new file mode 100644 index 0000000..2c6a596 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=feature="specialize" +cargo:rustc-cfg=feature="stdsimd" diff --git a/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/root-output b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/root-output new file mode 100644 index 0000000..cd0661c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/stderr b/target/bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/output b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/output new file mode 100644 index 0000000..ed44de8 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/output @@ -0,0 +1,34 @@ +cargo:rerun-if-env-changed=CARGO_FEATURE_PURE +cargo:rerun-if-env-changed=CARGO_FEATURE_NO_NEON +cargo:rerun-if-env-changed=CARGO_FEATURE_NO_NEON +cargo:rerun-if-env-changed=CARGO_FEATURE_PURE +cargo:rerun-if-env-changed=CC +cargo:rerun-if-env-changed=CFLAGS +cargo:rerun-if-changed=c/blake3_sse41_x86-64_windows_msvc.asm +cargo:rerun-if-changed=c/blake3_avx512_x86-64_windows_msvc.asm +cargo:rerun-if-changed=c/blake3_sse2_x86-64_unix.S +cargo:rerun-if-changed=c/blake3_sse2_x86-64_windows_msvc.asm +cargo:rerun-if-changed=c/blake3_sse41_x86-64_unix.S +cargo:rerun-if-changed=c/blake3.h +cargo:rerun-if-changed=c/blake3_dispatch.c +cargo:rerun-if-changed=c/blake3_sse41.c +cargo:rerun-if-changed=c/blake3_avx512_x86-64_windows_gnu.S +cargo:rerun-if-changed=c/Makefile.testing +cargo:rerun-if-changed=c/test.py +cargo:rerun-if-changed=c/blake3_portable.c +cargo:rerun-if-changed=c/blake3_neon.c +cargo:rerun-if-changed=c/blake3_avx512.c +cargo:rerun-if-changed=c/README.md +cargo:rerun-if-changed=c/example.c +cargo:rerun-if-changed=c/blake3_avx2.c +cargo:rerun-if-changed=c/main.c +cargo:rerun-if-changed=c/.gitignore +cargo:rerun-if-changed=c/blake3_avx2_x86-64_unix.S +cargo:rerun-if-changed=c/blake3_avx2_x86-64_windows_gnu.S +cargo:rerun-if-changed=c/blake3.c +cargo:rerun-if-changed=c/blake3_sse2_x86-64_windows_gnu.S +cargo:rerun-if-changed=c/blake3_impl.h +cargo:rerun-if-changed=c/blake3_sse41_x86-64_windows_gnu.S +cargo:rerun-if-changed=c/blake3_avx2_x86-64_windows_msvc.asm +cargo:rerun-if-changed=c/blake3_sse2.c +cargo:rerun-if-changed=c/blake3_avx512_x86-64_unix.S diff --git a/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/root-output b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/root-output new file mode 100644 index 0000000..d9c9ae4 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/stderr b/target/bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/out/rust_out.o b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/out/rust_out.o new file mode 100644 index 0000000..f8ebfcc Binary files /dev/null and b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/out/rust_out.o differ diff --git a/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/output b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/output new file mode 100644 index 0000000..ad1b8ea --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=int_128 +cargo:rustc-cfg=inclusive_range diff --git a/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/root-output b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/root-output new file mode 100644 index 0000000..ffe6284 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/stderr b/target/bpfel-unknown-unknown/release/build/bv-adbb2994275f5d3c/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/output b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/output new file mode 100644 index 0000000..a67c3a8 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/output @@ -0,0 +1 @@ +cargo:rustc-cfg=relaxed_coherence diff --git a/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/root-output b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/root-output new file mode 100644 index 0000000..809909b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/stderr b/target/bpfel-unknown-unknown/release/build/generic-array-f9aa56f246707c1e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/output b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/output new file mode 100644 index 0000000..ba39005 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/output @@ -0,0 +1,3 @@ +cargo:rustc-cfg=atomic_cas +cargo:rustc-cfg=has_atomics +cargo:rerun-if-changed=build.rs diff --git a/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/root-output b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/root-output new file mode 100644 index 0000000..7dd24dd --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/stderr b/target/bpfel-unknown-unknown/release/build/log-ed54378b49b29362/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe0.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe0.ll new file mode 100644 index 0000000..91c6501 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe0.ll @@ -0,0 +1,8 @@ +; ModuleID = 'probe0.a9e81ce9-cgu.0' +source_filename = "probe0.a9e81ce9-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe1.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe1.ll new file mode 100644 index 0000000..da43b28 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe1.ll @@ -0,0 +1,8 @@ +; ModuleID = 'probe1.7e3b5cfe-cgu.0' +source_filename = "probe1.7e3b5cfe-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe2.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe2.ll new file mode 100644 index 0000000..6c34ff5 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe2.ll @@ -0,0 +1,50 @@ +; ModuleID = 'probe2.14257ece-cgu.0' +source_filename = "probe2.14257ece-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +; core::f64::::to_int_unchecked +; Function Attrs: inlinehint nounwind +define i32 @"_ZN4core3f6421_$LT$impl$u20$f64$GT$16to_int_unchecked17h8e36e18e0958b4e1E"(double %self) unnamed_addr #0 { +start: +; call >::to_int_unchecked + %0 = call i32 @"_ZN65_$LT$f64$u20$as$u20$core..convert..num..FloatToInt$LT$i32$GT$$GT$16to_int_unchecked17h599275504c9cd06dE"(double %self) #2 + br label %bb1 + +bb1: ; preds = %start + ret i32 %0 +} + +; >::to_int_unchecked +; Function Attrs: inlinehint nounwind +define internal i32 @"_ZN65_$LT$f64$u20$as$u20$core..convert..num..FloatToInt$LT$i32$GT$$GT$16to_int_unchecked17h599275504c9cd06dE"(double %self) unnamed_addr #0 { +start: + %0 = alloca i32, align 4 + %1 = fptosi double %self to i32 + store i32 %1, i32* %0, align 4 + %2 = load i32, i32* %0, align 4 + br label %bb1 + +bb1: ; preds = %start + ret i32 %2 +} + +; probe2::probe +; Function Attrs: nounwind +define void @_ZN6probe25probe17hb8c080bb797f2c7bE() unnamed_addr #1 { +start: +; call core::f64::::to_int_unchecked + %_1 = call i32 @"_ZN4core3f6421_$LT$impl$u20$f64$GT$16to_int_unchecked17h8e36e18e0958b4e1E"(double 1.000000e+00) #2 + br label %bb1 + +bb1: ; preds = %start + ret void +} + +attributes #0 = { inlinehint nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #1 = { nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #2 = { nounwind } + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe3.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe3.ll new file mode 100644 index 0000000..e52960b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe3.ll @@ -0,0 +1,27 @@ +; ModuleID = 'probe3.38516b5b-cgu.0' +source_filename = "probe3.38516b5b-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +; probe3::probe +; Function Attrs: nounwind +define void @_ZN6probe35probe17h6ac14389940e3410E() unnamed_addr #0 { +start: + %0 = alloca i32, align 4 + store i32 -2147483648, i32* %0, align 4 + %1 = load i32, i32* %0, align 4 + br label %bb1 + +bb1: ; preds = %start + ret void +} + +; Function Attrs: nofree nosync nounwind readnone speculatable willreturn +declare i32 @llvm.bitreverse.i32(i32) #1 + +attributes #0 = { nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #1 = { nofree nosync nounwind readnone speculatable willreturn } + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe4.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe4.ll new file mode 100644 index 0000000..93c291a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe4.ll @@ -0,0 +1,27 @@ +; ModuleID = 'probe4.2686b6c6-cgu.0' +source_filename = "probe4.2686b6c6-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +; probe4::probe +; Function Attrs: nounwind +define void @_ZN6probe45probe17hc1377e32f31d2c96E() unnamed_addr #0 { +start: + %0 = alloca i32, align 4 + store i32 1, i32* %0, align 4 + %1 = load i32, i32* %0, align 4 + br label %bb1 + +bb1: ; preds = %start + ret void +} + +; Function Attrs: nofree nosync nounwind readnone speculatable willreturn +declare i32 @llvm.cttz.i32(i32, i1 immarg) #1 + +attributes #0 = { nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #1 = { nofree nosync nounwind readnone speculatable willreturn } + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe5.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe5.ll new file mode 100644 index 0000000..9cbc59c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe5.ll @@ -0,0 +1,81 @@ +; ModuleID = 'probe5.d6d49324-cgu.0' +source_filename = "probe5.d6d49324-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +%"core::panic::location::Location" = type { { [0 x i8]*, i64 }, i32, i32 } + +@alloc3 = private unnamed_addr constant <{ [77 x i8] }> <{ [77 x i8] c"/Users/runner/work/bpf-tools/bpf-tools/out/rust/library/core/src/ops/arith.rs" }>, align 1 +@alloc4 = private unnamed_addr constant <{ i8*, [16 x i8] }> <{ i8* getelementptr inbounds (<{ [77 x i8] }>, <{ [77 x i8] }>* @alloc3, i32 0, i32 0, i32 0), [16 x i8] c"M\00\00\00\00\00\00\00\12\03\00\00\01\00\00\00" }>, align 8 +@str.0 = internal constant [28 x i8] c"attempt to add with overflow" +@alloc2 = private unnamed_addr constant <{ [4 x i8] }> <{ [4 x i8] c"\02\00\00\00" }>, align 4 + +; ::add_assign +; Function Attrs: inlinehint nounwind +define internal void @"_ZN51_$LT$i32$u20$as$u20$core..ops..arith..AddAssign$GT$10add_assign17hb74760fb52897478E"(i32* align 4 %self, i32 %other) unnamed_addr #0 { +start: + %0 = load i32, i32* %self, align 4 + %1 = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %0, i32 %other) + %_4.0 = extractvalue { i32, i1 } %1, 0 + %_4.1 = extractvalue { i32, i1 } %1, 1 + %2 = call i1 @llvm.expect.i1(i1 %_4.1, i1 false) + br i1 %2, label %panic, label %bb1 + +bb1: ; preds = %start + store i32 %_4.0, i32* %self, align 4 + ret void + +panic: ; preds = %start +; call core::panicking::panic + call void @_ZN4core9panicking5panic17h40cef11d99600892E([0 x i8]* align 1 bitcast ([28 x i8]* @str.0 to [0 x i8]*), i64 28, %"core::panic::location::Location"* align 8 bitcast (<{ i8*, [16 x i8] }>* @alloc4 to %"core::panic::location::Location"*)) #5 + unreachable +} + +; >::add_assign +; Function Attrs: inlinehint nounwind +define internal void @"_ZN66_$LT$i32$u20$as$u20$core..ops..arith..AddAssign$LT$$RF$i32$GT$$GT$10add_assign17h656eba3bf3a889f8E"(i32* align 4 %self, i32* align 4 %other) unnamed_addr #0 { +start: + %_5 = load i32, i32* %other, align 4 +; call ::add_assign + call void @"_ZN51_$LT$i32$u20$as$u20$core..ops..arith..AddAssign$GT$10add_assign17hb74760fb52897478E"(i32* align 4 %self, i32 %_5) #6 + br label %bb1 + +bb1: ; preds = %start + ret void +} + +; probe5::probe +; Function Attrs: nounwind +define void @_ZN6probe55probe17hfd95056dfc4de215E() unnamed_addr #1 { +start: + %x = alloca i32, align 4 + store i32 1, i32* %x, align 4 +; call >::add_assign + call void @"_ZN66_$LT$i32$u20$as$u20$core..ops..arith..AddAssign$LT$$RF$i32$GT$$GT$10add_assign17h656eba3bf3a889f8E"(i32* align 4 %x, i32* align 4 bitcast (<{ [4 x i8] }>* @alloc2 to i32*)) #6 + br label %bb1 + +bb1: ; preds = %start + ret void +} + +; Function Attrs: nofree nosync nounwind readnone speculatable willreturn +declare { i32, i1 } @llvm.sadd.with.overflow.i32(i32, i32) #2 + +; Function Attrs: nofree nosync nounwind readnone willreturn +declare i1 @llvm.expect.i1(i1, i1) #3 + +; core::panicking::panic +; Function Attrs: cold noinline noreturn nounwind +declare void @_ZN4core9panicking5panic17h40cef11d99600892E([0 x i8]* align 1, i64, %"core::panic::location::Location"* align 8) unnamed_addr #4 + +attributes #0 = { inlinehint nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #1 = { nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #2 = { nofree nosync nounwind readnone speculatable willreturn } +attributes #3 = { nofree nosync nounwind readnone willreturn } +attributes #4 = { cold noinline noreturn nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #5 = { noreturn nounwind } +attributes #6 = { nounwind } + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe6.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe6.ll new file mode 100644 index 0000000..4f60bff --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe6.ll @@ -0,0 +1,46 @@ +; ModuleID = 'probe6.90b2ab0f-cgu.0' +source_filename = "probe6.90b2ab0f-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +%"core::panic::location::Location" = type { { [0 x i8]*, i64 }, i32, i32 } + +@alloc1 = private unnamed_addr constant <{ [75 x i8] }> <{ [75 x i8] c"/Users/runner/work/bpf-tools/bpf-tools/out/rust/library/core/src/num/mod.rs" }>, align 1 +@alloc2 = private unnamed_addr constant <{ i8*, [16 x i8] }> <{ i8* getelementptr inbounds (<{ [75 x i8] }>, <{ [75 x i8] }>* @alloc1, i32 0, i32 0, i32 0), [16 x i8] c"K\00\00\00\00\00\00\00K\03\00\00\05\00\00\00" }>, align 8 +@str.0 = internal constant [25 x i8] c"attempt to divide by zero" + +; probe6::probe +; Function Attrs: nounwind +define void @_ZN6probe65probe17h67461161f3db5830E() unnamed_addr #0 { +start: + %0 = call i1 @llvm.expect.i1(i1 false, i1 false) #3 + br i1 %0, label %panic.i, label %"_ZN4core3num21_$LT$impl$u20$u32$GT$10div_euclid17h7f6a11a78cca24acE.exit" + +panic.i: ; preds = %start +; call core::panicking::panic + call void @_ZN4core9panicking5panic17h40cef11d99600892E([0 x i8]* align 1 bitcast ([25 x i8]* @str.0 to [0 x i8]*), i64 25, %"core::panic::location::Location"* align 8 bitcast (<{ i8*, [16 x i8] }>* @alloc2 to %"core::panic::location::Location"*)) #4 + unreachable + +"_ZN4core3num21_$LT$impl$u20$u32$GT$10div_euclid17h7f6a11a78cca24acE.exit": ; preds = %start + br label %bb1 + +bb1: ; preds = %"_ZN4core3num21_$LT$impl$u20$u32$GT$10div_euclid17h7f6a11a78cca24acE.exit" + ret void +} + +; Function Attrs: nofree nosync nounwind readnone willreturn +declare i1 @llvm.expect.i1(i1, i1) #1 + +; core::panicking::panic +; Function Attrs: cold noinline noreturn nounwind +declare void @_ZN4core9panicking5panic17h40cef11d99600892E([0 x i8]* align 1, i64, %"core::panic::location::Location"* align 8) unnamed_addr #2 + +attributes #0 = { nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #1 = { nofree nosync nounwind readnone willreturn } +attributes #2 = { cold noinline noreturn nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #3 = { nounwind } +attributes #4 = { noreturn nounwind } + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe7.ll b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe7.ll new file mode 100644 index 0000000..6459497 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out/probe7.ll @@ -0,0 +1,42 @@ +; ModuleID = 'probe7.9446523f-cgu.0' +source_filename = "probe7.9446523f-cgu.0" +target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128" +target triple = "bpfel" + +; std::f64::::copysign +; Function Attrs: inlinehint nounwind +define internal double @"_ZN3std3f6421_$LT$impl$u20$f64$GT$8copysign17h6319c373b7dace2aE"(double %self, double %sign) unnamed_addr #0 { +start: + %0 = alloca double, align 8 + %1 = call double @llvm.copysign.f64(double %self, double %sign) + store double %1, double* %0, align 8 + %2 = load double, double* %0, align 8 + br label %bb1 + +bb1: ; preds = %start + ret double %2 +} + +; probe7::probe +; Function Attrs: nounwind +define void @_ZN6probe75probe17hdb29d32760f01281E() unnamed_addr #1 { +start: +; call std::f64::::copysign + %_1 = call double @"_ZN3std3f6421_$LT$impl$u20$f64$GT$8copysign17h6319c373b7dace2aE"(double 1.000000e+00, double -1.000000e+00) #3 + br label %bb1 + +bb1: ; preds = %start + ret void +} + +; Function Attrs: nofree nosync nounwind readnone speculatable willreturn +declare double @llvm.copysign.f64(double, double) #2 + +attributes #0 = { inlinehint nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #1 = { nounwind "target-cpu"="generic" "target-features"="+solana" } +attributes #2 = { nofree nosync nounwind readnone speculatable willreturn } +attributes #3 = { nounwind } + +!llvm.module.flags = !{!0} + +!0 = !{i32 7, !"PIC Level", i32 2} diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/output b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/output new file mode 100644 index 0000000..14657a3 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/output @@ -0,0 +1,8 @@ +cargo:rustc-cfg=has_i128 +cargo:rustc-cfg=has_to_int_unchecked +cargo:rustc-cfg=has_reverse_bits +cargo:rustc-cfg=has_leading_trailing_ones +cargo:rustc-cfg=has_int_assignop_ref +cargo:rustc-cfg=has_div_euclid +cargo:rustc-cfg=has_copysign +cargo:rerun-if-changed=build.rs diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/root-output b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/root-output new file mode 100644 index 0000000..464d26a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/stderr b/target/bpfel-unknown-unknown/release/build/num-traits-807aaf61f994ecb3/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/output b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/root-output b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/root-output new file mode 100644 index 0000000..6b8d9cf --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/stderr b/target/bpfel-unknown-unknown/release/build/serde-3d605163c337ab52/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/output b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/output new file mode 100644 index 0000000..28b5f1e --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=RUSTC_WITH_SPECIALIZATION +cargo:rustc-cfg=RUSTC_NEEDS_PROC_MACRO_HYGIENE diff --git a/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/root-output b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/root-output new file mode 100644 index 0000000..ed55fa1 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/stderr b/target/bpfel-unknown-unknown/release/build/solana-frozen-abi-2029b6272cd296ce/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/output b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/output new file mode 100644 index 0000000..28b5f1e --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=RUSTC_WITH_SPECIALIZATION +cargo:rustc-cfg=RUSTC_NEEDS_PROC_MACRO_HYGIENE diff --git a/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/root-output b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/root-output new file mode 100644 index 0000000..c283b2c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/stderr b/target/bpfel-unknown-unknown/release/build/solana-program-31203ccb78f34626/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/out/probe.rs b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/out/probe.rs new file mode 100644 index 0000000..cbcb0c5 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/out/probe.rs @@ -0,0 +1,8 @@ + + #![feature(provide_any)] + + use std::any::{Demand, Provider}; + + fn _f<'a, P: Provider>(p: &'a P, demand: &mut Demand<'a>) { + p.provide(demand); + } diff --git a/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/output b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/output new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/root-output b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/root-output new file mode 100644 index 0000000..7d77d26 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/stderr b/target/bpfel-unknown-unknown/release/build/thiserror-70dcb1f43238e31e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/invoked.timestamp b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs new file mode 100644 index 0000000..cbbb546 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs @@ -0,0 +1,2248 @@ + +/** +Type aliases for many constants. + +This file is generated by typenum's build script. + +For unsigned integers, the format is `U` followed by the number. We define aliases for + +- Numbers 0 through 1024 +- Powers of 2 below `u64::MAX` +- Powers of 10 below `u64::MAX` + +These alias definitions look like this: + +```rust +use typenum::{B0, B1, UInt, UTerm}; + +# #[allow(dead_code)] +type U6 = UInt, B1>, B0>; +``` + +For positive signed integers, the format is `P` followed by the number and for negative +signed integers it is `N` followed by the number. For the signed integer zero, we use +`Z0`. We define aliases for + +- Numbers -1024 through 1024 +- Powers of 2 between `i64::MIN` and `i64::MAX` +- Powers of 10 between `i64::MIN` and `i64::MAX` + +These alias definitions look like this: + +```rust +use typenum::{B0, B1, UInt, UTerm, PInt, NInt}; + +# #[allow(dead_code)] +type P6 = PInt, B1>, B0>>; +# #[allow(dead_code)] +type N6 = NInt, B1>, B0>>; +``` + +# Example +```rust +# #[allow(unused_imports)] +use typenum::{U0, U1, U2, U3, U4, U5, U6}; +# #[allow(unused_imports)] +use typenum::{N3, N2, N1, Z0, P1, P2, P3}; +# #[allow(unused_imports)] +use typenum::{U774, N17, N10000, P1024, P4096}; +``` + +We also define the aliases `False` and `True` for `B0` and `B1`, respectively. +*/ +#[allow(missing_docs)] +pub mod consts { + use crate::uint::{UInt, UTerm}; + use crate::int::{PInt, NInt}; + + pub use crate::bit::{B0, B1}; + pub use crate::int::Z0; + + pub type True = B1; + pub type False = B0; + pub type U0 = UTerm; + pub type U1 = UInt; + pub type P1 = PInt; pub type N1 = NInt; + pub type U2 = UInt, B0>; + pub type P2 = PInt; pub type N2 = NInt; + pub type U3 = UInt, B1>; + pub type P3 = PInt; pub type N3 = NInt; + pub type U4 = UInt, B0>, B0>; + pub type P4 = PInt; pub type N4 = NInt; + pub type U5 = UInt, B0>, B1>; + pub type P5 = PInt; pub type N5 = NInt; + pub type U6 = UInt, B1>, B0>; + pub type P6 = PInt; pub type N6 = NInt; + pub type U7 = UInt, B1>, B1>; + pub type P7 = PInt; pub type N7 = NInt; + pub type U8 = UInt, B0>, B0>, B0>; + pub type P8 = PInt; pub type N8 = NInt; + pub type U9 = UInt, B0>, B0>, B1>; + pub type P9 = PInt; pub type N9 = NInt; + pub type U10 = UInt, B0>, B1>, B0>; + pub type P10 = PInt; pub type N10 = NInt; + pub type U11 = UInt, B0>, B1>, B1>; + pub type P11 = PInt; pub type N11 = NInt; + pub type U12 = UInt, B1>, B0>, B0>; + pub type P12 = PInt; pub type N12 = NInt; + pub type U13 = UInt, B1>, B0>, B1>; + pub type P13 = PInt; pub type N13 = NInt; + pub type U14 = UInt, B1>, B1>, B0>; + pub type P14 = PInt; pub type N14 = NInt; + pub type U15 = UInt, B1>, B1>, B1>; + pub type P15 = PInt; pub type N15 = NInt; + pub type U16 = UInt, B0>, B0>, B0>, B0>; + pub type P16 = PInt; pub type N16 = NInt; + pub type U17 = UInt, B0>, B0>, B0>, B1>; + pub type P17 = PInt; pub type N17 = NInt; + pub type U18 = UInt, B0>, B0>, B1>, B0>; + pub type P18 = PInt; pub type N18 = NInt; + pub type U19 = UInt, B0>, B0>, B1>, B1>; + pub type P19 = PInt; pub type N19 = NInt; + pub type U20 = UInt, B0>, B1>, B0>, B0>; + pub type P20 = PInt; pub type N20 = NInt; + pub type U21 = UInt, B0>, B1>, B0>, B1>; + pub type P21 = PInt; pub type N21 = NInt; + pub type U22 = UInt, B0>, B1>, B1>, B0>; + pub type P22 = PInt; pub type N22 = NInt; + pub type U23 = UInt, B0>, B1>, B1>, B1>; + pub type P23 = PInt; pub type N23 = NInt; + pub type U24 = UInt, B1>, B0>, B0>, B0>; + pub type P24 = PInt; pub type N24 = NInt; + pub type U25 = UInt, B1>, B0>, B0>, B1>; + pub type P25 = PInt; pub type N25 = NInt; + pub type U26 = UInt, B1>, B0>, B1>, B0>; + pub type P26 = PInt; pub type N26 = NInt; + pub type U27 = UInt, B1>, B0>, B1>, B1>; + pub type P27 = PInt; pub type N27 = NInt; + pub type U28 = UInt, B1>, B1>, B0>, B0>; + pub type P28 = PInt; pub type N28 = NInt; + pub type U29 = UInt, B1>, B1>, B0>, B1>; + pub type P29 = PInt; pub type N29 = NInt; + pub type U30 = UInt, B1>, B1>, B1>, B0>; + pub type P30 = PInt; pub type N30 = NInt; + pub type U31 = UInt, B1>, B1>, B1>, B1>; + pub type P31 = PInt; pub type N31 = NInt; + pub type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + pub type P32 = PInt; pub type N32 = NInt; + pub type U33 = UInt, B0>, B0>, B0>, B0>, B1>; + pub type P33 = PInt; pub type N33 = NInt; + pub type U34 = UInt, B0>, B0>, B0>, B1>, B0>; + pub type P34 = PInt; pub type N34 = NInt; + pub type U35 = UInt, B0>, B0>, B0>, B1>, B1>; + pub type P35 = PInt; pub type N35 = NInt; + pub type U36 = UInt, B0>, B0>, B1>, B0>, B0>; + pub type P36 = PInt; pub type N36 = NInt; + pub type U37 = UInt, B0>, B0>, B1>, B0>, B1>; + pub type P37 = PInt; pub type N37 = NInt; + pub type U38 = UInt, B0>, B0>, B1>, B1>, B0>; + pub type P38 = PInt; pub type N38 = NInt; + pub type U39 = UInt, B0>, B0>, B1>, B1>, B1>; + pub type P39 = PInt; pub type N39 = NInt; + pub type U40 = UInt, B0>, B1>, B0>, B0>, B0>; + pub type P40 = PInt; pub type N40 = NInt; + pub type U41 = UInt, B0>, B1>, B0>, B0>, B1>; + pub type P41 = PInt; pub type N41 = NInt; + pub type U42 = UInt, B0>, B1>, B0>, B1>, B0>; + pub type P42 = PInt; pub type N42 = NInt; + pub type U43 = UInt, B0>, B1>, B0>, B1>, B1>; + pub type P43 = PInt; pub type N43 = NInt; + pub type U44 = UInt, B0>, B1>, B1>, B0>, B0>; + pub type P44 = PInt; pub type N44 = NInt; + pub type U45 = UInt, B0>, B1>, B1>, B0>, B1>; + pub type P45 = PInt; pub type N45 = NInt; + pub type U46 = UInt, B0>, B1>, B1>, B1>, B0>; + pub type P46 = PInt; pub type N46 = NInt; + pub type U47 = UInt, B0>, B1>, B1>, B1>, B1>; + pub type P47 = PInt; pub type N47 = NInt; + pub type U48 = UInt, B1>, B0>, B0>, B0>, B0>; + pub type P48 = PInt; pub type N48 = NInt; + pub type U49 = UInt, B1>, B0>, B0>, B0>, B1>; + pub type P49 = PInt; pub type N49 = NInt; + pub type U50 = UInt, B1>, B0>, B0>, B1>, B0>; + pub type P50 = PInt; pub type N50 = NInt; + pub type U51 = UInt, B1>, B0>, B0>, B1>, B1>; + pub type P51 = PInt; pub type N51 = NInt; + pub type U52 = UInt, B1>, B0>, B1>, B0>, B0>; + pub type P52 = PInt; pub type N52 = NInt; + pub type U53 = UInt, B1>, B0>, B1>, B0>, B1>; + pub type P53 = PInt; pub type N53 = NInt; + pub type U54 = UInt, B1>, B0>, B1>, B1>, B0>; + pub type P54 = PInt; pub type N54 = NInt; + pub type U55 = UInt, B1>, B0>, B1>, B1>, B1>; + pub type P55 = PInt; pub type N55 = NInt; + pub type U56 = UInt, B1>, B1>, B0>, B0>, B0>; + pub type P56 = PInt; pub type N56 = NInt; + pub type U57 = UInt, B1>, B1>, B0>, B0>, B1>; + pub type P57 = PInt; pub type N57 = NInt; + pub type U58 = UInt, B1>, B1>, B0>, B1>, B0>; + pub type P58 = PInt; pub type N58 = NInt; + pub type U59 = UInt, B1>, B1>, B0>, B1>, B1>; + pub type P59 = PInt; pub type N59 = NInt; + pub type U60 = UInt, B1>, B1>, B1>, B0>, B0>; + pub type P60 = PInt; pub type N60 = NInt; + pub type U61 = UInt, B1>, B1>, B1>, B0>, B1>; + pub type P61 = PInt; pub type N61 = NInt; + pub type U62 = UInt, B1>, B1>, B1>, B1>, B0>; + pub type P62 = PInt; pub type N62 = NInt; + pub type U63 = UInt, B1>, B1>, B1>, B1>, B1>; + pub type P63 = PInt; pub type N63 = NInt; + pub type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P64 = PInt; pub type N64 = NInt; + pub type U65 = UInt, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P65 = PInt; pub type N65 = NInt; + pub type U66 = UInt, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P66 = PInt; pub type N66 = NInt; + pub type U67 = UInt, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P67 = PInt; pub type N67 = NInt; + pub type U68 = UInt, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P68 = PInt; pub type N68 = NInt; + pub type U69 = UInt, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P69 = PInt; pub type N69 = NInt; + pub type U70 = UInt, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P70 = PInt; pub type N70 = NInt; + pub type U71 = UInt, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P71 = PInt; pub type N71 = NInt; + pub type U72 = UInt, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P72 = PInt; pub type N72 = NInt; + pub type U73 = UInt, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P73 = PInt; pub type N73 = NInt; + pub type U74 = UInt, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P74 = PInt; pub type N74 = NInt; + pub type U75 = UInt, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P75 = PInt; pub type N75 = NInt; + pub type U76 = UInt, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P76 = PInt; pub type N76 = NInt; + pub type U77 = UInt, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P77 = PInt; pub type N77 = NInt; + pub type U78 = UInt, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P78 = PInt; pub type N78 = NInt; + pub type U79 = UInt, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P79 = PInt; pub type N79 = NInt; + pub type U80 = UInt, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P80 = PInt; pub type N80 = NInt; + pub type U81 = UInt, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P81 = PInt; pub type N81 = NInt; + pub type U82 = UInt, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P82 = PInt; pub type N82 = NInt; + pub type U83 = UInt, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P83 = PInt; pub type N83 = NInt; + pub type U84 = UInt, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P84 = PInt; pub type N84 = NInt; + pub type U85 = UInt, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P85 = PInt; pub type N85 = NInt; + pub type U86 = UInt, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P86 = PInt; pub type N86 = NInt; + pub type U87 = UInt, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P87 = PInt; pub type N87 = NInt; + pub type U88 = UInt, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P88 = PInt; pub type N88 = NInt; + pub type U89 = UInt, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P89 = PInt; pub type N89 = NInt; + pub type U90 = UInt, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P90 = PInt; pub type N90 = NInt; + pub type U91 = UInt, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P91 = PInt; pub type N91 = NInt; + pub type U92 = UInt, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P92 = PInt; pub type N92 = NInt; + pub type U93 = UInt, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P93 = PInt; pub type N93 = NInt; + pub type U94 = UInt, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P94 = PInt; pub type N94 = NInt; + pub type U95 = UInt, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P95 = PInt; pub type N95 = NInt; + pub type U96 = UInt, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P96 = PInt; pub type N96 = NInt; + pub type U97 = UInt, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P97 = PInt; pub type N97 = NInt; + pub type U98 = UInt, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P98 = PInt; pub type N98 = NInt; + pub type U99 = UInt, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P99 = PInt; pub type N99 = NInt; + pub type U100 = UInt, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P100 = PInt; pub type N100 = NInt; + pub type U101 = UInt, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P101 = PInt; pub type N101 = NInt; + pub type U102 = UInt, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P102 = PInt; pub type N102 = NInt; + pub type U103 = UInt, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P103 = PInt; pub type N103 = NInt; + pub type U104 = UInt, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P104 = PInt; pub type N104 = NInt; + pub type U105 = UInt, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P105 = PInt; pub type N105 = NInt; + pub type U106 = UInt, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P106 = PInt; pub type N106 = NInt; + pub type U107 = UInt, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P107 = PInt; pub type N107 = NInt; + pub type U108 = UInt, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P108 = PInt; pub type N108 = NInt; + pub type U109 = UInt, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P109 = PInt; pub type N109 = NInt; + pub type U110 = UInt, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P110 = PInt; pub type N110 = NInt; + pub type U111 = UInt, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P111 = PInt; pub type N111 = NInt; + pub type U112 = UInt, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P112 = PInt; pub type N112 = NInt; + pub type U113 = UInt, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P113 = PInt; pub type N113 = NInt; + pub type U114 = UInt, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P114 = PInt; pub type N114 = NInt; + pub type U115 = UInt, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P115 = PInt; pub type N115 = NInt; + pub type U116 = UInt, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P116 = PInt; pub type N116 = NInt; + pub type U117 = UInt, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P117 = PInt; pub type N117 = NInt; + pub type U118 = UInt, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P118 = PInt; pub type N118 = NInt; + pub type U119 = UInt, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P119 = PInt; pub type N119 = NInt; + pub type U120 = UInt, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P120 = PInt; pub type N120 = NInt; + pub type U121 = UInt, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P121 = PInt; pub type N121 = NInt; + pub type U122 = UInt, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P122 = PInt; pub type N122 = NInt; + pub type U123 = UInt, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P123 = PInt; pub type N123 = NInt; + pub type U124 = UInt, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P124 = PInt; pub type N124 = NInt; + pub type U125 = UInt, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P125 = PInt; pub type N125 = NInt; + pub type U126 = UInt, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P126 = PInt; pub type N126 = NInt; + pub type U127 = UInt, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P127 = PInt; pub type N127 = NInt; + pub type U128 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P128 = PInt; pub type N128 = NInt; + pub type U129 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P129 = PInt; pub type N129 = NInt; + pub type U130 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P130 = PInt; pub type N130 = NInt; + pub type U131 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P131 = PInt; pub type N131 = NInt; + pub type U132 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P132 = PInt; pub type N132 = NInt; + pub type U133 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P133 = PInt; pub type N133 = NInt; + pub type U134 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P134 = PInt; pub type N134 = NInt; + pub type U135 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P135 = PInt; pub type N135 = NInt; + pub type U136 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P136 = PInt; pub type N136 = NInt; + pub type U137 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P137 = PInt; pub type N137 = NInt; + pub type U138 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P138 = PInt; pub type N138 = NInt; + pub type U139 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P139 = PInt; pub type N139 = NInt; + pub type U140 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P140 = PInt; pub type N140 = NInt; + pub type U141 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P141 = PInt; pub type N141 = NInt; + pub type U142 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P142 = PInt; pub type N142 = NInt; + pub type U143 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P143 = PInt; pub type N143 = NInt; + pub type U144 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P144 = PInt; pub type N144 = NInt; + pub type U145 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P145 = PInt; pub type N145 = NInt; + pub type U146 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P146 = PInt; pub type N146 = NInt; + pub type U147 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P147 = PInt; pub type N147 = NInt; + pub type U148 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P148 = PInt; pub type N148 = NInt; + pub type U149 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P149 = PInt; pub type N149 = NInt; + pub type U150 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P150 = PInt; pub type N150 = NInt; + pub type U151 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P151 = PInt; pub type N151 = NInt; + pub type U152 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P152 = PInt; pub type N152 = NInt; + pub type U153 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P153 = PInt; pub type N153 = NInt; + pub type U154 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P154 = PInt; pub type N154 = NInt; + pub type U155 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P155 = PInt; pub type N155 = NInt; + pub type U156 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P156 = PInt; pub type N156 = NInt; + pub type U157 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P157 = PInt; pub type N157 = NInt; + pub type U158 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P158 = PInt; pub type N158 = NInt; + pub type U159 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P159 = PInt; pub type N159 = NInt; + pub type U160 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P160 = PInt; pub type N160 = NInt; + pub type U161 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P161 = PInt; pub type N161 = NInt; + pub type U162 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P162 = PInt; pub type N162 = NInt; + pub type U163 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P163 = PInt; pub type N163 = NInt; + pub type U164 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P164 = PInt; pub type N164 = NInt; + pub type U165 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P165 = PInt; pub type N165 = NInt; + pub type U166 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P166 = PInt; pub type N166 = NInt; + pub type U167 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P167 = PInt; pub type N167 = NInt; + pub type U168 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P168 = PInt; pub type N168 = NInt; + pub type U169 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P169 = PInt; pub type N169 = NInt; + pub type U170 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P170 = PInt; pub type N170 = NInt; + pub type U171 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P171 = PInt; pub type N171 = NInt; + pub type U172 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P172 = PInt; pub type N172 = NInt; + pub type U173 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P173 = PInt; pub type N173 = NInt; + pub type U174 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P174 = PInt; pub type N174 = NInt; + pub type U175 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P175 = PInt; pub type N175 = NInt; + pub type U176 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P176 = PInt; pub type N176 = NInt; + pub type U177 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P177 = PInt; pub type N177 = NInt; + pub type U178 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P178 = PInt; pub type N178 = NInt; + pub type U179 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P179 = PInt; pub type N179 = NInt; + pub type U180 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P180 = PInt; pub type N180 = NInt; + pub type U181 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P181 = PInt; pub type N181 = NInt; + pub type U182 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P182 = PInt; pub type N182 = NInt; + pub type U183 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P183 = PInt; pub type N183 = NInt; + pub type U184 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P184 = PInt; pub type N184 = NInt; + pub type U185 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P185 = PInt; pub type N185 = NInt; + pub type U186 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P186 = PInt; pub type N186 = NInt; + pub type U187 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P187 = PInt; pub type N187 = NInt; + pub type U188 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P188 = PInt; pub type N188 = NInt; + pub type U189 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P189 = PInt; pub type N189 = NInt; + pub type U190 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P190 = PInt; pub type N190 = NInt; + pub type U191 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P191 = PInt; pub type N191 = NInt; + pub type U192 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P192 = PInt; pub type N192 = NInt; + pub type U193 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P193 = PInt; pub type N193 = NInt; + pub type U194 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P194 = PInt; pub type N194 = NInt; + pub type U195 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P195 = PInt; pub type N195 = NInt; + pub type U196 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P196 = PInt; pub type N196 = NInt; + pub type U197 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P197 = PInt; pub type N197 = NInt; + pub type U198 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P198 = PInt; pub type N198 = NInt; + pub type U199 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P199 = PInt; pub type N199 = NInt; + pub type U200 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P200 = PInt; pub type N200 = NInt; + pub type U201 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P201 = PInt; pub type N201 = NInt; + pub type U202 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P202 = PInt; pub type N202 = NInt; + pub type U203 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P203 = PInt; pub type N203 = NInt; + pub type U204 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P204 = PInt; pub type N204 = NInt; + pub type U205 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P205 = PInt; pub type N205 = NInt; + pub type U206 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P206 = PInt; pub type N206 = NInt; + pub type U207 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P207 = PInt; pub type N207 = NInt; + pub type U208 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P208 = PInt; pub type N208 = NInt; + pub type U209 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P209 = PInt; pub type N209 = NInt; + pub type U210 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P210 = PInt; pub type N210 = NInt; + pub type U211 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P211 = PInt; pub type N211 = NInt; + pub type U212 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P212 = PInt; pub type N212 = NInt; + pub type U213 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P213 = PInt; pub type N213 = NInt; + pub type U214 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P214 = PInt; pub type N214 = NInt; + pub type U215 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P215 = PInt; pub type N215 = NInt; + pub type U216 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P216 = PInt; pub type N216 = NInt; + pub type U217 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P217 = PInt; pub type N217 = NInt; + pub type U218 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P218 = PInt; pub type N218 = NInt; + pub type U219 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P219 = PInt; pub type N219 = NInt; + pub type U220 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P220 = PInt; pub type N220 = NInt; + pub type U221 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P221 = PInt; pub type N221 = NInt; + pub type U222 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P222 = PInt; pub type N222 = NInt; + pub type U223 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P223 = PInt; pub type N223 = NInt; + pub type U224 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P224 = PInt; pub type N224 = NInt; + pub type U225 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P225 = PInt; pub type N225 = NInt; + pub type U226 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P226 = PInt; pub type N226 = NInt; + pub type U227 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P227 = PInt; pub type N227 = NInt; + pub type U228 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P228 = PInt; pub type N228 = NInt; + pub type U229 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P229 = PInt; pub type N229 = NInt; + pub type U230 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P230 = PInt; pub type N230 = NInt; + pub type U231 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P231 = PInt; pub type N231 = NInt; + pub type U232 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P232 = PInt; pub type N232 = NInt; + pub type U233 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P233 = PInt; pub type N233 = NInt; + pub type U234 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P234 = PInt; pub type N234 = NInt; + pub type U235 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P235 = PInt; pub type N235 = NInt; + pub type U236 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P236 = PInt; pub type N236 = NInt; + pub type U237 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P237 = PInt; pub type N237 = NInt; + pub type U238 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P238 = PInt; pub type N238 = NInt; + pub type U239 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P239 = PInt; pub type N239 = NInt; + pub type U240 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P240 = PInt; pub type N240 = NInt; + pub type U241 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P241 = PInt; pub type N241 = NInt; + pub type U242 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P242 = PInt; pub type N242 = NInt; + pub type U243 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P243 = PInt; pub type N243 = NInt; + pub type U244 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P244 = PInt; pub type N244 = NInt; + pub type U245 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P245 = PInt; pub type N245 = NInt; + pub type U246 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P246 = PInt; pub type N246 = NInt; + pub type U247 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P247 = PInt; pub type N247 = NInt; + pub type U248 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P248 = PInt; pub type N248 = NInt; + pub type U249 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P249 = PInt; pub type N249 = NInt; + pub type U250 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P250 = PInt; pub type N250 = NInt; + pub type U251 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P251 = PInt; pub type N251 = NInt; + pub type U252 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P252 = PInt; pub type N252 = NInt; + pub type U253 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P253 = PInt; pub type N253 = NInt; + pub type U254 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P254 = PInt; pub type N254 = NInt; + pub type U255 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P255 = PInt; pub type N255 = NInt; + pub type U256 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P256 = PInt; pub type N256 = NInt; + pub type U257 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P257 = PInt; pub type N257 = NInt; + pub type U258 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P258 = PInt; pub type N258 = NInt; + pub type U259 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P259 = PInt; pub type N259 = NInt; + pub type U260 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P260 = PInt; pub type N260 = NInt; + pub type U261 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P261 = PInt; pub type N261 = NInt; + pub type U262 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P262 = PInt; pub type N262 = NInt; + pub type U263 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P263 = PInt; pub type N263 = NInt; + pub type U264 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P264 = PInt; pub type N264 = NInt; + pub type U265 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P265 = PInt; pub type N265 = NInt; + pub type U266 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P266 = PInt; pub type N266 = NInt; + pub type U267 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P267 = PInt; pub type N267 = NInt; + pub type U268 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P268 = PInt; pub type N268 = NInt; + pub type U269 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P269 = PInt; pub type N269 = NInt; + pub type U270 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P270 = PInt; pub type N270 = NInt; + pub type U271 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P271 = PInt; pub type N271 = NInt; + pub type U272 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P272 = PInt; pub type N272 = NInt; + pub type U273 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P273 = PInt; pub type N273 = NInt; + pub type U274 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P274 = PInt; pub type N274 = NInt; + pub type U275 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P275 = PInt; pub type N275 = NInt; + pub type U276 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P276 = PInt; pub type N276 = NInt; + pub type U277 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P277 = PInt; pub type N277 = NInt; + pub type U278 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P278 = PInt; pub type N278 = NInt; + pub type U279 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P279 = PInt; pub type N279 = NInt; + pub type U280 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P280 = PInt; pub type N280 = NInt; + pub type U281 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P281 = PInt; pub type N281 = NInt; + pub type U282 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P282 = PInt; pub type N282 = NInt; + pub type U283 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P283 = PInt; pub type N283 = NInt; + pub type U284 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P284 = PInt; pub type N284 = NInt; + pub type U285 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P285 = PInt; pub type N285 = NInt; + pub type U286 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P286 = PInt; pub type N286 = NInt; + pub type U287 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P287 = PInt; pub type N287 = NInt; + pub type U288 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P288 = PInt; pub type N288 = NInt; + pub type U289 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P289 = PInt; pub type N289 = NInt; + pub type U290 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P290 = PInt; pub type N290 = NInt; + pub type U291 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P291 = PInt; pub type N291 = NInt; + pub type U292 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P292 = PInt; pub type N292 = NInt; + pub type U293 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P293 = PInt; pub type N293 = NInt; + pub type U294 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P294 = PInt; pub type N294 = NInt; + pub type U295 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P295 = PInt; pub type N295 = NInt; + pub type U296 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P296 = PInt; pub type N296 = NInt; + pub type U297 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P297 = PInt; pub type N297 = NInt; + pub type U298 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P298 = PInt; pub type N298 = NInt; + pub type U299 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P299 = PInt; pub type N299 = NInt; + pub type U300 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P300 = PInt; pub type N300 = NInt; + pub type U301 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P301 = PInt; pub type N301 = NInt; + pub type U302 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P302 = PInt; pub type N302 = NInt; + pub type U303 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P303 = PInt; pub type N303 = NInt; + pub type U304 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P304 = PInt; pub type N304 = NInt; + pub type U305 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P305 = PInt; pub type N305 = NInt; + pub type U306 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P306 = PInt; pub type N306 = NInt; + pub type U307 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P307 = PInt; pub type N307 = NInt; + pub type U308 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P308 = PInt; pub type N308 = NInt; + pub type U309 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P309 = PInt; pub type N309 = NInt; + pub type U310 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P310 = PInt; pub type N310 = NInt; + pub type U311 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P311 = PInt; pub type N311 = NInt; + pub type U312 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P312 = PInt; pub type N312 = NInt; + pub type U313 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P313 = PInt; pub type N313 = NInt; + pub type U314 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P314 = PInt; pub type N314 = NInt; + pub type U315 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P315 = PInt; pub type N315 = NInt; + pub type U316 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P316 = PInt; pub type N316 = NInt; + pub type U317 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P317 = PInt; pub type N317 = NInt; + pub type U318 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P318 = PInt; pub type N318 = NInt; + pub type U319 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P319 = PInt; pub type N319 = NInt; + pub type U320 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P320 = PInt; pub type N320 = NInt; + pub type U321 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P321 = PInt; pub type N321 = NInt; + pub type U322 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P322 = PInt; pub type N322 = NInt; + pub type U323 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P323 = PInt; pub type N323 = NInt; + pub type U324 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P324 = PInt; pub type N324 = NInt; + pub type U325 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P325 = PInt; pub type N325 = NInt; + pub type U326 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P326 = PInt; pub type N326 = NInt; + pub type U327 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P327 = PInt; pub type N327 = NInt; + pub type U328 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P328 = PInt; pub type N328 = NInt; + pub type U329 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P329 = PInt; pub type N329 = NInt; + pub type U330 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P330 = PInt; pub type N330 = NInt; + pub type U331 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P331 = PInt; pub type N331 = NInt; + pub type U332 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P332 = PInt; pub type N332 = NInt; + pub type U333 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P333 = PInt; pub type N333 = NInt; + pub type U334 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P334 = PInt; pub type N334 = NInt; + pub type U335 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P335 = PInt; pub type N335 = NInt; + pub type U336 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P336 = PInt; pub type N336 = NInt; + pub type U337 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P337 = PInt; pub type N337 = NInt; + pub type U338 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P338 = PInt; pub type N338 = NInt; + pub type U339 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P339 = PInt; pub type N339 = NInt; + pub type U340 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P340 = PInt; pub type N340 = NInt; + pub type U341 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P341 = PInt; pub type N341 = NInt; + pub type U342 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P342 = PInt; pub type N342 = NInt; + pub type U343 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P343 = PInt; pub type N343 = NInt; + pub type U344 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P344 = PInt; pub type N344 = NInt; + pub type U345 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P345 = PInt; pub type N345 = NInt; + pub type U346 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P346 = PInt; pub type N346 = NInt; + pub type U347 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P347 = PInt; pub type N347 = NInt; + pub type U348 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P348 = PInt; pub type N348 = NInt; + pub type U349 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P349 = PInt; pub type N349 = NInt; + pub type U350 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P350 = PInt; pub type N350 = NInt; + pub type U351 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P351 = PInt; pub type N351 = NInt; + pub type U352 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P352 = PInt; pub type N352 = NInt; + pub type U353 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P353 = PInt; pub type N353 = NInt; + pub type U354 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P354 = PInt; pub type N354 = NInt; + pub type U355 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P355 = PInt; pub type N355 = NInt; + pub type U356 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P356 = PInt; pub type N356 = NInt; + pub type U357 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P357 = PInt; pub type N357 = NInt; + pub type U358 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P358 = PInt; pub type N358 = NInt; + pub type U359 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P359 = PInt; pub type N359 = NInt; + pub type U360 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P360 = PInt; pub type N360 = NInt; + pub type U361 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P361 = PInt; pub type N361 = NInt; + pub type U362 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P362 = PInt; pub type N362 = NInt; + pub type U363 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P363 = PInt; pub type N363 = NInt; + pub type U364 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P364 = PInt; pub type N364 = NInt; + pub type U365 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P365 = PInt; pub type N365 = NInt; + pub type U366 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P366 = PInt; pub type N366 = NInt; + pub type U367 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P367 = PInt; pub type N367 = NInt; + pub type U368 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P368 = PInt; pub type N368 = NInt; + pub type U369 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P369 = PInt; pub type N369 = NInt; + pub type U370 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P370 = PInt; pub type N370 = NInt; + pub type U371 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P371 = PInt; pub type N371 = NInt; + pub type U372 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P372 = PInt; pub type N372 = NInt; + pub type U373 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P373 = PInt; pub type N373 = NInt; + pub type U374 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P374 = PInt; pub type N374 = NInt; + pub type U375 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P375 = PInt; pub type N375 = NInt; + pub type U376 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P376 = PInt; pub type N376 = NInt; + pub type U377 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P377 = PInt; pub type N377 = NInt; + pub type U378 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P378 = PInt; pub type N378 = NInt; + pub type U379 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P379 = PInt; pub type N379 = NInt; + pub type U380 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P380 = PInt; pub type N380 = NInt; + pub type U381 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P381 = PInt; pub type N381 = NInt; + pub type U382 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P382 = PInt; pub type N382 = NInt; + pub type U383 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P383 = PInt; pub type N383 = NInt; + pub type U384 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P384 = PInt; pub type N384 = NInt; + pub type U385 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P385 = PInt; pub type N385 = NInt; + pub type U386 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P386 = PInt; pub type N386 = NInt; + pub type U387 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P387 = PInt; pub type N387 = NInt; + pub type U388 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P388 = PInt; pub type N388 = NInt; + pub type U389 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P389 = PInt; pub type N389 = NInt; + pub type U390 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P390 = PInt; pub type N390 = NInt; + pub type U391 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P391 = PInt; pub type N391 = NInt; + pub type U392 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P392 = PInt; pub type N392 = NInt; + pub type U393 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P393 = PInt; pub type N393 = NInt; + pub type U394 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P394 = PInt; pub type N394 = NInt; + pub type U395 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P395 = PInt; pub type N395 = NInt; + pub type U396 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P396 = PInt; pub type N396 = NInt; + pub type U397 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P397 = PInt; pub type N397 = NInt; + pub type U398 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P398 = PInt; pub type N398 = NInt; + pub type U399 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P399 = PInt; pub type N399 = NInt; + pub type U400 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P400 = PInt; pub type N400 = NInt; + pub type U401 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P401 = PInt; pub type N401 = NInt; + pub type U402 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P402 = PInt; pub type N402 = NInt; + pub type U403 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P403 = PInt; pub type N403 = NInt; + pub type U404 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P404 = PInt; pub type N404 = NInt; + pub type U405 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P405 = PInt; pub type N405 = NInt; + pub type U406 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P406 = PInt; pub type N406 = NInt; + pub type U407 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P407 = PInt; pub type N407 = NInt; + pub type U408 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P408 = PInt; pub type N408 = NInt; + pub type U409 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P409 = PInt; pub type N409 = NInt; + pub type U410 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P410 = PInt; pub type N410 = NInt; + pub type U411 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P411 = PInt; pub type N411 = NInt; + pub type U412 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P412 = PInt; pub type N412 = NInt; + pub type U413 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P413 = PInt; pub type N413 = NInt; + pub type U414 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P414 = PInt; pub type N414 = NInt; + pub type U415 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P415 = PInt; pub type N415 = NInt; + pub type U416 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P416 = PInt; pub type N416 = NInt; + pub type U417 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P417 = PInt; pub type N417 = NInt; + pub type U418 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P418 = PInt; pub type N418 = NInt; + pub type U419 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P419 = PInt; pub type N419 = NInt; + pub type U420 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P420 = PInt; pub type N420 = NInt; + pub type U421 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P421 = PInt; pub type N421 = NInt; + pub type U422 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P422 = PInt; pub type N422 = NInt; + pub type U423 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P423 = PInt; pub type N423 = NInt; + pub type U424 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P424 = PInt; pub type N424 = NInt; + pub type U425 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P425 = PInt; pub type N425 = NInt; + pub type U426 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P426 = PInt; pub type N426 = NInt; + pub type U427 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P427 = PInt; pub type N427 = NInt; + pub type U428 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P428 = PInt; pub type N428 = NInt; + pub type U429 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P429 = PInt; pub type N429 = NInt; + pub type U430 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P430 = PInt; pub type N430 = NInt; + pub type U431 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P431 = PInt; pub type N431 = NInt; + pub type U432 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P432 = PInt; pub type N432 = NInt; + pub type U433 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P433 = PInt; pub type N433 = NInt; + pub type U434 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P434 = PInt; pub type N434 = NInt; + pub type U435 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P435 = PInt; pub type N435 = NInt; + pub type U436 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P436 = PInt; pub type N436 = NInt; + pub type U437 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P437 = PInt; pub type N437 = NInt; + pub type U438 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P438 = PInt; pub type N438 = NInt; + pub type U439 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P439 = PInt; pub type N439 = NInt; + pub type U440 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P440 = PInt; pub type N440 = NInt; + pub type U441 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P441 = PInt; pub type N441 = NInt; + pub type U442 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P442 = PInt; pub type N442 = NInt; + pub type U443 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P443 = PInt; pub type N443 = NInt; + pub type U444 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P444 = PInt; pub type N444 = NInt; + pub type U445 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P445 = PInt; pub type N445 = NInt; + pub type U446 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P446 = PInt; pub type N446 = NInt; + pub type U447 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P447 = PInt; pub type N447 = NInt; + pub type U448 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P448 = PInt; pub type N448 = NInt; + pub type U449 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P449 = PInt; pub type N449 = NInt; + pub type U450 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P450 = PInt; pub type N450 = NInt; + pub type U451 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P451 = PInt; pub type N451 = NInt; + pub type U452 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P452 = PInt; pub type N452 = NInt; + pub type U453 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P453 = PInt; pub type N453 = NInt; + pub type U454 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P454 = PInt; pub type N454 = NInt; + pub type U455 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P455 = PInt; pub type N455 = NInt; + pub type U456 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P456 = PInt; pub type N456 = NInt; + pub type U457 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P457 = PInt; pub type N457 = NInt; + pub type U458 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P458 = PInt; pub type N458 = NInt; + pub type U459 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P459 = PInt; pub type N459 = NInt; + pub type U460 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P460 = PInt; pub type N460 = NInt; + pub type U461 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P461 = PInt; pub type N461 = NInt; + pub type U462 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P462 = PInt; pub type N462 = NInt; + pub type U463 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P463 = PInt; pub type N463 = NInt; + pub type U464 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P464 = PInt; pub type N464 = NInt; + pub type U465 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P465 = PInt; pub type N465 = NInt; + pub type U466 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P466 = PInt; pub type N466 = NInt; + pub type U467 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P467 = PInt; pub type N467 = NInt; + pub type U468 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P468 = PInt; pub type N468 = NInt; + pub type U469 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P469 = PInt; pub type N469 = NInt; + pub type U470 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P470 = PInt; pub type N470 = NInt; + pub type U471 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P471 = PInt; pub type N471 = NInt; + pub type U472 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P472 = PInt; pub type N472 = NInt; + pub type U473 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P473 = PInt; pub type N473 = NInt; + pub type U474 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P474 = PInt; pub type N474 = NInt; + pub type U475 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P475 = PInt; pub type N475 = NInt; + pub type U476 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P476 = PInt; pub type N476 = NInt; + pub type U477 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P477 = PInt; pub type N477 = NInt; + pub type U478 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P478 = PInt; pub type N478 = NInt; + pub type U479 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P479 = PInt; pub type N479 = NInt; + pub type U480 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P480 = PInt; pub type N480 = NInt; + pub type U481 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P481 = PInt; pub type N481 = NInt; + pub type U482 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P482 = PInt; pub type N482 = NInt; + pub type U483 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P483 = PInt; pub type N483 = NInt; + pub type U484 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P484 = PInt; pub type N484 = NInt; + pub type U485 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P485 = PInt; pub type N485 = NInt; + pub type U486 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P486 = PInt; pub type N486 = NInt; + pub type U487 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P487 = PInt; pub type N487 = NInt; + pub type U488 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P488 = PInt; pub type N488 = NInt; + pub type U489 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P489 = PInt; pub type N489 = NInt; + pub type U490 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P490 = PInt; pub type N490 = NInt; + pub type U491 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P491 = PInt; pub type N491 = NInt; + pub type U492 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P492 = PInt; pub type N492 = NInt; + pub type U493 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P493 = PInt; pub type N493 = NInt; + pub type U494 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P494 = PInt; pub type N494 = NInt; + pub type U495 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P495 = PInt; pub type N495 = NInt; + pub type U496 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P496 = PInt; pub type N496 = NInt; + pub type U497 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P497 = PInt; pub type N497 = NInt; + pub type U498 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P498 = PInt; pub type N498 = NInt; + pub type U499 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P499 = PInt; pub type N499 = NInt; + pub type U500 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P500 = PInt; pub type N500 = NInt; + pub type U501 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P501 = PInt; pub type N501 = NInt; + pub type U502 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P502 = PInt; pub type N502 = NInt; + pub type U503 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P503 = PInt; pub type N503 = NInt; + pub type U504 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P504 = PInt; pub type N504 = NInt; + pub type U505 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P505 = PInt; pub type N505 = NInt; + pub type U506 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P506 = PInt; pub type N506 = NInt; + pub type U507 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P507 = PInt; pub type N507 = NInt; + pub type U508 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P508 = PInt; pub type N508 = NInt; + pub type U509 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P509 = PInt; pub type N509 = NInt; + pub type U510 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P510 = PInt; pub type N510 = NInt; + pub type U511 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P511 = PInt; pub type N511 = NInt; + pub type U512 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P512 = PInt; pub type N512 = NInt; + pub type U513 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P513 = PInt; pub type N513 = NInt; + pub type U514 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P514 = PInt; pub type N514 = NInt; + pub type U515 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P515 = PInt; pub type N515 = NInt; + pub type U516 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P516 = PInt; pub type N516 = NInt; + pub type U517 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P517 = PInt; pub type N517 = NInt; + pub type U518 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P518 = PInt; pub type N518 = NInt; + pub type U519 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P519 = PInt; pub type N519 = NInt; + pub type U520 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P520 = PInt; pub type N520 = NInt; + pub type U521 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P521 = PInt; pub type N521 = NInt; + pub type U522 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P522 = PInt; pub type N522 = NInt; + pub type U523 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P523 = PInt; pub type N523 = NInt; + pub type U524 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P524 = PInt; pub type N524 = NInt; + pub type U525 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P525 = PInt; pub type N525 = NInt; + pub type U526 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P526 = PInt; pub type N526 = NInt; + pub type U527 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P527 = PInt; pub type N527 = NInt; + pub type U528 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P528 = PInt; pub type N528 = NInt; + pub type U529 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P529 = PInt; pub type N529 = NInt; + pub type U530 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P530 = PInt; pub type N530 = NInt; + pub type U531 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P531 = PInt; pub type N531 = NInt; + pub type U532 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P532 = PInt; pub type N532 = NInt; + pub type U533 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P533 = PInt; pub type N533 = NInt; + pub type U534 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P534 = PInt; pub type N534 = NInt; + pub type U535 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P535 = PInt; pub type N535 = NInt; + pub type U536 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P536 = PInt; pub type N536 = NInt; + pub type U537 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P537 = PInt; pub type N537 = NInt; + pub type U538 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P538 = PInt; pub type N538 = NInt; + pub type U539 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P539 = PInt; pub type N539 = NInt; + pub type U540 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P540 = PInt; pub type N540 = NInt; + pub type U541 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P541 = PInt; pub type N541 = NInt; + pub type U542 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P542 = PInt; pub type N542 = NInt; + pub type U543 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P543 = PInt; pub type N543 = NInt; + pub type U544 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P544 = PInt; pub type N544 = NInt; + pub type U545 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P545 = PInt; pub type N545 = NInt; + pub type U546 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P546 = PInt; pub type N546 = NInt; + pub type U547 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P547 = PInt; pub type N547 = NInt; + pub type U548 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P548 = PInt; pub type N548 = NInt; + pub type U549 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P549 = PInt; pub type N549 = NInt; + pub type U550 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P550 = PInt; pub type N550 = NInt; + pub type U551 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P551 = PInt; pub type N551 = NInt; + pub type U552 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P552 = PInt; pub type N552 = NInt; + pub type U553 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P553 = PInt; pub type N553 = NInt; + pub type U554 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P554 = PInt; pub type N554 = NInt; + pub type U555 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P555 = PInt; pub type N555 = NInt; + pub type U556 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P556 = PInt; pub type N556 = NInt; + pub type U557 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P557 = PInt; pub type N557 = NInt; + pub type U558 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P558 = PInt; pub type N558 = NInt; + pub type U559 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P559 = PInt; pub type N559 = NInt; + pub type U560 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P560 = PInt; pub type N560 = NInt; + pub type U561 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P561 = PInt; pub type N561 = NInt; + pub type U562 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P562 = PInt; pub type N562 = NInt; + pub type U563 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P563 = PInt; pub type N563 = NInt; + pub type U564 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P564 = PInt; pub type N564 = NInt; + pub type U565 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P565 = PInt; pub type N565 = NInt; + pub type U566 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P566 = PInt; pub type N566 = NInt; + pub type U567 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P567 = PInt; pub type N567 = NInt; + pub type U568 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P568 = PInt; pub type N568 = NInt; + pub type U569 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P569 = PInt; pub type N569 = NInt; + pub type U570 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P570 = PInt; pub type N570 = NInt; + pub type U571 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P571 = PInt; pub type N571 = NInt; + pub type U572 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P572 = PInt; pub type N572 = NInt; + pub type U573 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P573 = PInt; pub type N573 = NInt; + pub type U574 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P574 = PInt; pub type N574 = NInt; + pub type U575 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P575 = PInt; pub type N575 = NInt; + pub type U576 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P576 = PInt; pub type N576 = NInt; + pub type U577 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P577 = PInt; pub type N577 = NInt; + pub type U578 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P578 = PInt; pub type N578 = NInt; + pub type U579 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P579 = PInt; pub type N579 = NInt; + pub type U580 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P580 = PInt; pub type N580 = NInt; + pub type U581 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P581 = PInt; pub type N581 = NInt; + pub type U582 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P582 = PInt; pub type N582 = NInt; + pub type U583 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P583 = PInt; pub type N583 = NInt; + pub type U584 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P584 = PInt; pub type N584 = NInt; + pub type U585 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P585 = PInt; pub type N585 = NInt; + pub type U586 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P586 = PInt; pub type N586 = NInt; + pub type U587 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P587 = PInt; pub type N587 = NInt; + pub type U588 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P588 = PInt; pub type N588 = NInt; + pub type U589 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P589 = PInt; pub type N589 = NInt; + pub type U590 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P590 = PInt; pub type N590 = NInt; + pub type U591 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P591 = PInt; pub type N591 = NInt; + pub type U592 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P592 = PInt; pub type N592 = NInt; + pub type U593 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P593 = PInt; pub type N593 = NInt; + pub type U594 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P594 = PInt; pub type N594 = NInt; + pub type U595 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P595 = PInt; pub type N595 = NInt; + pub type U596 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P596 = PInt; pub type N596 = NInt; + pub type U597 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P597 = PInt; pub type N597 = NInt; + pub type U598 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P598 = PInt; pub type N598 = NInt; + pub type U599 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P599 = PInt; pub type N599 = NInt; + pub type U600 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P600 = PInt; pub type N600 = NInt; + pub type U601 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P601 = PInt; pub type N601 = NInt; + pub type U602 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P602 = PInt; pub type N602 = NInt; + pub type U603 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P603 = PInt; pub type N603 = NInt; + pub type U604 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P604 = PInt; pub type N604 = NInt; + pub type U605 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P605 = PInt; pub type N605 = NInt; + pub type U606 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P606 = PInt; pub type N606 = NInt; + pub type U607 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P607 = PInt; pub type N607 = NInt; + pub type U608 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P608 = PInt; pub type N608 = NInt; + pub type U609 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P609 = PInt; pub type N609 = NInt; + pub type U610 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P610 = PInt; pub type N610 = NInt; + pub type U611 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P611 = PInt; pub type N611 = NInt; + pub type U612 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P612 = PInt; pub type N612 = NInt; + pub type U613 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P613 = PInt; pub type N613 = NInt; + pub type U614 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P614 = PInt; pub type N614 = NInt; + pub type U615 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P615 = PInt; pub type N615 = NInt; + pub type U616 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P616 = PInt; pub type N616 = NInt; + pub type U617 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P617 = PInt; pub type N617 = NInt; + pub type U618 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P618 = PInt; pub type N618 = NInt; + pub type U619 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P619 = PInt; pub type N619 = NInt; + pub type U620 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P620 = PInt; pub type N620 = NInt; + pub type U621 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P621 = PInt; pub type N621 = NInt; + pub type U622 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P622 = PInt; pub type N622 = NInt; + pub type U623 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P623 = PInt; pub type N623 = NInt; + pub type U624 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P624 = PInt; pub type N624 = NInt; + pub type U625 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P625 = PInt; pub type N625 = NInt; + pub type U626 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P626 = PInt; pub type N626 = NInt; + pub type U627 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P627 = PInt; pub type N627 = NInt; + pub type U628 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P628 = PInt; pub type N628 = NInt; + pub type U629 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P629 = PInt; pub type N629 = NInt; + pub type U630 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P630 = PInt; pub type N630 = NInt; + pub type U631 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P631 = PInt; pub type N631 = NInt; + pub type U632 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P632 = PInt; pub type N632 = NInt; + pub type U633 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P633 = PInt; pub type N633 = NInt; + pub type U634 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P634 = PInt; pub type N634 = NInt; + pub type U635 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P635 = PInt; pub type N635 = NInt; + pub type U636 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P636 = PInt; pub type N636 = NInt; + pub type U637 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P637 = PInt; pub type N637 = NInt; + pub type U638 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P638 = PInt; pub type N638 = NInt; + pub type U639 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P639 = PInt; pub type N639 = NInt; + pub type U640 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P640 = PInt; pub type N640 = NInt; + pub type U641 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P641 = PInt; pub type N641 = NInt; + pub type U642 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P642 = PInt; pub type N642 = NInt; + pub type U643 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P643 = PInt; pub type N643 = NInt; + pub type U644 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P644 = PInt; pub type N644 = NInt; + pub type U645 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P645 = PInt; pub type N645 = NInt; + pub type U646 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P646 = PInt; pub type N646 = NInt; + pub type U647 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P647 = PInt; pub type N647 = NInt; + pub type U648 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P648 = PInt; pub type N648 = NInt; + pub type U649 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P649 = PInt; pub type N649 = NInt; + pub type U650 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P650 = PInt; pub type N650 = NInt; + pub type U651 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P651 = PInt; pub type N651 = NInt; + pub type U652 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P652 = PInt; pub type N652 = NInt; + pub type U653 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P653 = PInt; pub type N653 = NInt; + pub type U654 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P654 = PInt; pub type N654 = NInt; + pub type U655 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P655 = PInt; pub type N655 = NInt; + pub type U656 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P656 = PInt; pub type N656 = NInt; + pub type U657 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P657 = PInt; pub type N657 = NInt; + pub type U658 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P658 = PInt; pub type N658 = NInt; + pub type U659 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P659 = PInt; pub type N659 = NInt; + pub type U660 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P660 = PInt; pub type N660 = NInt; + pub type U661 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P661 = PInt; pub type N661 = NInt; + pub type U662 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P662 = PInt; pub type N662 = NInt; + pub type U663 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P663 = PInt; pub type N663 = NInt; + pub type U664 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P664 = PInt; pub type N664 = NInt; + pub type U665 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P665 = PInt; pub type N665 = NInt; + pub type U666 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P666 = PInt; pub type N666 = NInt; + pub type U667 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P667 = PInt; pub type N667 = NInt; + pub type U668 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P668 = PInt; pub type N668 = NInt; + pub type U669 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P669 = PInt; pub type N669 = NInt; + pub type U670 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P670 = PInt; pub type N670 = NInt; + pub type U671 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P671 = PInt; pub type N671 = NInt; + pub type U672 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P672 = PInt; pub type N672 = NInt; + pub type U673 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P673 = PInt; pub type N673 = NInt; + pub type U674 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P674 = PInt; pub type N674 = NInt; + pub type U675 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P675 = PInt; pub type N675 = NInt; + pub type U676 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P676 = PInt; pub type N676 = NInt; + pub type U677 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P677 = PInt; pub type N677 = NInt; + pub type U678 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P678 = PInt; pub type N678 = NInt; + pub type U679 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P679 = PInt; pub type N679 = NInt; + pub type U680 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P680 = PInt; pub type N680 = NInt; + pub type U681 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P681 = PInt; pub type N681 = NInt; + pub type U682 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P682 = PInt; pub type N682 = NInt; + pub type U683 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P683 = PInt; pub type N683 = NInt; + pub type U684 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P684 = PInt; pub type N684 = NInt; + pub type U685 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P685 = PInt; pub type N685 = NInt; + pub type U686 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P686 = PInt; pub type N686 = NInt; + pub type U687 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P687 = PInt; pub type N687 = NInt; + pub type U688 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P688 = PInt; pub type N688 = NInt; + pub type U689 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P689 = PInt; pub type N689 = NInt; + pub type U690 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P690 = PInt; pub type N690 = NInt; + pub type U691 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P691 = PInt; pub type N691 = NInt; + pub type U692 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P692 = PInt; pub type N692 = NInt; + pub type U693 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P693 = PInt; pub type N693 = NInt; + pub type U694 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P694 = PInt; pub type N694 = NInt; + pub type U695 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P695 = PInt; pub type N695 = NInt; + pub type U696 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P696 = PInt; pub type N696 = NInt; + pub type U697 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P697 = PInt; pub type N697 = NInt; + pub type U698 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P698 = PInt; pub type N698 = NInt; + pub type U699 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P699 = PInt; pub type N699 = NInt; + pub type U700 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P700 = PInt; pub type N700 = NInt; + pub type U701 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P701 = PInt; pub type N701 = NInt; + pub type U702 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P702 = PInt; pub type N702 = NInt; + pub type U703 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P703 = PInt; pub type N703 = NInt; + pub type U704 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P704 = PInt; pub type N704 = NInt; + pub type U705 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P705 = PInt; pub type N705 = NInt; + pub type U706 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P706 = PInt; pub type N706 = NInt; + pub type U707 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P707 = PInt; pub type N707 = NInt; + pub type U708 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P708 = PInt; pub type N708 = NInt; + pub type U709 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P709 = PInt; pub type N709 = NInt; + pub type U710 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P710 = PInt; pub type N710 = NInt; + pub type U711 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P711 = PInt; pub type N711 = NInt; + pub type U712 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P712 = PInt; pub type N712 = NInt; + pub type U713 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P713 = PInt; pub type N713 = NInt; + pub type U714 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P714 = PInt; pub type N714 = NInt; + pub type U715 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P715 = PInt; pub type N715 = NInt; + pub type U716 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P716 = PInt; pub type N716 = NInt; + pub type U717 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P717 = PInt; pub type N717 = NInt; + pub type U718 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P718 = PInt; pub type N718 = NInt; + pub type U719 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P719 = PInt; pub type N719 = NInt; + pub type U720 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P720 = PInt; pub type N720 = NInt; + pub type U721 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P721 = PInt; pub type N721 = NInt; + pub type U722 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P722 = PInt; pub type N722 = NInt; + pub type U723 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P723 = PInt; pub type N723 = NInt; + pub type U724 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P724 = PInt; pub type N724 = NInt; + pub type U725 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P725 = PInt; pub type N725 = NInt; + pub type U726 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P726 = PInt; pub type N726 = NInt; + pub type U727 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P727 = PInt; pub type N727 = NInt; + pub type U728 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P728 = PInt; pub type N728 = NInt; + pub type U729 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P729 = PInt; pub type N729 = NInt; + pub type U730 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P730 = PInt; pub type N730 = NInt; + pub type U731 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P731 = PInt; pub type N731 = NInt; + pub type U732 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P732 = PInt; pub type N732 = NInt; + pub type U733 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P733 = PInt; pub type N733 = NInt; + pub type U734 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P734 = PInt; pub type N734 = NInt; + pub type U735 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P735 = PInt; pub type N735 = NInt; + pub type U736 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P736 = PInt; pub type N736 = NInt; + pub type U737 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P737 = PInt; pub type N737 = NInt; + pub type U738 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P738 = PInt; pub type N738 = NInt; + pub type U739 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P739 = PInt; pub type N739 = NInt; + pub type U740 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P740 = PInt; pub type N740 = NInt; + pub type U741 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P741 = PInt; pub type N741 = NInt; + pub type U742 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P742 = PInt; pub type N742 = NInt; + pub type U743 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P743 = PInt; pub type N743 = NInt; + pub type U744 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P744 = PInt; pub type N744 = NInt; + pub type U745 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P745 = PInt; pub type N745 = NInt; + pub type U746 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P746 = PInt; pub type N746 = NInt; + pub type U747 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P747 = PInt; pub type N747 = NInt; + pub type U748 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P748 = PInt; pub type N748 = NInt; + pub type U749 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P749 = PInt; pub type N749 = NInt; + pub type U750 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P750 = PInt; pub type N750 = NInt; + pub type U751 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P751 = PInt; pub type N751 = NInt; + pub type U752 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P752 = PInt; pub type N752 = NInt; + pub type U753 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P753 = PInt; pub type N753 = NInt; + pub type U754 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P754 = PInt; pub type N754 = NInt; + pub type U755 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P755 = PInt; pub type N755 = NInt; + pub type U756 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P756 = PInt; pub type N756 = NInt; + pub type U757 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P757 = PInt; pub type N757 = NInt; + pub type U758 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P758 = PInt; pub type N758 = NInt; + pub type U759 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P759 = PInt; pub type N759 = NInt; + pub type U760 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P760 = PInt; pub type N760 = NInt; + pub type U761 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P761 = PInt; pub type N761 = NInt; + pub type U762 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P762 = PInt; pub type N762 = NInt; + pub type U763 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P763 = PInt; pub type N763 = NInt; + pub type U764 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P764 = PInt; pub type N764 = NInt; + pub type U765 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P765 = PInt; pub type N765 = NInt; + pub type U766 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P766 = PInt; pub type N766 = NInt; + pub type U767 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P767 = PInt; pub type N767 = NInt; + pub type U768 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P768 = PInt; pub type N768 = NInt; + pub type U769 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P769 = PInt; pub type N769 = NInt; + pub type U770 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P770 = PInt; pub type N770 = NInt; + pub type U771 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P771 = PInt; pub type N771 = NInt; + pub type U772 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P772 = PInt; pub type N772 = NInt; + pub type U773 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P773 = PInt; pub type N773 = NInt; + pub type U774 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P774 = PInt; pub type N774 = NInt; + pub type U775 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P775 = PInt; pub type N775 = NInt; + pub type U776 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P776 = PInt; pub type N776 = NInt; + pub type U777 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P777 = PInt; pub type N777 = NInt; + pub type U778 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P778 = PInt; pub type N778 = NInt; + pub type U779 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P779 = PInt; pub type N779 = NInt; + pub type U780 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P780 = PInt; pub type N780 = NInt; + pub type U781 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P781 = PInt; pub type N781 = NInt; + pub type U782 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P782 = PInt; pub type N782 = NInt; + pub type U783 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P783 = PInt; pub type N783 = NInt; + pub type U784 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P784 = PInt; pub type N784 = NInt; + pub type U785 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P785 = PInt; pub type N785 = NInt; + pub type U786 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P786 = PInt; pub type N786 = NInt; + pub type U787 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P787 = PInt; pub type N787 = NInt; + pub type U788 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P788 = PInt; pub type N788 = NInt; + pub type U789 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P789 = PInt; pub type N789 = NInt; + pub type U790 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P790 = PInt; pub type N790 = NInt; + pub type U791 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P791 = PInt; pub type N791 = NInt; + pub type U792 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P792 = PInt; pub type N792 = NInt; + pub type U793 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P793 = PInt; pub type N793 = NInt; + pub type U794 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P794 = PInt; pub type N794 = NInt; + pub type U795 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P795 = PInt; pub type N795 = NInt; + pub type U796 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P796 = PInt; pub type N796 = NInt; + pub type U797 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P797 = PInt; pub type N797 = NInt; + pub type U798 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P798 = PInt; pub type N798 = NInt; + pub type U799 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P799 = PInt; pub type N799 = NInt; + pub type U800 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P800 = PInt; pub type N800 = NInt; + pub type U801 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P801 = PInt; pub type N801 = NInt; + pub type U802 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P802 = PInt; pub type N802 = NInt; + pub type U803 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P803 = PInt; pub type N803 = NInt; + pub type U804 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P804 = PInt; pub type N804 = NInt; + pub type U805 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P805 = PInt; pub type N805 = NInt; + pub type U806 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P806 = PInt; pub type N806 = NInt; + pub type U807 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P807 = PInt; pub type N807 = NInt; + pub type U808 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P808 = PInt; pub type N808 = NInt; + pub type U809 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P809 = PInt; pub type N809 = NInt; + pub type U810 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P810 = PInt; pub type N810 = NInt; + pub type U811 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P811 = PInt; pub type N811 = NInt; + pub type U812 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P812 = PInt; pub type N812 = NInt; + pub type U813 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P813 = PInt; pub type N813 = NInt; + pub type U814 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P814 = PInt; pub type N814 = NInt; + pub type U815 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P815 = PInt; pub type N815 = NInt; + pub type U816 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P816 = PInt; pub type N816 = NInt; + pub type U817 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P817 = PInt; pub type N817 = NInt; + pub type U818 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P818 = PInt; pub type N818 = NInt; + pub type U819 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P819 = PInt; pub type N819 = NInt; + pub type U820 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P820 = PInt; pub type N820 = NInt; + pub type U821 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P821 = PInt; pub type N821 = NInt; + pub type U822 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P822 = PInt; pub type N822 = NInt; + pub type U823 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P823 = PInt; pub type N823 = NInt; + pub type U824 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P824 = PInt; pub type N824 = NInt; + pub type U825 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P825 = PInt; pub type N825 = NInt; + pub type U826 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P826 = PInt; pub type N826 = NInt; + pub type U827 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P827 = PInt; pub type N827 = NInt; + pub type U828 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P828 = PInt; pub type N828 = NInt; + pub type U829 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P829 = PInt; pub type N829 = NInt; + pub type U830 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P830 = PInt; pub type N830 = NInt; + pub type U831 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P831 = PInt; pub type N831 = NInt; + pub type U832 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P832 = PInt; pub type N832 = NInt; + pub type U833 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P833 = PInt; pub type N833 = NInt; + pub type U834 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P834 = PInt; pub type N834 = NInt; + pub type U835 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P835 = PInt; pub type N835 = NInt; + pub type U836 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P836 = PInt; pub type N836 = NInt; + pub type U837 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P837 = PInt; pub type N837 = NInt; + pub type U838 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P838 = PInt; pub type N838 = NInt; + pub type U839 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P839 = PInt; pub type N839 = NInt; + pub type U840 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P840 = PInt; pub type N840 = NInt; + pub type U841 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P841 = PInt; pub type N841 = NInt; + pub type U842 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P842 = PInt; pub type N842 = NInt; + pub type U843 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P843 = PInt; pub type N843 = NInt; + pub type U844 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P844 = PInt; pub type N844 = NInt; + pub type U845 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P845 = PInt; pub type N845 = NInt; + pub type U846 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P846 = PInt; pub type N846 = NInt; + pub type U847 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P847 = PInt; pub type N847 = NInt; + pub type U848 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P848 = PInt; pub type N848 = NInt; + pub type U849 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P849 = PInt; pub type N849 = NInt; + pub type U850 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P850 = PInt; pub type N850 = NInt; + pub type U851 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P851 = PInt; pub type N851 = NInt; + pub type U852 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P852 = PInt; pub type N852 = NInt; + pub type U853 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P853 = PInt; pub type N853 = NInt; + pub type U854 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P854 = PInt; pub type N854 = NInt; + pub type U855 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P855 = PInt; pub type N855 = NInt; + pub type U856 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P856 = PInt; pub type N856 = NInt; + pub type U857 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P857 = PInt; pub type N857 = NInt; + pub type U858 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P858 = PInt; pub type N858 = NInt; + pub type U859 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P859 = PInt; pub type N859 = NInt; + pub type U860 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P860 = PInt; pub type N860 = NInt; + pub type U861 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P861 = PInt; pub type N861 = NInt; + pub type U862 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P862 = PInt; pub type N862 = NInt; + pub type U863 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P863 = PInt; pub type N863 = NInt; + pub type U864 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P864 = PInt; pub type N864 = NInt; + pub type U865 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P865 = PInt; pub type N865 = NInt; + pub type U866 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P866 = PInt; pub type N866 = NInt; + pub type U867 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P867 = PInt; pub type N867 = NInt; + pub type U868 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P868 = PInt; pub type N868 = NInt; + pub type U869 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P869 = PInt; pub type N869 = NInt; + pub type U870 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P870 = PInt; pub type N870 = NInt; + pub type U871 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P871 = PInt; pub type N871 = NInt; + pub type U872 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P872 = PInt; pub type N872 = NInt; + pub type U873 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P873 = PInt; pub type N873 = NInt; + pub type U874 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P874 = PInt; pub type N874 = NInt; + pub type U875 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P875 = PInt; pub type N875 = NInt; + pub type U876 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P876 = PInt; pub type N876 = NInt; + pub type U877 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P877 = PInt; pub type N877 = NInt; + pub type U878 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P878 = PInt; pub type N878 = NInt; + pub type U879 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P879 = PInt; pub type N879 = NInt; + pub type U880 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P880 = PInt; pub type N880 = NInt; + pub type U881 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P881 = PInt; pub type N881 = NInt; + pub type U882 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P882 = PInt; pub type N882 = NInt; + pub type U883 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P883 = PInt; pub type N883 = NInt; + pub type U884 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P884 = PInt; pub type N884 = NInt; + pub type U885 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P885 = PInt; pub type N885 = NInt; + pub type U886 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P886 = PInt; pub type N886 = NInt; + pub type U887 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P887 = PInt; pub type N887 = NInt; + pub type U888 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P888 = PInt; pub type N888 = NInt; + pub type U889 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P889 = PInt; pub type N889 = NInt; + pub type U890 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P890 = PInt; pub type N890 = NInt; + pub type U891 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P891 = PInt; pub type N891 = NInt; + pub type U892 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P892 = PInt; pub type N892 = NInt; + pub type U893 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P893 = PInt; pub type N893 = NInt; + pub type U894 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P894 = PInt; pub type N894 = NInt; + pub type U895 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P895 = PInt; pub type N895 = NInt; + pub type U896 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P896 = PInt; pub type N896 = NInt; + pub type U897 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P897 = PInt; pub type N897 = NInt; + pub type U898 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P898 = PInt; pub type N898 = NInt; + pub type U899 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P899 = PInt; pub type N899 = NInt; + pub type U900 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P900 = PInt; pub type N900 = NInt; + pub type U901 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P901 = PInt; pub type N901 = NInt; + pub type U902 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P902 = PInt; pub type N902 = NInt; + pub type U903 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P903 = PInt; pub type N903 = NInt; + pub type U904 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P904 = PInt; pub type N904 = NInt; + pub type U905 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P905 = PInt; pub type N905 = NInt; + pub type U906 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P906 = PInt; pub type N906 = NInt; + pub type U907 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P907 = PInt; pub type N907 = NInt; + pub type U908 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P908 = PInt; pub type N908 = NInt; + pub type U909 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P909 = PInt; pub type N909 = NInt; + pub type U910 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P910 = PInt; pub type N910 = NInt; + pub type U911 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P911 = PInt; pub type N911 = NInt; + pub type U912 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P912 = PInt; pub type N912 = NInt; + pub type U913 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P913 = PInt; pub type N913 = NInt; + pub type U914 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P914 = PInt; pub type N914 = NInt; + pub type U915 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P915 = PInt; pub type N915 = NInt; + pub type U916 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P916 = PInt; pub type N916 = NInt; + pub type U917 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P917 = PInt; pub type N917 = NInt; + pub type U918 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P918 = PInt; pub type N918 = NInt; + pub type U919 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P919 = PInt; pub type N919 = NInt; + pub type U920 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P920 = PInt; pub type N920 = NInt; + pub type U921 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P921 = PInt; pub type N921 = NInt; + pub type U922 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P922 = PInt; pub type N922 = NInt; + pub type U923 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P923 = PInt; pub type N923 = NInt; + pub type U924 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P924 = PInt; pub type N924 = NInt; + pub type U925 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P925 = PInt; pub type N925 = NInt; + pub type U926 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P926 = PInt; pub type N926 = NInt; + pub type U927 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P927 = PInt; pub type N927 = NInt; + pub type U928 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P928 = PInt; pub type N928 = NInt; + pub type U929 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P929 = PInt; pub type N929 = NInt; + pub type U930 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P930 = PInt; pub type N930 = NInt; + pub type U931 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P931 = PInt; pub type N931 = NInt; + pub type U932 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P932 = PInt; pub type N932 = NInt; + pub type U933 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P933 = PInt; pub type N933 = NInt; + pub type U934 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P934 = PInt; pub type N934 = NInt; + pub type U935 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P935 = PInt; pub type N935 = NInt; + pub type U936 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P936 = PInt; pub type N936 = NInt; + pub type U937 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P937 = PInt; pub type N937 = NInt; + pub type U938 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P938 = PInt; pub type N938 = NInt; + pub type U939 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P939 = PInt; pub type N939 = NInt; + pub type U940 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P940 = PInt; pub type N940 = NInt; + pub type U941 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P941 = PInt; pub type N941 = NInt; + pub type U942 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P942 = PInt; pub type N942 = NInt; + pub type U943 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P943 = PInt; pub type N943 = NInt; + pub type U944 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P944 = PInt; pub type N944 = NInt; + pub type U945 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P945 = PInt; pub type N945 = NInt; + pub type U946 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P946 = PInt; pub type N946 = NInt; + pub type U947 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P947 = PInt; pub type N947 = NInt; + pub type U948 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P948 = PInt; pub type N948 = NInt; + pub type U949 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P949 = PInt; pub type N949 = NInt; + pub type U950 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P950 = PInt; pub type N950 = NInt; + pub type U951 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P951 = PInt; pub type N951 = NInt; + pub type U952 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P952 = PInt; pub type N952 = NInt; + pub type U953 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P953 = PInt; pub type N953 = NInt; + pub type U954 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P954 = PInt; pub type N954 = NInt; + pub type U955 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P955 = PInt; pub type N955 = NInt; + pub type U956 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P956 = PInt; pub type N956 = NInt; + pub type U957 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P957 = PInt; pub type N957 = NInt; + pub type U958 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P958 = PInt; pub type N958 = NInt; + pub type U959 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P959 = PInt; pub type N959 = NInt; + pub type U960 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P960 = PInt; pub type N960 = NInt; + pub type U961 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P961 = PInt; pub type N961 = NInt; + pub type U962 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P962 = PInt; pub type N962 = NInt; + pub type U963 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P963 = PInt; pub type N963 = NInt; + pub type U964 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P964 = PInt; pub type N964 = NInt; + pub type U965 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P965 = PInt; pub type N965 = NInt; + pub type U966 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P966 = PInt; pub type N966 = NInt; + pub type U967 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P967 = PInt; pub type N967 = NInt; + pub type U968 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P968 = PInt; pub type N968 = NInt; + pub type U969 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P969 = PInt; pub type N969 = NInt; + pub type U970 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P970 = PInt; pub type N970 = NInt; + pub type U971 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P971 = PInt; pub type N971 = NInt; + pub type U972 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P972 = PInt; pub type N972 = NInt; + pub type U973 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P973 = PInt; pub type N973 = NInt; + pub type U974 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P974 = PInt; pub type N974 = NInt; + pub type U975 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P975 = PInt; pub type N975 = NInt; + pub type U976 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P976 = PInt; pub type N976 = NInt; + pub type U977 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P977 = PInt; pub type N977 = NInt; + pub type U978 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P978 = PInt; pub type N978 = NInt; + pub type U979 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P979 = PInt; pub type N979 = NInt; + pub type U980 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P980 = PInt; pub type N980 = NInt; + pub type U981 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P981 = PInt; pub type N981 = NInt; + pub type U982 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P982 = PInt; pub type N982 = NInt; + pub type U983 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P983 = PInt; pub type N983 = NInt; + pub type U984 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P984 = PInt; pub type N984 = NInt; + pub type U985 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P985 = PInt; pub type N985 = NInt; + pub type U986 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P986 = PInt; pub type N986 = NInt; + pub type U987 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P987 = PInt; pub type N987 = NInt; + pub type U988 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P988 = PInt; pub type N988 = NInt; + pub type U989 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P989 = PInt; pub type N989 = NInt; + pub type U990 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P990 = PInt; pub type N990 = NInt; + pub type U991 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P991 = PInt; pub type N991 = NInt; + pub type U992 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P992 = PInt; pub type N992 = NInt; + pub type U993 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P993 = PInt; pub type N993 = NInt; + pub type U994 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P994 = PInt; pub type N994 = NInt; + pub type U995 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P995 = PInt; pub type N995 = NInt; + pub type U996 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P996 = PInt; pub type N996 = NInt; + pub type U997 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P997 = PInt; pub type N997 = NInt; + pub type U998 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P998 = PInt; pub type N998 = NInt; + pub type U999 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P999 = PInt; pub type N999 = NInt; + pub type U1000 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P1000 = PInt; pub type N1000 = NInt; + pub type U1001 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P1001 = PInt; pub type N1001 = NInt; + pub type U1002 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P1002 = PInt; pub type N1002 = NInt; + pub type U1003 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P1003 = PInt; pub type N1003 = NInt; + pub type U1004 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P1004 = PInt; pub type N1004 = NInt; + pub type U1005 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P1005 = PInt; pub type N1005 = NInt; + pub type U1006 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P1006 = PInt; pub type N1006 = NInt; + pub type U1007 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P1007 = PInt; pub type N1007 = NInt; + pub type U1008 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P1008 = PInt; pub type N1008 = NInt; + pub type U1009 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P1009 = PInt; pub type N1009 = NInt; + pub type U1010 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P1010 = PInt; pub type N1010 = NInt; + pub type U1011 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P1011 = PInt; pub type N1011 = NInt; + pub type U1012 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P1012 = PInt; pub type N1012 = NInt; + pub type U1013 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P1013 = PInt; pub type N1013 = NInt; + pub type U1014 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P1014 = PInt; pub type N1014 = NInt; + pub type U1015 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P1015 = PInt; pub type N1015 = NInt; + pub type U1016 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P1016 = PInt; pub type N1016 = NInt; + pub type U1017 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P1017 = PInt; pub type N1017 = NInt; + pub type U1018 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P1018 = PInt; pub type N1018 = NInt; + pub type U1019 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P1019 = PInt; pub type N1019 = NInt; + pub type U1020 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P1020 = PInt; pub type N1020 = NInt; + pub type U1021 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P1021 = PInt; pub type N1021 = NInt; + pub type U1022 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P1022 = PInt; pub type N1022 = NInt; + pub type U1023 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P1023 = PInt; pub type N1023 = NInt; + pub type U1024 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1024 = PInt; pub type N1024 = NInt; + pub type U2048 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2048 = PInt; pub type N2048 = NInt; + pub type U4096 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4096 = PInt; pub type N4096 = NInt; + pub type U8192 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8192 = PInt; pub type N8192 = NInt; + pub type U16384 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P16384 = PInt; pub type N16384 = NInt; + pub type U32768 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P32768 = PInt; pub type N32768 = NInt; + pub type U65536 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P65536 = PInt; pub type N65536 = NInt; + pub type U131072 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P131072 = PInt; pub type N131072 = NInt; + pub type U262144 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P262144 = PInt; pub type N262144 = NInt; + pub type U524288 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P524288 = PInt; pub type N524288 = NInt; + pub type U1048576 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1048576 = PInt; pub type N1048576 = NInt; + pub type U2097152 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2097152 = PInt; pub type N2097152 = NInt; + pub type U4194304 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4194304 = PInt; pub type N4194304 = NInt; + pub type U8388608 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8388608 = PInt; pub type N8388608 = NInt; + pub type U16777216 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P16777216 = PInt; pub type N16777216 = NInt; + pub type U33554432 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P33554432 = PInt; pub type N33554432 = NInt; + pub type U67108864 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P67108864 = PInt; pub type N67108864 = NInt; + pub type U134217728 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P134217728 = PInt; pub type N134217728 = NInt; + pub type U268435456 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P268435456 = PInt; pub type N268435456 = NInt; + pub type U536870912 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P536870912 = PInt; pub type N536870912 = NInt; + pub type U1073741824 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1073741824 = PInt; pub type N1073741824 = NInt; + pub type U2147483648 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2147483648 = PInt; pub type N2147483648 = NInt; + pub type U4294967296 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4294967296 = PInt; pub type N4294967296 = NInt; + pub type U8589934592 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8589934592 = PInt; pub type N8589934592 = NInt; + pub type U17179869184 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P17179869184 = PInt; pub type N17179869184 = NInt; + pub type U34359738368 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P34359738368 = PInt; pub type N34359738368 = NInt; + pub type U68719476736 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P68719476736 = PInt; pub type N68719476736 = NInt; + pub type U137438953472 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P137438953472 = PInt; pub type N137438953472 = NInt; + pub type U274877906944 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P274877906944 = PInt; pub type N274877906944 = NInt; + pub type U549755813888 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P549755813888 = PInt; pub type N549755813888 = NInt; + pub type U1099511627776 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1099511627776 = PInt; pub type N1099511627776 = NInt; + pub type U2199023255552 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2199023255552 = PInt; pub type N2199023255552 = NInt; + pub type U4398046511104 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4398046511104 = PInt; pub type N4398046511104 = NInt; + pub type U8796093022208 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8796093022208 = PInt; pub type N8796093022208 = NInt; + pub type U17592186044416 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P17592186044416 = PInt; pub type N17592186044416 = NInt; + pub type U35184372088832 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P35184372088832 = PInt; pub type N35184372088832 = NInt; + pub type U70368744177664 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P70368744177664 = PInt; pub type N70368744177664 = NInt; + pub type U140737488355328 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P140737488355328 = PInt; pub type N140737488355328 = NInt; + pub type U281474976710656 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P281474976710656 = PInt; pub type N281474976710656 = NInt; + pub type U562949953421312 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P562949953421312 = PInt; pub type N562949953421312 = NInt; + pub type U1125899906842624 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1125899906842624 = PInt; pub type N1125899906842624 = NInt; + pub type U2251799813685248 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2251799813685248 = PInt; pub type N2251799813685248 = NInt; + pub type U4503599627370496 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4503599627370496 = PInt; pub type N4503599627370496 = NInt; + pub type U9007199254740992 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P9007199254740992 = PInt; pub type N9007199254740992 = NInt; + pub type U18014398509481984 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P18014398509481984 = PInt; pub type N18014398509481984 = NInt; + pub type U36028797018963968 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P36028797018963968 = PInt; pub type N36028797018963968 = NInt; + pub type U72057594037927936 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P72057594037927936 = PInt; pub type N72057594037927936 = NInt; + pub type U144115188075855872 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P144115188075855872 = PInt; pub type N144115188075855872 = NInt; + pub type U288230376151711744 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P288230376151711744 = PInt; pub type N288230376151711744 = NInt; + pub type U576460752303423488 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P576460752303423488 = PInt; pub type N576460752303423488 = NInt; + pub type U1152921504606846976 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1152921504606846976 = PInt; pub type N1152921504606846976 = NInt; + pub type U2305843009213693952 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2305843009213693952 = PInt; pub type N2305843009213693952 = NInt; + pub type U4611686018427387904 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4611686018427387904 = PInt; pub type N4611686018427387904 = NInt; + pub type U9223372036854775808 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type U10000 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P10000 = PInt; pub type N10000 = NInt; + pub type U100000 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P100000 = PInt; pub type N100000 = NInt; + pub type U1000000 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000 = PInt; pub type N1000000 = NInt; + pub type U10000000 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000 = PInt; pub type N10000000 = NInt; + pub type U100000000 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000 = PInt; pub type N100000000 = NInt; + pub type U1000000000 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000 = PInt; pub type N1000000000 = NInt; + pub type U10000000000 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000000 = PInt; pub type N10000000000 = NInt; + pub type U100000000000 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000000 = PInt; pub type N100000000000 = NInt; + pub type U1000000000000 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000000 = PInt; pub type N1000000000000 = NInt; + pub type U10000000000000 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000000000 = PInt; pub type N10000000000000 = NInt; + pub type U100000000000000 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000000000 = PInt; pub type N100000000000000 = NInt; + pub type U1000000000000000 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000000000 = PInt; pub type N1000000000000000 = NInt; + pub type U10000000000000000 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000000000000 = PInt; pub type N10000000000000000 = NInt; + pub type U100000000000000000 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000000000000 = PInt; pub type N100000000000000000 = NInt; + pub type U1000000000000000000 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000000000000 = PInt; pub type N1000000000000000000 = NInt; + pub type U10000000000000000000 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; +} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs new file mode 100644 index 0000000..ce6f3e0 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs @@ -0,0 +1,1030 @@ + +/** +Convenient type operations. + +Any types representing values must be able to be expressed as `ident`s. That means they need to be +in scope. + +For example, `P5` is okay, but `typenum::P5` is not. + +You may combine operators arbitrarily, although doing so excessively may require raising the +recursion limit. + +# Example +```rust +#![recursion_limit="128"] +#[macro_use] extern crate typenum; +use typenum::consts::*; + +fn main() { + assert_type!( + op!(min((P1 - P2) * (N3 + N7), P5 * (P3 + P4)) == P10) + ); +} +``` +Operators are evaluated based on the operator precedence outlined +[here](https://doc.rust-lang.org/reference.html#operator-precedence). + +The full list of supported operators and functions is as follows: + +`*`, `/`, `%`, `+`, `-`, `<<`, `>>`, `&`, `^`, `|`, `==`, `!=`, `<=`, `>=`, `<`, `>`, `cmp`, `sqr`, `sqrt`, `abs`, `cube`, `pow`, `min`, `max`, `log2`, `gcd` + +They all expand to type aliases defined in the `operator_aliases` module. Here is an expanded list, +including examples: + +--- +Operator `*`. Expands to `Prod`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P2 * P3), P6); +# } +``` + +--- +Operator `/`. Expands to `Quot`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P6 / P2), P3); +# } +``` + +--- +Operator `%`. Expands to `Mod`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 % P3), P2); +# } +``` + +--- +Operator `+`. Expands to `Sum`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P2 + P3), P5); +# } +``` + +--- +Operator `-`. Expands to `Diff`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P2 - P3), N1); +# } +``` + +--- +Operator `<<`. Expands to `Shleft`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U1 << U5), U32); +# } +``` + +--- +Operator `>>`. Expands to `Shright`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U32 >> U5), U1); +# } +``` + +--- +Operator `&`. Expands to `And`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U5 & U3), U1); +# } +``` + +--- +Operator `^`. Expands to `Xor`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U5 ^ U3), U6); +# } +``` + +--- +Operator `|`. Expands to `Or`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U5 | U3), U7); +# } +``` + +--- +Operator `==`. Expands to `Eq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 == P3 + P2), True); +# } +``` + +--- +Operator `!=`. Expands to `NotEq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 != P3 + P2), False); +# } +``` + +--- +Operator `<=`. Expands to `LeEq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P6 <= P3 + P2), False); +# } +``` + +--- +Operator `>=`. Expands to `GrEq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P6 >= P3 + P2), True); +# } +``` + +--- +Operator `<`. Expands to `Le`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P4 < P3 + P2), True); +# } +``` + +--- +Operator `>`. Expands to `Gr`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 < P3 + P2), False); +# } +``` + +--- +Operator `cmp`. Expands to `Compare`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(cmp(P2, P3)), Less); +# } +``` + +--- +Operator `sqr`. Expands to `Square`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(sqr(P2)), P4); +# } +``` + +--- +Operator `sqrt`. Expands to `Sqrt`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(sqrt(U9)), U3); +# } +``` + +--- +Operator `abs`. Expands to `AbsVal`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(abs(N2)), P2); +# } +``` + +--- +Operator `cube`. Expands to `Cube`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(cube(P2)), P8); +# } +``` + +--- +Operator `pow`. Expands to `Exp`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(pow(P2, P3)), P8); +# } +``` + +--- +Operator `min`. Expands to `Minimum`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(min(P2, P3)), P2); +# } +``` + +--- +Operator `max`. Expands to `Maximum`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(max(P2, P3)), P3); +# } +``` + +--- +Operator `log2`. Expands to `Log2`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(log2(U9)), U3); +# } +``` + +--- +Operator `gcd`. Expands to `Gcf`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(gcd(U9, U21)), U3); +# } +``` + +*/ +#[macro_export(local_inner_macros)] +macro_rules! op { + ($($tail:tt)*) => ( __op_internal__!($($tail)*) ); +} + + #[doc(hidden)] + #[macro_export(local_inner_macros)] + macro_rules! __op_internal__ { + +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: cmp $($tail:tt)*) => ( + __op_internal__!(@stack[Compare, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: sqr $($tail:tt)*) => ( + __op_internal__!(@stack[Square, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: sqrt $($tail:tt)*) => ( + __op_internal__!(@stack[Sqrt, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: abs $($tail:tt)*) => ( + __op_internal__!(@stack[AbsVal, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: cube $($tail:tt)*) => ( + __op_internal__!(@stack[Cube, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: pow $($tail:tt)*) => ( + __op_internal__!(@stack[Exp, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: min $($tail:tt)*) => ( + __op_internal__!(@stack[Minimum, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: max $($tail:tt)*) => ( + __op_internal__!(@stack[Maximum, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: log2 $($tail:tt)*) => ( + __op_internal__!(@stack[Log2, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: gcd $($tail:tt)*) => ( + __op_internal__!(@stack[Gcf, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[LParen, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: , $($tail:tt)*) => ( + __op_internal__!(@stack[LParen, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$stack_top:ident, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: , $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$stack_top, $($queue,)*] @tail: , $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: * $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: * $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: * $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[Prod, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: / $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: / $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: / $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[Quot, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: % $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: % $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: % $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[Mod, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: + $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[Sum, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: - $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[Diff, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: << $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[Shleft, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[Shright, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: & $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: & $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[And, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[Xor, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: | $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: | $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[Or, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: == $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: == $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[Eq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: != $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: != $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[NotEq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[LeEq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[GrEq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: < $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: < $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[Le, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: > $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: > $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[Gr, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ( $($stuff:tt)* ) $($tail:tt)* ) + => ( + __op_internal__!(@stack[LParen, $($stack,)*] @queue[$($queue,)*] + @tail: $($stuff)* RParen $($tail)*) +); +(@stack[LParen, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: RParen $($tail:tt)*) => ( + __op_internal__!(@rp3 @stack[$($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$stack_top:ident, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: RParen $($tail:tt)*) + => ( + __op_internal__!(@stack[$($stack,)*] @queue[$stack_top, $($queue,)*] @tail: RParen $($tail)*) +); +(@rp3 @stack[Compare, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Compare, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Square, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Square, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Sqrt, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sqrt, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[AbsVal, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[AbsVal, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Cube, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Cube, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Exp, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Exp, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Minimum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Minimum, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Maximum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Maximum, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Log2, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Log2, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Gcf, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gcf, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $num:ident $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$num, $($queue,)*] @tail: $($tail)*) +); +(@stack[] @queue[$($queue:ident,)*] @tail: ) => ( + __op_internal__!(@reverse[] @input: $($queue,)*) +); +(@stack[$stack_top:ident, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail:) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$stack_top, $($queue,)*] @tail: ) +); +(@reverse[$($revved:ident,)*] @input: $head:ident, $($tail:ident,)* ) => ( + __op_internal__!(@reverse[$head, $($revved,)*] @input: $($tail,)*) +); +(@reverse[$($revved:ident,)*] @input: ) => ( + __op_internal__!(@eval @stack[] @input[$($revved,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Prod, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Prod<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Quot, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Quot<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Mod, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Mod<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Sum, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Sum<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Diff, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Diff<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Shleft, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Shleft<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Shright, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Shright<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[And, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::And<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Xor, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Xor<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Or, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Or<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Eq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Eq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[NotEq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::NotEq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[LeEq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::LeEq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[GrEq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::GrEq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Le, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Le<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Gr, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Gr<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Compare, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Compare<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Exp, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Exp<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Minimum, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Minimum<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Maximum, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Maximum<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Gcf, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Gcf<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Square, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Square<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Sqrt, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Sqrt<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[AbsVal, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::AbsVal<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Cube, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Cube<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Log2, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Log2<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$($stack:ty,)*] @input[$head:ident, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$head, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$stack:ty,] @input[]) => ( + $stack +); +($($tail:tt)* ) => ( + __op_internal__!(@stack[] @queue[] @tail: $($tail)*) +); +} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/tests.rs b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/tests.rs new file mode 100644 index 0000000..12616c0 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/tests.rs @@ -0,0 +1,20565 @@ + +extern crate typenum; + +use std::ops::*; +use std::cmp::Ordering; +use typenum::*; + +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Sub_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_0() { + type A = UTerm; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_0() { + type A = UTerm; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U0CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_1() { + type A = UTerm; + type B = UInt; + + #[allow(non_camel_case_types)] + type U0CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_2() { + type A = UTerm; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_3() { + type A = UTerm; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Sub_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_0() { + type A = UInt; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U1CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_1() { + type A = UInt; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_1() { + type A = UInt; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Sub_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_PartialDiv_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_1() { + type A = UInt; + type B = UInt; + + #[allow(non_camel_case_types)] + type U1CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_2() { + type A = UInt; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_2() { + type A = UInt; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_2() { + type A = UInt; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_2() { + type A = UInt; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_3() { + type A = UInt; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_3() { + type A = UInt; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_3() { + type A = UInt; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_3() { + type A = UInt; + type B = UInt, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_3() { + type A = UInt; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_3() { + type A = UInt; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_4() { + type A = UInt; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U1AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_5() { + type A = UInt; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_0() { + type A = UInt, B0>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_0() { + type A = UInt, B0>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U2CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_1() { + type A = UInt, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_1() { + type A = UInt, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_1() { + type A = UInt, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_PartialDiv_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_1() { + type A = UInt, B0>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U2CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_PartialDiv_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_2() { + type A = UInt, B0>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_3() { + type A = UInt, B0>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_0() { + type A = UInt, B1>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_0() { + type A = UInt, B1>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U3CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_1() { + type A = UInt, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_1() { + type A = UInt, B1>; + type B = UInt; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_1() { + type A = UInt, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_1() { + type A = UInt, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_1() { + type A = UInt, B1>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_PartialDiv_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_1() { + type A = UInt, B1>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U3CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_2() { + type A = UInt, B1>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U24 = UInt, B1>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_PartialDiv_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3PartialDivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U27 = UInt, B1>, B0>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_3() { + type A = UInt, B1>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U48 = UInt, B1>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U81 = UInt, B0>, B1>, B0>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U96 = UInt, B1>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U15 = UInt, B1>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U243 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U4CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_1() { + type A = UInt, B0>, B0>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U4CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4SubU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4PartialDivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U256 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U128 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1024 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U5CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_PartialDiv_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_1() { + type A = UInt, B0>, B1>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U5CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U25 = UInt, B1>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U40 = UInt, B0>, B1>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U15 = UInt, B1>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U125 = UInt, B1>, B1>, B1>, B1>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U80 = UInt, B0>, B1>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5SubU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U625 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U160 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5SubU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U25 = UInt, B1>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_PartialDiv_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5PartialDivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U3125 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5SubN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5PartialDivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N5CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N5Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N5CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N125 = NInt, B1>, B1>, B1>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P625 = PInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5AddP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N25 = NInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5PartialDivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N3125 = NInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4SubN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4PartialDivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N4AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N4CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N4Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N4CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N4SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N64 = NInt, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4AddP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N16 = NInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4PartialDivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P256 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N1024 = NInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3SubN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3PartialDivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N1() { + type A = NInt, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N1() { + type A = NInt, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N3CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul__0() { + type A = NInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max__0() { + type A = NInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd__0() { + type A = NInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow__0() { + type A = NInt, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp__0() { + type A = NInt, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N3Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P1() { + type A = NInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P1() { + type A = NInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P1() { + type A = NInt, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P1() { + type A = NInt, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N3CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3AddP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3PartialDivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N27 = NInt, B1>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P81 = PInt, B0>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N243 = NInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2SubN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N1() { + type A = NInt, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N1() { + type A = NInt, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N2CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul__0() { + type A = NInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max__0() { + type A = NInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd__0() { + type A = NInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow__0() { + type A = NInt, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp__0() { + type A = NInt, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N2Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P1() { + type A = NInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P1() { + type A = NInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P1() { + type A = NInt, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P1() { + type A = NInt, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N2CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2AddP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N32 = NInt, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N3() { + type A = NInt>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N3() { + type A = NInt>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N2() { + type A = NInt>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N2() { + type A = NInt>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N1() { + type A = NInt>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N1() { + type A = NInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1SubN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N1() { + type A = NInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_PartialDiv_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N1() { + type A = NInt>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N1CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul__0() { + type A = NInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max__0() { + type A = NInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd__0() { + type A = NInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow__0() { + type A = NInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp__0() { + type A = NInt>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N1Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P1() { + type A = NInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1AddP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P1() { + type A = NInt>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P1() { + type A = NInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P1() { + type A = NInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P1() { + type A = NInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_PartialDiv_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P1() { + type A = NInt>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N1CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P2() { + type A = NInt>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P2() { + type A = NInt>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P3() { + type A = NInt>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P3() { + type A = NInt>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0AddN5 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0SubN5 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0MinN5 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdN5 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpN5 = >::Output; + assert_eq!(<_0CmpN5 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0AddN4 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0SubN4 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0MinN4 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdN4 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpN4 = >::Output; + assert_eq!(<_0CmpN4 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N3() { + type A = Z0; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0AddN3 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N3() { + type A = Z0; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0SubN3 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N3() { + type A = Z0; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0MinN3 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N3() { + type A = Z0; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdN3 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N3() { + type A = Z0; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpN3 = >::Output; + assert_eq!(<_0CmpN3 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N2() { + type A = Z0; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0AddN2 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N2() { + type A = Z0; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0SubN2 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N2() { + type A = Z0; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0MinN2 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N2() { + type A = Z0; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdN2 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N2() { + type A = Z0; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpN2 = >::Output; + assert_eq!(<_0CmpN2 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N1() { + type A = Z0; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0AddN1 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N1() { + type A = Z0; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0SubN1 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N1() { + type A = Z0; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0MinN1 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N1() { + type A = Z0; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0GcdN1 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N1() { + type A = Z0; + type B = NInt>; + + #[allow(non_camel_case_types)] + type _0CmpN1 = >::Output; + assert_eq!(<_0CmpN1 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Add_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Add_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Sub_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Sub_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Mul_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Min_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Max_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Gcd_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Gcd_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow__0() { + type A = Z0; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0Pow_0 = <>::Output as Same>::Output; + + assert_eq!(<_0Pow_0 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp__0() { + type A = Z0; + type B = Z0; + + #[allow(non_camel_case_types)] + type _0Cmp_0 = >::Output; + assert_eq!(<_0Cmp_0 as Ord>::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0AddP1 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P1() { + type A = Z0; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0SubP1 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0MaxP1 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0GcdP1 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P1() { + type A = Z0; + type B = PInt>; + + #[allow(non_camel_case_types)] + type _0CmpP1 = >::Output; + assert_eq!(<_0CmpP1 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0AddP2 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P2() { + type A = Z0; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0SubP2 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0MaxP2 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdP2 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P2() { + type A = Z0; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpP2 = >::Output; + assert_eq!(<_0CmpP2 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0AddP3 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P3() { + type A = Z0; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0SubP3 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0MaxP3 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdP3 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P3() { + type A = Z0; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpP3 = >::Output; + assert_eq!(<_0CmpP3 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0AddP4 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0SubP4 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0MaxP4 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdP4 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpP4 = >::Output; + assert_eq!(<_0CmpP4 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0AddP5 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0SubP5 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0MaxP5 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdP5 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpP5 = >::Output; + assert_eq!(<_0CmpP5 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N3() { + type A = PInt>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N3() { + type A = PInt>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N2() { + type A = PInt>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N2() { + type A = PInt>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N1() { + type A = PInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1AddN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N1() { + type A = PInt>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N1() { + type A = PInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_PartialDiv_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N1() { + type A = PInt>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P1CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul__0() { + type A = PInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min__0() { + type A = PInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp__0() { + type A = PInt>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P1Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P1() { + type A = PInt>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P1() { + type A = PInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1SubP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P1() { + type A = PInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_PartialDiv_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P1() { + type A = PInt>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P1CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P2() { + type A = PInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P2() { + type A = PInt>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P2() { + type A = PInt>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P3() { + type A = PInt>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P3() { + type A = PInt>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P3() { + type A = PInt>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2AddN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N1() { + type A = PInt, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N1() { + type A = PInt, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P2CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul__0() { + type A = PInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min__0() { + type A = PInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow__0() { + type A = PInt, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp__0() { + type A = PInt, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P2Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P1() { + type A = PInt, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P1() { + type A = PInt, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P2CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2SubP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P32 = PInt, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3AddN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3PartialDivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N1() { + type A = PInt, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N1() { + type A = PInt, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P3CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul__0() { + type A = PInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min__0() { + type A = PInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow__0() { + type A = PInt, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp__0() { + type A = PInt, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P3Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P1() { + type A = PInt, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P1() { + type A = PInt, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P3CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3SubP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3PartialDivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P27 = PInt, B1>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P81 = PInt, B0>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P243 = PInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4AddN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N16 = NInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4PartialDivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P4MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P4SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P4CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P4Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P4CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P4AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P64 = PInt, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4SubP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4PartialDivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P256 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1024 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5AddN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N25 = NInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5PartialDivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P5MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P5CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P5Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P5CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P125 = PInt, B1>, B1>, B1>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P625 = PInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5SubP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5PartialDivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P3125 = PInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Neg() { + type A = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type NegN5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Abs() { + type A = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type AbsN5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Neg() { + type A = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type NegN4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Abs() { + type A = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type AbsN4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Neg() { + type A = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type NegN3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Abs() { + type A = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type AbsN3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Neg() { + type A = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type NegN2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Abs() { + type A = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type AbsN2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Neg() { + type A = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type NegN1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Abs() { + type A = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type AbsN1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Neg() { + type A = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type Neg_0 = <::Output as Same<_0>>::Output; + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Abs() { + type A = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type Abs_0 = <::Output as Same<_0>>::Output; + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Neg() { + type A = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type NegP1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Abs() { + type A = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type AbsP1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Neg() { + type A = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type NegP2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Abs() { + type A = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type AbsP2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Neg() { + type A = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type NegP3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Abs() { + type A = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type AbsP3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Neg() { + type A = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type NegP4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Abs() { + type A = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type AbsP4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Neg() { + type A = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type NegP5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Abs() { + type A = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type AbsP5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/output b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/output new file mode 100644 index 0000000..82f0a84 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build/main.rs +cargo:rustc-env=TYPENUM_BUILD_CONSTS=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs +cargo:rustc-env=TYPENUM_BUILD_OP=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/root-output b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/root-output new file mode 100644 index 0000000..f8de169 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out \ No newline at end of file diff --git a/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/stderr b/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/bpfel-unknown-unknown/release/deps/ahash-7a926bfe4688dd92.d b/target/bpfel-unknown-unknown/release/deps/ahash-7a926bfe4688dd92.d new file mode 100644 index 0000000..a5cb98c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/ahash-7a926bfe4688dd92.d @@ -0,0 +1,12 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/ahash-7a926bfe4688dd92.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/convert.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/fallback_hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/operations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/random_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/specialize.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/convert.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/fallback_hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/operations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/random_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/specialize.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/ahash-7a926bfe4688dd92.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/convert.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/fallback_hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/operations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/random_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/specialize.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/convert.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/fallback_hash.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/operations.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/random_state.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/specialize.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/anchor_lang-952d347bf18601b0.d b/target/bpfel-unknown-unknown/release/deps/anchor_lang-952d347bf18601b0.d new file mode 100644 index 0000000..355644a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/anchor_lang-952d347bf18601b0.d @@ -0,0 +1,32 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/anchor_lang-952d347bf18601b0.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/account_meta.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_info.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/boxed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/signer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/system_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/sysvar.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/unchecked_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_upgradeable_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_writer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/ctor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/idl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/system_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/vec.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/account_meta.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_info.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/boxed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/signer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/system_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/sysvar.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/unchecked_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_upgradeable_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_writer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/ctor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/idl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/system_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/vec.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/anchor_lang-952d347bf18601b0.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/account_meta.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_info.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/boxed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/signer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/system_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/sysvar.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/unchecked_account.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_upgradeable_state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_writer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/ctor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/idl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/system_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/vec.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/account_meta.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_info.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/account_loader.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/boxed.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_account.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/cpi_state.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/loader.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/program_account.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/signer.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/state.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/system_account.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/sysvar.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/accounts/unchecked_account.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_upgradeable_state.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/bpf_writer.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/common.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/context.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/ctor.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/idl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/system_program.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-lang-0.25.0/src/vec.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/anchor_spl-189387e198066fc1.d b/target/bpfel-unknown-unknown/release/deps/anchor_spl-189387e198066fc1.d new file mode 100644 index 0000000..8c14bae --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/anchor_spl-189387e198066fc1.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/anchor_spl-189387e198066fc1.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/associated_token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/mint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/token.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/associated_token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/mint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/token.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/anchor_spl-189387e198066fc1.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/associated_token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/mint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/token.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/associated_token.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/mint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-spl-0.25.0/src/token.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/arrayref-de75bf36e767b54a.d b/target/bpfel-unknown-unknown/release/deps/arrayref-de75bf36e767b54a.d new file mode 100644 index 0000000..2abe2fa --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/arrayref-de75bf36e767b54a.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/arrayref-de75bf36e767b54a.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayref-0.3.6/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayref-0.3.6/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/arrayref-de75bf36e767b54a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayref-0.3.6/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayref-0.3.6/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/arrayvec-0e201af65276199a.d b/target/bpfel-unknown-unknown/release/deps/arrayvec-0e201af65276199a.d new file mode 100644 index 0000000..f3eb810 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/arrayvec-0e201af65276199a.d @@ -0,0 +1,13 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/arrayvec-0e201af65276199a.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/array_string.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/char.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/errors.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/utils.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/array_string.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/char.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/errors.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/utils.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/arrayvec-0e201af65276199a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/array_string.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/char.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/errors.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/utils.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/arrayvec.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/array_string.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/char.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/errors.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/utils.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/base64-23dddadd5e4ea6b2.d b/target/bpfel-unknown-unknown/release/deps/base64-23dddadd5e4ea6b2.d new file mode 100644 index 0000000..42622f9 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/base64-23dddadd5e4ea6b2.d @@ -0,0 +1,17 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/base64-23dddadd5e4ea6b2.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/chunked_encoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/display.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/decoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/tables.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder_string_writer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/encode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/decode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/chunked_encoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/display.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/decoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/tables.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder_string_writer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/encode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/decode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/base64-23dddadd5e4ea6b2.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/chunked_encoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/display.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/decoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/tables.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder_string_writer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/encode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/decode.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/chunked_encoder.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/display.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/read/decoder.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/tables.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/write/encoder_string_writer.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/encode.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/decode.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/bincode-6c232a215714fec2.d b/target/bpfel-unknown-unknown/release/deps/bincode-6c232a215714fec2.d new file mode 100644 index 0000000..2c681ed --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/bincode-6c232a215714fec2.d @@ -0,0 +1,19 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bincode-6c232a215714fec2.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/endian.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/legacy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/limit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/trailing.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/read.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/byteorder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/internal.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/ser/mod.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/endian.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/legacy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/limit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/trailing.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/read.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/byteorder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/internal.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/ser/mod.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bincode-6c232a215714fec2.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/endian.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/legacy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/limit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/trailing.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/read.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/byteorder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/internal.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/ser/mod.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/endian.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/int.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/legacy.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/limit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/config/trailing.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/de/read.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/byteorder.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/internal.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/ser/mod.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/blake3-b825656e3a8b3981.d b/target/bpfel-unknown-unknown/release/deps/blake3-b825656e3a8b3981.d new file mode 100644 index 0000000..bca6156 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/blake3-b825656e3a8b3981.d @@ -0,0 +1,12 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/blake3-b825656e3a8b3981.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/guts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/platform.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/portable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/join.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/guts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/platform.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/portable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/join.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/blake3-b825656e3a8b3981.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/guts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/platform.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/portable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/join.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/guts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/platform.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/portable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/traits.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/src/join.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/block_buffer-0f1932531ee461b1.d b/target/bpfel-unknown-unknown/release/deps/block_buffer-0f1932531ee461b1.d new file mode 100644 index 0000000..9545ef8 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/block_buffer-0f1932531ee461b1.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/block_buffer-0f1932531ee461b1.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/sealed.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/sealed.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/block_buffer-0f1932531ee461b1.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/sealed.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.3/src/sealed.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/borsh-4eb1848734047075.d b/target/bpfel-unknown-unknown/release/deps/borsh-4eb1848734047075.d new file mode 100644 index 0000000..14c9235 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/borsh-4eb1848734047075.d @@ -0,0 +1,13 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/borsh-4eb1848734047075.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema_helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/helpers.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema_helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/helpers.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/borsh-4eb1848734047075.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema_helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/helpers.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/de/hint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/schema_helpers.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-0.9.3/src/ser/helpers.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/bs58-69a76d7cd7ea7674.d b/target/bpfel-unknown-unknown/release/deps/bs58-69a76d7cd7ea7674.d new file mode 100644 index 0000000..9a75e0b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/bs58-69a76d7cd7ea7674.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bs58-69a76d7cd7ea7674.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bs58-69a76d7cd7ea7674.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/bv-8fa9941bcd07498c.d b/target/bpfel-unknown-unknown/release/deps/bv-8fa9941bcd07498c.d new file mode 100644 index 0000000..51a082e --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/bv-8fa9941bcd07498c.d @@ -0,0 +1,30 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bv-8fa9941bcd07498c.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/range_compat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/storage.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut_ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_push.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bit_sliceable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/slice.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/inner.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/array_n_impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/prims.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_slice_adapter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/logic.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_fill.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_concat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bool_adapter.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/range_compat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/storage.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut_ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_push.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bit_sliceable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/slice.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/inner.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/array_n_impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/prims.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_slice_adapter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/logic.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_fill.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_concat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bool_adapter.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bv-8fa9941bcd07498c.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/range_compat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/storage.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut_ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_push.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bit_sliceable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/slice.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/inner.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/array_n_impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/prims.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_slice_adapter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/logic.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_fill.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_concat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bool_adapter.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/range_compat.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/storage.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_ext.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_mut_ext.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bits_push.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/traits/bit_sliceable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/slice.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/inner.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/bit_vec/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/array_n_impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/iter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/prims.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_slice_adapter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/logic.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_fill.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bit_concat.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/src/adapter/bool_adapter.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/bytemuck-fa283e4581d968a2.d b/target/bpfel-unknown-unknown/release/deps/bytemuck-fa283e4581d968a2.d new file mode 100644 index 0000000..03a714c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/bytemuck-fa283e4581d968a2.d @@ -0,0 +1,18 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bytemuck-fa283e4581d968a2.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/anybitpattern.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/checked.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/internal.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable_in_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod_in_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/no_uninit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/contiguous.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/offset_of.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/transparent.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/anybitpattern.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/checked.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/internal.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable_in_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod_in_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/no_uninit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/contiguous.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/offset_of.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/transparent.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/bytemuck-fa283e4581d968a2.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/anybitpattern.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/checked.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/internal.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable_in_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod_in_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/no_uninit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/contiguous.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/offset_of.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/transparent.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/anybitpattern.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/checked.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/internal.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/zeroable_in_option.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/pod_in_option.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/no_uninit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/contiguous.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/offset_of.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck-1.12.3/src/transparent.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/cfg_if-5414c4b57e87e2c9.d b/target/bpfel-unknown-unknown/release/deps/cfg_if-5414c4b57e87e2c9.d new file mode 100644 index 0000000..a56b207 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/cfg_if-5414c4b57e87e2c9.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/cfg_if-5414c4b57e87e2c9.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/cfg_if-5414c4b57e87e2c9.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/constant_time_eq-7aef60e22fbd7d7b.d b/target/bpfel-unknown-unknown/release/deps/constant_time_eq-7aef60e22fbd7d7b.d new file mode 100644 index 0000000..2ed740a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/constant_time_eq-7aef60e22fbd7d7b.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/constant_time_eq-7aef60e22fbd7d7b.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/constant_time_eq-0.2.4/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/constant_time_eq-0.2.4/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/constant_time_eq-7aef60e22fbd7d7b.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/constant_time_eq-0.2.4/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/constant_time_eq-0.2.4/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/crypto_common-1f5184839d6dc8e7.d b/target/bpfel-unknown-unknown/release/deps/crypto_common-1f5184839d6dc8e7.d new file mode 100644 index 0000000..1f6ff14 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/crypto_common-1f5184839d6dc8e7.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/crypto_common-1f5184839d6dc8e7.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/crypto_common-1f5184839d6dc8e7.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/digest-844a3e119b12a049.d b/target/bpfel-unknown-unknown/release/deps/digest-844a3e119b12a049.d new file mode 100644 index 0000000..b86b7d3 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/digest-844a3e119b12a049.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/digest-844a3e119b12a049.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/ct_variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/rt_variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/wrapper.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/xof_reader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/mac.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/ct_variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/rt_variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/wrapper.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/xof_reader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/mac.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/digest-844a3e119b12a049.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/ct_variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/rt_variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/wrapper.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/xof_reader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/mac.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/ct_variable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/rt_variable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/wrapper.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/core_api/xof_reader.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/digest.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/mac.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/either-257ac34a238e4576.d b/target/bpfel-unknown-unknown/release/deps/either-257ac34a238e4576.d new file mode 100644 index 0000000..9e7c66c --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/either-257ac34a238e4576.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/either-257ac34a238e4576.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/either-257ac34a238e4576.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/generic_array-5b3b98a75cfe2afc.d b/target/bpfel-unknown-unknown/release/deps/generic_array-5b3b98a75cfe2afc.d new file mode 100644 index 0000000..aa172b9 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/generic_array-5b3b98a75cfe2afc.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/generic_array-5b3b98a75cfe2afc.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/generic_array-5b3b98a75cfe2afc.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/hashbrown-23ee4b244c692ba7.d b/target/bpfel-unknown-unknown/release/deps/hashbrown-23ee4b244c692ba7.d new file mode 100644 index 0000000..0f78df1 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/hashbrown-23ee4b244c692ba7.d @@ -0,0 +1,16 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/hashbrown-23ee4b244c692ba7.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/alloc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/bitmask.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/external_trait_impls/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/scopeguard.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/generic.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/alloc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/bitmask.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/external_trait_impls/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/scopeguard.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/generic.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/hashbrown-23ee4b244c692ba7.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/alloc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/bitmask.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/external_trait_impls/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/scopeguard.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/generic.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/alloc.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/bitmask.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/external_trait_impls/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/map.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/scopeguard.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/set.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/raw/generic.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/itertools-2be45f9b93732cae.d b/target/bpfel-unknown-unknown/release/deps/itertools-2be45f9b93732cae.d new file mode 100644 index 0000000..29525e1 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/itertools-2be45f9b93732cae.d @@ -0,0 +1,53 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/itertools-2be45f9b93732cae.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/impl_macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/coalesce.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/multi_product.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/either_or_both.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/free.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/concat_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/cons_tuples_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations_with_replacement.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/exactly_one_err.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/diff.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/flatten_ok.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/extrema_set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/grouping_map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/group_map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/groupbylazy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/intersperse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/k_smallest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/kmerge_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lazy_buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/merge_join.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/minmax.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/multipeek_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/pad_tail.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peek_nth.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peeking_take_while.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/permutations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/powerset.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/process_results_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/put_back_n_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/rciter_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/repeatn.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/sources.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tee.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tuple_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/duplicates_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unique_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unziptuple.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/with_position.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_eq_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_longest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/ziptuple.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/impl_macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/coalesce.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/multi_product.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/either_or_both.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/free.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/concat_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/cons_tuples_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations_with_replacement.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/exactly_one_err.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/diff.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/flatten_ok.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/extrema_set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/grouping_map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/group_map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/groupbylazy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/intersperse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/k_smallest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/kmerge_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lazy_buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/merge_join.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/minmax.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/multipeek_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/pad_tail.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peek_nth.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peeking_take_while.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/permutations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/powerset.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/process_results_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/put_back_n_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/rciter_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/repeatn.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/sources.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tee.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tuple_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/duplicates_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unique_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unziptuple.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/with_position.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_eq_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_longest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/ziptuple.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/itertools-2be45f9b93732cae.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/impl_macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/coalesce.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/multi_product.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/either_or_both.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/free.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/concat_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/cons_tuples_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations_with_replacement.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/exactly_one_err.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/diff.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/flatten_ok.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/extrema_set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/grouping_map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/group_map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/groupbylazy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/intersperse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/k_smallest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/kmerge_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lazy_buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/merge_join.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/minmax.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/multipeek_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/pad_tail.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peek_nth.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peeking_take_while.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/permutations.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/powerset.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/process_results_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/put_back_n_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/rciter_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/repeatn.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/sources.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tee.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tuple_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/duplicates_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unique_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unziptuple.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/with_position.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_eq_impl.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_longest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/ziptuple.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/impl_macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/coalesce.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/map.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/adaptors/multi_product.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/either_or_both.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/free.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/concat_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/cons_tuples_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/combinations_with_replacement.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/exactly_one_err.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/diff.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/flatten_ok.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/extrema_set.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/format.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/grouping_map.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/group_map.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/groupbylazy.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/intersperse.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/k_smallest.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/kmerge_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lazy_buffer.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/merge_join.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/minmax.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/multipeek_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/pad_tail.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peek_nth.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/peeking_take_while.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/permutations.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/powerset.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/process_results_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/put_back_n_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/rciter_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/repeatn.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/size_hint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/sources.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tee.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/tuple_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/duplicates_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unique_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/unziptuple.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/with_position.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_eq_impl.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/zip_longest.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/ziptuple.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/keccak-a5e3a0e822362d6f.d b/target/bpfel-unknown-unknown/release/deps/keccak-a5e3a0e822362d6f.d new file mode 100644 index 0000000..bdae245 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/keccak-a5e3a0e822362d6f.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/keccak-a5e3a0e822362d6f.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/unroll.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/unroll.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/keccak-a5e3a0e822362d6f.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/unroll.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.3/src/unroll.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/lazy_static-ebe993c3d75921fc.d b/target/bpfel-unknown-unknown/release/deps/lazy_static-ebe993c3d75921fc.d new file mode 100644 index 0000000..3ddd86d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/lazy_static-ebe993c3d75921fc.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/lazy_static-ebe993c3d75921fc.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/lazy_static-ebe993c3d75921fc.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rlib b/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rlib new file mode 100644 index 0000000..5ff323f Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rmeta b/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rmeta new file mode 100644 index 0000000..4b0ee90 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libahash-7a926bfe4688dd92.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rlib b/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rlib new file mode 100644 index 0000000..5f1bb60 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rmeta b/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rmeta new file mode 100644 index 0000000..f3cf980 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libanchor_lang-952d347bf18601b0.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rlib b/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rlib new file mode 100644 index 0000000..f30c53a Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rmeta b/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rmeta new file mode 100644 index 0000000..11fa8d6 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libanchor_spl-189387e198066fc1.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rlib b/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rlib new file mode 100644 index 0000000..97a0b4c Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rmeta b/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rmeta new file mode 100644 index 0000000..1adb455 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libarrayref-de75bf36e767b54a.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rlib b/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rlib new file mode 100644 index 0000000..2f4703a Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rmeta b/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rmeta new file mode 100644 index 0000000..cecd7f4 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libarrayvec-0e201af65276199a.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rlib b/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rlib new file mode 100644 index 0000000..eee76ae Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rmeta b/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rmeta new file mode 100644 index 0000000..a83b57b Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbase64-23dddadd5e4ea6b2.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rlib b/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rlib new file mode 100644 index 0000000..90fb53b Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rmeta b/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rmeta new file mode 100644 index 0000000..f1cd5e1 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbincode-6c232a215714fec2.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rlib b/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rlib new file mode 100644 index 0000000..a9444fc Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rmeta b/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rmeta new file mode 100644 index 0000000..f00dcbb Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libblake3-b825656e3a8b3981.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rlib b/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rlib new file mode 100644 index 0000000..5f21bbf Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rmeta b/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rmeta new file mode 100644 index 0000000..f56f8ba Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libblock_buffer-0f1932531ee461b1.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rlib b/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rlib new file mode 100644 index 0000000..d1b4407 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rmeta b/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rmeta new file mode 100644 index 0000000..6950ae7 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libborsh-4eb1848734047075.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rlib b/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rlib new file mode 100644 index 0000000..d3315fc Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rmeta b/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rmeta new file mode 100644 index 0000000..beaf64f Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbs58-69a76d7cd7ea7674.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rlib b/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rlib new file mode 100644 index 0000000..adb23c6 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rmeta b/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rmeta new file mode 100644 index 0000000..74c9cd8 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbv-8fa9941bcd07498c.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rlib b/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rlib new file mode 100644 index 0000000..4e11008 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rmeta b/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rmeta new file mode 100644 index 0000000..a0cdf61 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libbytemuck-fa283e4581d968a2.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rlib b/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rlib new file mode 100644 index 0000000..65f9253 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rmeta b/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rmeta new file mode 100644 index 0000000..cd2d7f6 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libcfg_if-5414c4b57e87e2c9.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rlib b/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rlib new file mode 100644 index 0000000..ce63c1a Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rmeta b/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rmeta new file mode 100644 index 0000000..f8af049 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libconstant_time_eq-7aef60e22fbd7d7b.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rlib b/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rlib new file mode 100644 index 0000000..169b78b Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rmeta b/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rmeta new file mode 100644 index 0000000..6c29ca0 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libcrypto_common-1f5184839d6dc8e7.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rlib b/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rlib new file mode 100644 index 0000000..cd7e4dc Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rmeta b/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rmeta new file mode 100644 index 0000000..d4ea76e Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libdigest-844a3e119b12a049.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rlib b/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rlib new file mode 100644 index 0000000..70d0589 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rmeta b/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rmeta new file mode 100644 index 0000000..40e2489 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libeither-257ac34a238e4576.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rlib b/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rlib new file mode 100644 index 0000000..26d5ea0 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rmeta b/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rmeta new file mode 100644 index 0000000..9cb266c Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libgeneric_array-5b3b98a75cfe2afc.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rlib b/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rlib new file mode 100644 index 0000000..2ef5262 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rmeta b/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rmeta new file mode 100644 index 0000000..7167339 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libhashbrown-23ee4b244c692ba7.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rlib b/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rlib new file mode 100644 index 0000000..96c9dc9 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rmeta b/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rmeta new file mode 100644 index 0000000..03183e2 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libitertools-2be45f9b93732cae.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rlib b/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rlib new file mode 100644 index 0000000..0f5c8d2 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rmeta b/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rmeta new file mode 100644 index 0000000..23686d1 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libkeccak-a5e3a0e822362d6f.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rlib b/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rlib new file mode 100644 index 0000000..8ef540e Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rmeta b/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rmeta new file mode 100644 index 0000000..9d418cb Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/liblazy_static-ebe993c3d75921fc.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rlib b/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rlib new file mode 100644 index 0000000..6f262d8 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rmeta b/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rmeta new file mode 100644 index 0000000..e680424 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rlib b/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rlib new file mode 100644 index 0000000..d3d15d0 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rmeta b/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rmeta new file mode 100644 index 0000000..10be845 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rlib b/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rlib new file mode 100644 index 0000000..babea97 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rmeta b/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rmeta new file mode 100644 index 0000000..5ae4d17 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rlib b/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rlib new file mode 100644 index 0000000..daf408c Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rmeta b/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rmeta new file mode 100644 index 0000000..9977155 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rlib b/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rlib new file mode 100644 index 0000000..b19d09e Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rmeta b/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rmeta new file mode 100644 index 0000000..4564f91 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rlib b/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rlib new file mode 100644 index 0000000..d21edef Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rmeta b/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rmeta new file mode 100644 index 0000000..f2306af Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rlib b/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rlib new file mode 100644 index 0000000..39b3eac Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rmeta b/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rmeta new file mode 100644 index 0000000..91c6c6e Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rlib b/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rlib new file mode 100644 index 0000000..ef6c583 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rmeta b/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rmeta new file mode 100644 index 0000000..b72ffff Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rlib b/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rlib new file mode 100644 index 0000000..4de72df Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rmeta b/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rmeta new file mode 100644 index 0000000..a41f662 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsolana_program-858d1fa05c88e3b1.rlib b/target/bpfel-unknown-unknown/release/deps/libsolana_program-858d1fa05c88e3b1.rlib new file mode 100644 index 0000000..08b3f9c Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsolana_program-858d1fa05c88e3b1.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libspl_associated_token_account-c7770ad4d488b65a.rlib b/target/bpfel-unknown-unknown/release/deps/libspl_associated_token_account-c7770ad4d488b65a.rlib new file mode 100644 index 0000000..40fb2aa Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libspl_associated_token_account-c7770ad4d488b65a.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libspl_token-7f59c828209568e6.rlib b/target/bpfel-unknown-unknown/release/deps/libspl_token-7f59c828209568e6.rlib new file mode 100644 index 0000000..3a8b676 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libspl_token-7f59c828209568e6.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rlib b/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rlib new file mode 100644 index 0000000..9ccdf4c Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rmeta b/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rmeta new file mode 100644 index 0000000..1fecd1a Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libsuperteam_dao_contract.rlib b/target/bpfel-unknown-unknown/release/deps/libsuperteam_dao_contract.rlib new file mode 100644 index 0000000..54a2554 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libsuperteam_dao_contract.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rlib b/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rlib new file mode 100644 index 0000000..3a7dc7c Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rmeta b/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rmeta new file mode 100644 index 0000000..6e37d46 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rlib b/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rlib new file mode 100644 index 0000000..0474502 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rlib differ diff --git a/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rmeta b/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rmeta new file mode 100644 index 0000000..bef20ec Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rmeta differ diff --git a/target/bpfel-unknown-unknown/release/deps/log-520137f102dd2ffb.d b/target/bpfel-unknown-unknown/release/deps/log-520137f102dd2ffb.d new file mode 100644 index 0000000..1a65d55 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/log-520137f102dd2ffb.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/log-520137f102dd2ffb.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/serde.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/liblog-520137f102dd2ffb.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/serde.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/log-520137f102dd2ffb.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/serde.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/serde.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/num_enum-467a0bd2a80b8274.d b/target/bpfel-unknown-unknown/release/deps/num_enum-467a0bd2a80b8274.d new file mode 100644 index 0000000..943d6d0 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/num_enum-467a0bd2a80b8274.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/num_enum-467a0bd2a80b8274.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum-0.5.7/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libnum_enum-467a0bd2a80b8274.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum-0.5.7/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/num_enum-467a0bd2a80b8274.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum-0.5.7/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum-0.5.7/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/num_traits-1fa0c6b123383f3a.d b/target/bpfel-unknown-unknown/release/deps/num_traits-1fa0c6b123383f3a.d new file mode 100644 index 0000000..53a4a74 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/num_traits-1fa0c6b123383f3a.d @@ -0,0 +1,24 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/num_traits-1fa0c6b123383f3a.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/bounds.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/cast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/float.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/identities.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/checked.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/euclid.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/inv.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mul_add.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/overflowing.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/saturating.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/wrapping.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/pow.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/real.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/sign.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libnum_traits-1fa0c6b123383f3a.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/bounds.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/cast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/float.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/identities.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/checked.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/euclid.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/inv.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mul_add.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/overflowing.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/saturating.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/wrapping.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/pow.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/real.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/sign.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/num_traits-1fa0c6b123383f3a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/bounds.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/cast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/float.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/identities.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/checked.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/euclid.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/inv.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mul_add.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/overflowing.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/saturating.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/wrapping.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/pow.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/real.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/sign.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/bounds.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/cast.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/float.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/identities.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/int.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/checked.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/euclid.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/inv.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/mul_add.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/overflowing.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/saturating.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/ops/wrapping.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/pow.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/real.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/sign.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/once_cell-3f3cc0f7b64184bd.d b/target/bpfel-unknown-unknown/release/deps/once_cell-3f3cc0f7b64184bd.d new file mode 100644 index 0000000..55cf11a --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/once_cell-3f3cc0f7b64184bd.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/once_cell-3f3cc0f7b64184bd.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libonce_cell-3f3cc0f7b64184bd.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/once_cell-3f3cc0f7b64184bd.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/serde-fa5db7274d819308.d b/target/bpfel-unknown-unknown/release/deps/serde-fa5db7274d819308.d new file mode 100644 index 0000000..7d4e655 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/serde-fa5db7274d819308.d @@ -0,0 +1,25 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/serde-fa5db7274d819308.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libserde-fa5db7274d819308.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/serde-fa5db7274d819308.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/serde_bytes-46de238783bfe742.d b/target/bpfel-unknown-unknown/release/deps/serde_bytes-46de238783bfe742.d new file mode 100644 index 0000000..737f3e2 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/serde_bytes-46de238783bfe742.d @@ -0,0 +1,11 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/serde_bytes-46de238783bfe742.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytebuf.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libserde_bytes-46de238783bfe742.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytebuf.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/serde_bytes-46de238783bfe742.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytebuf.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_bytes-0.11.8/src/bytebuf.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/sha2-bb60cecc061c1fde.d b/target/bpfel-unknown-unknown/release/deps/sha2-bb60cecc061c1fde.d new file mode 100644 index 0000000..c731b8d --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/sha2-bb60cecc061c1fde.d @@ -0,0 +1,13 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/sha2-bb60cecc061c1fde.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/core_api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/consts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512/soft.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libsha2-bb60cecc061c1fde.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/core_api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/consts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512/soft.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/sha2-bb60cecc061c1fde.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/core_api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/consts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512/soft.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/core_api.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/consts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha256/soft.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/sha512/soft.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/sha3-822a927a4a13ba23.d b/target/bpfel-unknown-unknown/release/deps/sha3-822a927a4a13ba23.d new file mode 100644 index 0000000..86c07d4 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/sha3-822a927a4a13ba23.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/sha3-822a927a4a13ba23.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/state.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libsha3-822a927a4a13ba23.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/state.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/sha3-822a927a4a13ba23.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/state.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha3-0.10.6/src/state.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/solana_frozen_abi-9d1ca6df5279755d.d b/target/bpfel-unknown-unknown/release/deps/solana_frozen_abi-9d1ca6df5279755d.d new file mode 100644 index 0000000..ff91b64 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/solana_frozen_abi-9d1ca6df5279755d.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/solana_frozen_abi-9d1ca6df5279755d.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_digester.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_example.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/hash.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libsolana_frozen_abi-9d1ca6df5279755d.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_digester.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_example.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/hash.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/solana_frozen_abi-9d1ca6df5279755d.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_digester.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_example.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/hash.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_digester.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/abi_example.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/src/hash.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.d b/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.d new file mode 100644 index 0000000..a5fb87f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.d @@ -0,0 +1,73 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.so: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/account_info.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/atomic_u64.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/blake3.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/borsh.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_deprecated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_upgradeable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/clock.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/debug_account_data.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/decode_error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/ed25519_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint_deprecated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/epoch_schedule.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/feature.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/fee_calculator.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/incinerator.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/keccak.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lamports.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_upgradeable_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/log.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/compiled_keys.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/legacy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/native_token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/current.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_memory.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_pack.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_stubs.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_utils.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/pubkey.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/rent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sanitize.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_recover.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/serialize_utils.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/short_vec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_hashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/config.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/clock.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/epoch_schedule.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/fees.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/instructions.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/recent_blockhashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rewards.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_hashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/stake_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/wasm/mod.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libsolana_program-858d1fa05c88e3b1.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/account_info.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/atomic_u64.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/blake3.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/borsh.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_deprecated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_upgradeable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/clock.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/debug_account_data.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/decode_error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/ed25519_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint_deprecated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/epoch_schedule.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/feature.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/fee_calculator.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/incinerator.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/keccak.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lamports.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_upgradeable_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/log.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/compiled_keys.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/legacy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/native_token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/current.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_memory.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_pack.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_stubs.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_utils.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/pubkey.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/rent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sanitize.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_recover.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/serialize_utils.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/short_vec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_hashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/config.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/clock.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/epoch_schedule.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/fees.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/instructions.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/recent_blockhashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rewards.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_hashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/stake_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/wasm/mod.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/account_info.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/atomic_u64.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/blake3.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/borsh.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_deprecated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_upgradeable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/clock.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/debug_account_data.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/decode_error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/ed25519_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint_deprecated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/epoch_schedule.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/feature.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/fee_calculator.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/incinerator.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/keccak.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lamports.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_upgradeable_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/log.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/compiled_keys.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/legacy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/native_token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/current.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_memory.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_option.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_pack.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_stubs.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_utils.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/pubkey.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/rent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sanitize.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_recover.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/serialize_utils.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/short_vec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_hashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/config.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/state.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_program.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/clock.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/epoch_schedule.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/fees.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/instructions.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/recent_blockhashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rewards.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_hashes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/stake_history.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/wasm/mod.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/account_info.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/atomic_u64.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/blake3.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/borsh.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_deprecated.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/bpf_loader_upgradeable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/clock.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/debug_account_data.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/decode_error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/ed25519_program.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/entrypoint_deprecated.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/epoch_schedule.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/feature.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/fee_calculator.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/hash.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/incinerator.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/keccak.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/lamports.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/loader_upgradeable_instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/log.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/compiled_keys.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/message/legacy.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/native_token.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/nonce/state/current.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_memory.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_option.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_pack.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_stubs.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/program_utils.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/pubkey.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/rent.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sanitize.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_program.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/secp256k1_recover.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/serialize_utils.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/short_vec.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_hashes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/slot_history.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/config.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake/state.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/stake_history.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/system_program.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/clock.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/epoch_schedule.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/fees.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/instructions.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/recent_blockhashes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rent.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/rewards.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_hashes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/slot_history.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/sysvar/stake_history.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/src/wasm/mod.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.so b/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.so new file mode 100755 index 0000000..7dfd516 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/solana_program-858d1fa05c88e3b1.so differ diff --git a/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.d b/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.d new file mode 100644 index 0000000..f36317f --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.d @@ -0,0 +1,12 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.so: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/entrypoint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/processor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/account.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libspl_associated_token_account-c7770ad4d488b65a.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/entrypoint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/processor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/account.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/entrypoint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/processor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/account.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/entrypoint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/processor.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-associated-token-account-1.0.5/src/tools/account.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.so b/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.so new file mode 100755 index 0000000..a990d9e Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/spl_associated_token_account-c7770ad4d488b65a.so differ diff --git a/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.d b/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.d new file mode 100644 index 0000000..de813f9 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.d @@ -0,0 +1,12 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.so: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/native_mint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/processor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/state.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libspl_token-7f59c828209568e6.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/native_mint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/processor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/state.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/native_mint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/processor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/state.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/native_mint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/processor.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/spl-token-3.3.1/src/state.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.so b/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.so new file mode 100755 index 0000000..ff3aba3 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/spl_token-7f59c828209568e6.so differ diff --git a/target/bpfel-unknown-unknown/release/deps/subtle-aa75b6308016e5c4.d b/target/bpfel-unknown-unknown/release/deps/subtle-aa75b6308016e5c4.d new file mode 100644 index 0000000..c8736b4 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/subtle-aa75b6308016e5c4.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/subtle-aa75b6308016e5c4.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libsubtle-aa75b6308016e5c4.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/subtle-aa75b6308016e5c4.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.d b/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.d new file mode 100644 index 0000000..1925e15 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.d @@ -0,0 +1,21 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.so: programs/superteam-dao-contract/src/lib.rs programs/superteam-dao-contract/src/schemas/mod.rs programs/superteam-dao-contract/src/schemas/proposal.rs programs/superteam-dao-contract/src/schemas/identifier.rs programs/superteam-dao-contract/src/instructions/mod.rs programs/superteam-dao-contract/src/instructions/proposal/mod.rs programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs programs/superteam-dao-contract/src/instructions/identifier/mod.rs programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs programs/superteam-dao-contract/src/constants.rs programs/superteam-dao-contract/src/error.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libsuperteam_dao_contract.rlib: programs/superteam-dao-contract/src/lib.rs programs/superteam-dao-contract/src/schemas/mod.rs programs/superteam-dao-contract/src/schemas/proposal.rs programs/superteam-dao-contract/src/schemas/identifier.rs programs/superteam-dao-contract/src/instructions/mod.rs programs/superteam-dao-contract/src/instructions/proposal/mod.rs programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs programs/superteam-dao-contract/src/instructions/identifier/mod.rs programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs programs/superteam-dao-contract/src/constants.rs programs/superteam-dao-contract/src/error.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.d: programs/superteam-dao-contract/src/lib.rs programs/superteam-dao-contract/src/schemas/mod.rs programs/superteam-dao-contract/src/schemas/proposal.rs programs/superteam-dao-contract/src/schemas/identifier.rs programs/superteam-dao-contract/src/instructions/mod.rs programs/superteam-dao-contract/src/instructions/proposal/mod.rs programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs programs/superteam-dao-contract/src/instructions/identifier/mod.rs programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs programs/superteam-dao-contract/src/constants.rs programs/superteam-dao-contract/src/error.rs + +programs/superteam-dao-contract/src/lib.rs: +programs/superteam-dao-contract/src/schemas/mod.rs: +programs/superteam-dao-contract/src/schemas/proposal.rs: +programs/superteam-dao-contract/src/schemas/identifier.rs: +programs/superteam-dao-contract/src/instructions/mod.rs: +programs/superteam-dao-contract/src/instructions/proposal/mod.rs: +programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs: +programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs: +programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs: +programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs: +programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs: +programs/superteam-dao-contract/src/instructions/identifier/mod.rs: +programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs: +programs/superteam-dao-contract/src/constants.rs: +programs/superteam-dao-contract/src/error.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.so b/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.so new file mode 100755 index 0000000..8e96a7a Binary files /dev/null and b/target/bpfel-unknown-unknown/release/deps/superteam_dao_contract.so differ diff --git a/target/bpfel-unknown-unknown/release/deps/thiserror-84dbbd50f34f741f.d b/target/bpfel-unknown-unknown/release/deps/thiserror-84dbbd50f34f741f.d new file mode 100644 index 0000000..817acb5 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/thiserror-84dbbd50f34f741f.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/thiserror-84dbbd50f34f741f.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libthiserror-84dbbd50f34f741f.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/thiserror-84dbbd50f34f741f.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs: diff --git a/target/bpfel-unknown-unknown/release/deps/typenum-346e054aad46714a.d b/target/bpfel-unknown-unknown/release/deps/typenum-346e054aad46714a.d new file mode 100644 index 0000000..455b756 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/deps/typenum-346e054aad46714a.d @@ -0,0 +1,20 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/typenum-346e054aad46714a.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/libtypenum-346e054aad46714a.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/deps/typenum-346e054aad46714a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs: +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs: +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs: + +# env-dep:TYPENUM_BUILD_CONSTS=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/consts.rs +# env-dep:TYPENUM_BUILD_OP=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/build/typenum-b99af96f1da2f1b7/out/op.rs diff --git a/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.d b/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.d new file mode 100644 index 0000000..fc8e00b --- /dev/null +++ b/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.d @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.rlib: /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/constants.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/error.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/identifier/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/lib.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/schemas/identifier.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/schemas/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/schemas/proposal.rs diff --git a/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.rlib b/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.rlib new file mode 100644 index 0000000..54a2554 Binary files /dev/null and b/target/bpfel-unknown-unknown/release/libsuperteam_dao_contract.rlib differ diff --git a/target/bpfel-unknown-unknown/release/superteam_dao_contract.d b/target/bpfel-unknown-unknown/release/superteam_dao_contract.d new file mode 100644 index 0000000..c4b4ca5 --- /dev/null +++ b/target/bpfel-unknown-unknown/release/superteam_dao_contract.d @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/bpfel-unknown-unknown/release/superteam_dao_contract.so: /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/constants.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/error.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/identifier/create_identifier.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/identifier/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/approve_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/cancel_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/close_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/create_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/instructions/proposal/reject_proposal.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/lib.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/schemas/identifier.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/schemas/mod.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/programs/superteam-dao-contract/src/schemas/proposal.rs diff --git a/target/bpfel-unknown-unknown/release/superteam_dao_contract.so b/target/bpfel-unknown-unknown/release/superteam_dao_contract.so new file mode 100755 index 0000000..8e96a7a Binary files /dev/null and b/target/bpfel-unknown-unknown/release/superteam_dao_contract.so differ diff --git a/target/deploy/superteam_dao_contract-keypair.json b/target/deploy/superteam_dao_contract-keypair.json new file mode 100644 index 0000000..979df33 --- /dev/null +++ b/target/deploy/superteam_dao_contract-keypair.json @@ -0,0 +1 @@ +[174,175,143,190,150,15,77,175,99,215,104,142,76,124,86,234,30,215,235,195,94,155,66,148,23,170,55,119,110,84,203,108,25,234,23,166,229,174,198,202,136,210,232,23,83,2,179,239,157,27,223,207,99,44,199,179,34,254,219,157,197,75,115,146] \ No newline at end of file diff --git a/target/deploy/superteam_dao_contract.so b/target/deploy/superteam_dao_contract.so new file mode 100755 index 0000000..adf258a Binary files /dev/null and b/target/deploy/superteam_dao_contract.so differ diff --git a/target/idl/superteam_dao_contract.json b/target/idl/superteam_dao_contract.json new file mode 100644 index 0000000..3a42183 --- /dev/null +++ b/target/idl/superteam_dao_contract.json @@ -0,0 +1,335 @@ +{ + "version": "0.1.0", + "name": "superteam_dao_contract", + "instructions": [ + { + "name": "createIdentifier", + "accounts": [ + { + "name": "identifier", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "rent", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "createProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "identifier", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "rent", + "isMut": false, + "isSigner": false + } + ], + "args": [ + { + "name": "recipient", + "type": "publicKey" + }, + { + "name": "image", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "subtitle", + "type": "string" + }, + { + "name": "spl", + "type": "publicKey" + }, + { + "name": "tags", + "type": "string" + }, + { + "name": "amount", + "type": "u64" + }, + { + "name": "isOwner", + "type": "bool" + } + ] + }, + { + "name": "cancelProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "rejectProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "recipient", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "approveProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "recipient", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "tokenProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [ + { + "name": "transactionHash", + "type": { + "option": "string" + } + } + ] + }, + { + "name": "closeProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + } + ], + "accounts": [ + { + "name": "Identifier", + "type": { + "kind": "struct", + "fields": [ + { + "name": "sender", + "type": "publicKey" + }, + { + "name": "count", + "type": "u64" + } + ] + } + }, + { + "name": "Proposal", + "type": { + "kind": "struct", + "fields": [ + { + "name": "recipient", + "type": "publicKey" + }, + { + "name": "sender", + "type": "publicKey" + }, + { + "name": "status", + "type": "u8" + }, + { + "name": "owner", + "type": "bool" + }, + { + "name": "spl", + "type": "publicKey" + }, + { + "name": "amount", + "type": "u64" + }, + { + "name": "tags", + "type": "string" + }, + { + "name": "transaction", + "type": { + "option": "string" + } + }, + { + "name": "image", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "subtitle", + "type": "string" + }, + { + "name": "identifier", + "type": "u64" + } + ] + } + } + ], + "errors": [ + { + "code": 6000, + "name": "SenderInvalidStateAccount", + "msg": "Invalid sender" + }, + { + "code": 6001, + "name": "RecipientInvalidStateAccount", + "msg": "Invalid recipient" + }, + { + "code": 6002, + "name": "NotEnoughLamport", + "msg": "Not enough lamport" + }, + { + "code": 6003, + "name": "NotEnoughSplToken", + "msg": "Not enough spl token" + }, + { + "code": 6004, + "name": "OwnerInvalidTokenAccount", + "msg": "Invalid owner associated token account" + }, + { + "code": 6005, + "name": "StatusPendingInvalid", + "msg": "proposal is not pending" + }, + { + "code": 6006, + "name": "OwnerInvalidAccount", + "msg": "Invalid owner account" + }, + { + "code": 6007, + "name": "InvalidAccount", + "msg": "Account is invalid" + }, + { + "code": 6008, + "name": "InvalidMintAccount", + "msg": "Mint Account is invalid" + }, + { + "code": 6009, + "name": "TagsTooLong", + "msg": "The provided tags should be 256 characters long maximum." + }, + { + "code": 6010, + "name": "TitleTooLong", + "msg": "The provided content should be 256 characters long maximum." + }, + { + "code": 6011, + "name": "SubtitleTooLong", + "msg": "The provided subtitle should be 256 characters long maximum." + }, + { + "code": 6012, + "name": "ImageTooLong", + "msg": "The provided image should be 256 characters long maximum." + } + ] +} \ No newline at end of file diff --git a/target/release/.cargo-lock b/target/release/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/target/release/.fingerprint/ahash-710fca02dce7d2d1/build-script-build-script-build b/target/release/.fingerprint/ahash-710fca02dce7d2d1/build-script-build-script-build new file mode 100644 index 0000000..fdf031e --- /dev/null +++ b/target/release/.fingerprint/ahash-710fca02dce7d2d1/build-script-build-script-build @@ -0,0 +1 @@ +da78af9700d9627e \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-710fca02dce7d2d1/build-script-build-script-build.json b/target/release/.fingerprint/ahash-710fca02dce7d2d1/build-script-build-script-build.json new file mode 100644 index 0000000..2af669c --- /dev/null +++ b/target/release/.fingerprint/ahash-710fca02dce7d2d1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":13294766831966498538,"profile":2698644804294220970,"path":6103280271520092536,"deps":[[16079472387499994964,"version_check",false,8644968372513083949]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ahash-710fca02dce7d2d1/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6548036084630991988,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-710fca02dce7d2d1/dep-build-script-build-script-build b/target/release/.fingerprint/ahash-710fca02dce7d2d1/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/ahash-710fca02dce7d2d1/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/ahash-710fca02dce7d2d1/invoked.timestamp b/target/release/.fingerprint/ahash-710fca02dce7d2d1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ahash-710fca02dce7d2d1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/dep-lib-aho_corasick b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/dep-lib-aho_corasick new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/dep-lib-aho_corasick differ diff --git a/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/invoked.timestamp b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/lib-aho_corasick b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/lib-aho_corasick new file mode 100644 index 0000000..6243612 --- /dev/null +++ b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/lib-aho_corasick @@ -0,0 +1 @@ +1f667e34478f4872 \ No newline at end of file diff --git a/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/lib-aho_corasick.json b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/lib-aho_corasick.json new file mode 100644 index 0000000..764cd0e --- /dev/null +++ b/target/release/.fingerprint/aho-corasick-7958e9041fa212b0/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":14517922388190571959,"profile":2698644804294220970,"path":15790398345149476726,"deps":[[6893260508610722743,"memchr",false,2835815707715300206]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/aho-corasick-7958e9041fa212b0/dep-lib-aho_corasick"}}],"rustflags":[],"metadata":13904389431191498124,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/dep-lib-anchor-attribute-access-control b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/dep-lib-anchor-attribute-access-control new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/dep-lib-anchor-attribute-access-control differ diff --git a/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/lib-anchor-attribute-access-control b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/lib-anchor-attribute-access-control new file mode 100644 index 0000000..cb3f9c1 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/lib-anchor-attribute-access-control @@ -0,0 +1 @@ +f321bb8c9778c31c \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/lib-anchor-attribute-access-control.json b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/lib-anchor-attribute-access-control.json new file mode 100644 index 0000000..314d3cf --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/lib-anchor-attribute-access-control.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":9476036608606258238,"profile":2698644804294220970,"path":4149758847879302797,"deps":[[526213229151865877,"regex",false,11908719487243610421],[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-access-control-59abe76c686c3a68/dep-lib-anchor-attribute-access-control"}}],"rustflags":[],"metadata":9812628891790910871,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/dep-lib-anchor-attribute-account b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/dep-lib-anchor-attribute-account new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/dep-lib-anchor-attribute-account differ diff --git a/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/lib-anchor-attribute-account b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/lib-anchor-attribute-account new file mode 100644 index 0000000..8164ad0 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/lib-anchor-attribute-account @@ -0,0 +1 @@ +a6e2ed32bf7f77c2 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/lib-anchor-attribute-account.json b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/lib-anchor-attribute-account.json new file mode 100644 index 0000000..234e5d7 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/lib-anchor-attribute-account.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":3816184813317248411,"profile":2698644804294220970,"path":16636780866230691916,"deps":[[2554073919744498126,"rustversion",false,7571017585521110827],[2711478123133662383,"bs58",false,3345653995429150920],[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-account-b694ef7c4987b21e/dep-lib-anchor-attribute-account"}}],"rustflags":[],"metadata":8657303332860448643,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/dep-lib-anchor-attribute-constant b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/dep-lib-anchor-attribute-constant new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/dep-lib-anchor-attribute-constant differ diff --git a/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/lib-anchor-attribute-constant b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/lib-anchor-attribute-constant new file mode 100644 index 0000000..b3eefcf --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/lib-anchor-attribute-constant @@ -0,0 +1 @@ +feb246c4df88f40a \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/lib-anchor-attribute-constant.json b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/lib-anchor-attribute-constant.json new file mode 100644 index 0000000..bda8059 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/lib-anchor-attribute-constant.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":12944453118493590917,"profile":2698644804294220970,"path":7611358995349546948,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-constant-129b38b98af01d02/dep-lib-anchor-attribute-constant"}}],"rustflags":[],"metadata":6295595450868924998,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/dep-lib-anchor-attribute-error b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/dep-lib-anchor-attribute-error new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/dep-lib-anchor-attribute-error differ diff --git a/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/lib-anchor-attribute-error b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/lib-anchor-attribute-error new file mode 100644 index 0000000..d5001d9 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/lib-anchor-attribute-error @@ -0,0 +1 @@ +a3f35f2c5b5481a9 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/lib-anchor-attribute-error.json b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/lib-anchor-attribute-error.json new file mode 100644 index 0000000..89e623e --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/lib-anchor-attribute-error.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2378347782149610048,"profile":2698644804294220970,"path":10972847920893018188,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-error-8a93a1bc31f9686c/dep-lib-anchor-attribute-error"}}],"rustflags":[],"metadata":17048354949252401105,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/dep-lib-anchor-attribute-event b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/dep-lib-anchor-attribute-event new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/dep-lib-anchor-attribute-event differ diff --git a/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/lib-anchor-attribute-event b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/lib-anchor-attribute-event new file mode 100644 index 0000000..4c4cb8c --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/lib-anchor-attribute-event @@ -0,0 +1 @@ +ac20096731a180f0 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/lib-anchor-attribute-event.json b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/lib-anchor-attribute-event.json new file mode 100644 index 0000000..7889806 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/lib-anchor-attribute-event.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":16250092613862545521,"profile":2698644804294220970,"path":16011600907176152454,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-event-f34b26d58c4ac1fc/dep-lib-anchor-attribute-event"}}],"rustflags":[],"metadata":17792735879457641733,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/dep-lib-anchor-attribute-interface b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/dep-lib-anchor-attribute-interface new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/dep-lib-anchor-attribute-interface differ diff --git a/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/lib-anchor-attribute-interface b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/lib-anchor-attribute-interface new file mode 100644 index 0000000..a5c2bd9 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/lib-anchor-attribute-interface @@ -0,0 +1 @@ +9e415be6aefe4cf5 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/lib-anchor-attribute-interface.json b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/lib-anchor-attribute-interface.json new file mode 100644 index 0000000..27e78eb --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-interface-426208417058e56a/lib-anchor-attribute-interface.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":13035159123071911463,"profile":2698644804294220970,"path":5527752024322690153,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823],[15616241866830646667,"heck",false,13949156398324380500]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-interface-426208417058e56a/dep-lib-anchor-attribute-interface"}}],"rustflags":[],"metadata":1999890250052817689,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/dep-lib-anchor-attribute-program b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/dep-lib-anchor-attribute-program new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/dep-lib-anchor-attribute-program differ diff --git a/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/lib-anchor-attribute-program b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/lib-anchor-attribute-program new file mode 100644 index 0000000..f9d9643 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/lib-anchor-attribute-program @@ -0,0 +1 @@ +3333442e281daed8 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/lib-anchor-attribute-program.json b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/lib-anchor-attribute-program.json new file mode 100644 index 0000000..004d47d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/lib-anchor-attribute-program.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":6831332968284798971,"profile":2698644804294220970,"path":8487652628412573975,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-program-5dd60ca9839ee802/dep-lib-anchor-attribute-program"}}],"rustflags":[],"metadata":12506724014345201119,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/dep-lib-anchor-attribute-state b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/dep-lib-anchor-attribute-state new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/dep-lib-anchor-attribute-state differ diff --git a/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/invoked.timestamp b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/lib-anchor-attribute-state b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/lib-anchor-attribute-state new file mode 100644 index 0000000..4bf6e41 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/lib-anchor-attribute-state @@ -0,0 +1 @@ +9180b74e47d3155d \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/lib-anchor-attribute-state.json b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/lib-anchor-attribute-state.json new file mode 100644 index 0000000..26a3139 --- /dev/null +++ b/target/release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/lib-anchor-attribute-state.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":6542976813704066672,"profile":2698644804294220970,"path":3231819869739671213,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-attribute-state-7bd4aeb7bf22a153/dep-lib-anchor-attribute-state"}}],"rustflags":[],"metadata":14477702355495676025,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/dep-lib-anchor-derive-accounts b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/dep-lib-anchor-derive-accounts new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/dep-lib-anchor-derive-accounts differ diff --git a/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/invoked.timestamp b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/lib-anchor-derive-accounts b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/lib-anchor-derive-accounts new file mode 100644 index 0000000..bb2e6bb --- /dev/null +++ b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/lib-anchor-derive-accounts @@ -0,0 +1 @@ +323eb64dd4305351 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/lib-anchor-derive-accounts.json b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/lib-anchor-derive-accounts.json new file mode 100644 index 0000000..01f71e0 --- /dev/null +++ b/target/release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/lib-anchor-derive-accounts.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"init-if-needed\"]","target":6937928174893909302,"profile":2698644804294220970,"path":8113042722605362928,"deps":[[4378652124036576003,"anchor_syn",false,10510140084941328343],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-derive-accounts-4dcabd6e4d7f968c/dep-lib-anchor-derive-accounts"}}],"rustflags":[],"metadata":12010660177934038907,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-syn-009a47885153c216/dep-lib-anchor-syn b/target/release/.fingerprint/anchor-syn-009a47885153c216/dep-lib-anchor-syn new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anchor-syn-009a47885153c216/dep-lib-anchor-syn differ diff --git a/target/release/.fingerprint/anchor-syn-009a47885153c216/invoked.timestamp b/target/release/.fingerprint/anchor-syn-009a47885153c216/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anchor-syn-009a47885153c216/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-syn-009a47885153c216/lib-anchor-syn b/target/release/.fingerprint/anchor-syn-009a47885153c216/lib-anchor-syn new file mode 100644 index 0000000..bac9cbc --- /dev/null +++ b/target/release/.fingerprint/anchor-syn-009a47885153c216/lib-anchor-syn @@ -0,0 +1 @@ +d78f85deb884db91 \ No newline at end of file diff --git a/target/release/.fingerprint/anchor-syn-009a47885153c216/lib-anchor-syn.json b/target/release/.fingerprint/anchor-syn-009a47885153c216/lib-anchor-syn.json new file mode 100644 index 0000000..35e0106 --- /dev/null +++ b/target/release/.fingerprint/anchor-syn-009a47885153c216/lib-anchor-syn.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"hash\", \"init-if-needed\"]","target":5760080264491375667,"profile":2698644804294220970,"path":7406622854375183359,"deps":[[288937492735761168,"sha2",false,9229851505060914385],[1585722525283672795,"serde_json",false,7225331916070838670],[2736741979806574180,"proc_macro2_diagnostics",false,5561298816380933834],[6147790641371885936,"thiserror",false,16323826290862810409],[8130906280923162645,"syn",false,17339425785294747277],[8720701649199282535,"bs58",false,3315582917753569657],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[12450087747051232596,"anyhow",false,3337665482864274823],[13445702510275822123,"serde",false,5464793018235895397],[15616241866830646667,"heck",false,13949156398324380500]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anchor-syn-009a47885153c216/dep-lib-anchor-syn"}}],"rustflags":[],"metadata":8352021010605790218,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-26ac233da58fde1d/run-build-script-build-script-build b/target/release/.fingerprint/anyhow-26ac233da58fde1d/run-build-script-build-script-build new file mode 100644 index 0000000..e409ca6 --- /dev/null +++ b/target/release/.fingerprint/anyhow-26ac233da58fde1d/run-build-script-build-script-build @@ -0,0 +1 @@ +e8dac4b9539cfa5d \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-26ac233da58fde1d/run-build-script-build-script-build.json b/target/release/.fingerprint/anyhow-26ac233da58fde1d/run-build-script-build-script-build.json new file mode 100644 index 0000000..5fab77a --- /dev/null +++ b/target/release/.fingerprint/anyhow-26ac233da58fde1d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[12450087747051232596,"build_script_build",false,2798486598764132877]],"local":[{"Precalculated":"1.0.68"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-863c47b469b68d0d/build-script-build-script-build b/target/release/.fingerprint/anyhow-863c47b469b68d0d/build-script-build-script-build new file mode 100644 index 0000000..bedc1a1 --- /dev/null +++ b/target/release/.fingerprint/anyhow-863c47b469b68d0d/build-script-build-script-build @@ -0,0 +1 @@ +0dfa060cbc38d626 \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-863c47b469b68d0d/build-script-build-script-build.json b/target/release/.fingerprint/anyhow-863c47b469b68d0d/build-script-build-script-build.json new file mode 100644 index 0000000..752050d --- /dev/null +++ b/target/release/.fingerprint/anyhow-863c47b469b68d0d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":13294766831966498538,"profile":2698644804294220970,"path":15502763826712869514,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anyhow-863c47b469b68d0d/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":17154292783084528516,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-863c47b469b68d0d/dep-build-script-build-script-build b/target/release/.fingerprint/anyhow-863c47b469b68d0d/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anyhow-863c47b469b68d0d/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/anyhow-863c47b469b68d0d/invoked.timestamp b/target/release/.fingerprint/anyhow-863c47b469b68d0d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anyhow-863c47b469b68d0d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/dep-lib-anyhow b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/dep-lib-anyhow new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/dep-lib-anyhow differ diff --git a/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/invoked.timestamp b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/lib-anyhow b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/lib-anyhow new file mode 100644 index 0000000..cbb0b6b --- /dev/null +++ b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/lib-anyhow @@ -0,0 +1 @@ +872d35ad12c5512e \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/lib-anyhow.json b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/lib-anyhow.json new file mode 100644 index 0000000..f7767ba --- /dev/null +++ b/target/release/.fingerprint/anyhow-bc16d99ef38b1e96/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":14329522133745486467,"profile":2698644804294220970,"path":146481354276870642,"deps":[[12450087747051232596,"build_script_build",false,6771896873117866728]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anyhow-bc16d99ef38b1e96/dep-lib-anyhow"}}],"rustflags":[],"metadata":17154292783084528516,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/dep-lib-autocfg b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/dep-lib-autocfg new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/dep-lib-autocfg differ diff --git a/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/invoked.timestamp b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/lib-autocfg b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/lib-autocfg new file mode 100644 index 0000000..7506a9c --- /dev/null +++ b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/lib-autocfg @@ -0,0 +1 @@ +3f95e7a7138c5f7b \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/lib-autocfg.json b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/lib-autocfg.json new file mode 100644 index 0000000..d68c3d0 --- /dev/null +++ b/target/release/.fingerprint/autocfg-9a6fb7153d9f0282/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":10236397793970852656,"profile":2698644804294220970,"path":8270261094691864503,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/autocfg-9a6fb7153d9f0282/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/build-script-build-script-build b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/build-script-build-script-build new file mode 100644 index 0000000..a1c9396 --- /dev/null +++ b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/build-script-build-script-build @@ -0,0 +1 @@ +d6c0d0dc652a6b15 \ No newline at end of file diff --git a/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/build-script-build-script-build.json b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/build-script-build-script-build.json new file mode 100644 index 0000000..017f6a5 --- /dev/null +++ b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"digest\", \"std\", \"traits-preview\"]","target":13294766831966498538,"profile":2698644804294220970,"path":10648482089661205186,"deps":[[8260795008238812391,"cc",false,8588174457388770181]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/blake3-3d813a4c35ffb9b3/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":15248861160739124439,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/dep-build-script-build-script-build b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/invoked.timestamp b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/blake3-3d813a4c35ffb9b3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/dep-lib-block-buffer b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/dep-lib-block-buffer new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/dep-lib-block-buffer differ diff --git a/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/invoked.timestamp b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/lib-block-buffer b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/lib-block-buffer new file mode 100644 index 0000000..87baa51 --- /dev/null +++ b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/lib-block-buffer @@ -0,0 +1 @@ +aec5f18db85b26b4 \ No newline at end of file diff --git a/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/lib-block-buffer.json b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/lib-block-buffer.json new file mode 100644 index 0000000..ab16f6e --- /dev/null +++ b/target/release/.fingerprint/block-buffer-cbbbf208d71ad7df/lib-block-buffer.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":597966434043285633,"profile":2698644804294220970,"path":16970795015187520349,"deps":[[10353982180171461258,"generic_array",false,2834668103152014307]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/block-buffer-cbbbf208d71ad7df/dep-lib-block-buffer"}}],"rustflags":[],"metadata":15558279325495868285,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-derive-670a0122fef363b3/dep-lib-borsh-derive b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/dep-lib-borsh-derive new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/dep-lib-borsh-derive differ diff --git a/target/release/.fingerprint/borsh-derive-670a0122fef363b3/invoked.timestamp b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-derive-670a0122fef363b3/lib-borsh-derive b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/lib-borsh-derive new file mode 100644 index 0000000..af8d18c --- /dev/null +++ b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/lib-borsh-derive @@ -0,0 +1 @@ +0baae9689e55941f \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-derive-670a0122fef363b3/lib-borsh-derive.json b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/lib-borsh-derive.json new file mode 100644 index 0000000..4eaa658 --- /dev/null +++ b/target/release/.fingerprint/borsh-derive-670a0122fef363b3/lib-borsh-derive.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":4089840889381527766,"profile":2698644804294220970,"path":4430927611697273289,"deps":[[2345288959107110519,"borsh_schema_derive_internal",false,2549459254845562842],[3971538142687143787,"proc_macro_crate",false,5156633943586506662],[8130906280923162645,"syn",false,17339425785294747277],[8324001644593655249,"borsh_derive_internal",false,1026233647948005722],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/borsh-derive-670a0122fef363b3/dep-lib-borsh-derive"}}],"rustflags":[],"metadata":6341613096556135379,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/dep-lib-borsh-derive-internal b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/dep-lib-borsh-derive-internal new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/dep-lib-borsh-derive-internal differ diff --git a/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/invoked.timestamp b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/lib-borsh-derive-internal b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/lib-borsh-derive-internal new file mode 100644 index 0000000..4a2f188 --- /dev/null +++ b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/lib-borsh-derive-internal @@ -0,0 +1 @@ +5a817eca10ea3d0e \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/lib-borsh-derive-internal.json b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/lib-borsh-derive-internal.json new file mode 100644 index 0000000..c88755a --- /dev/null +++ b/target/release/.fingerprint/borsh-derive-internal-075281021040ed04/lib-borsh-derive-internal.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":1036412639898795334,"profile":2698644804294220970,"path":16714377407846832886,"deps":[[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/borsh-derive-internal-075281021040ed04/dep-lib-borsh-derive-internal"}}],"rustflags":[],"metadata":6341613096556135379,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/dep-lib-borsh-schema-derive-internal b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/dep-lib-borsh-schema-derive-internal new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/dep-lib-borsh-schema-derive-internal differ diff --git a/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/invoked.timestamp b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/lib-borsh-schema-derive-internal b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/lib-borsh-schema-derive-internal new file mode 100644 index 0000000..12b3d55 --- /dev/null +++ b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/lib-borsh-schema-derive-internal @@ -0,0 +1 @@ +dadf6646af7f6123 \ No newline at end of file diff --git a/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/lib-borsh-schema-derive-internal.json b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/lib-borsh-schema-derive-internal.json new file mode 100644 index 0000000..00b8580 --- /dev/null +++ b/target/release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/lib-borsh-schema-derive-internal.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":5421563452239655410,"profile":2698644804294220970,"path":18289492011976407674,"deps":[[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/borsh-schema-derive-internal-62a5d81aa3a28765/dep-lib-borsh-schema-derive-internal"}}],"rustflags":[],"metadata":7685215035480038221,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bs58-0fcd4588ebddc92b/dep-lib-bs58 b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/dep-lib-bs58 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/dep-lib-bs58 differ diff --git a/target/release/.fingerprint/bs58-0fcd4588ebddc92b/invoked.timestamp b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/bs58-0fcd4588ebddc92b/lib-bs58 b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/lib-bs58 new file mode 100644 index 0000000..baeb18a --- /dev/null +++ b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/lib-bs58 @@ -0,0 +1 @@ +79010ed41851032e \ No newline at end of file diff --git a/target/release/.fingerprint/bs58-0fcd4588ebddc92b/lib-bs58.json b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/lib-bs58.json new file mode 100644 index 0000000..a264d14 --- /dev/null +++ b/target/release/.fingerprint/bs58-0fcd4588ebddc92b/lib-bs58.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"std\"]","target":4860711247261189145,"profile":2698644804294220970,"path":6033656037088949205,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bs58-0fcd4588ebddc92b/dep-lib-bs58"}}],"rustflags":[],"metadata":13637435404263704389,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bs58-5e5d44ea705026b6/dep-lib-bs58 b/target/release/.fingerprint/bs58-5e5d44ea705026b6/dep-lib-bs58 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/bs58-5e5d44ea705026b6/dep-lib-bs58 differ diff --git a/target/release/.fingerprint/bs58-5e5d44ea705026b6/invoked.timestamp b/target/release/.fingerprint/bs58-5e5d44ea705026b6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/bs58-5e5d44ea705026b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/bs58-5e5d44ea705026b6/lib-bs58 b/target/release/.fingerprint/bs58-5e5d44ea705026b6/lib-bs58 new file mode 100644 index 0000000..20bc36b --- /dev/null +++ b/target/release/.fingerprint/bs58-5e5d44ea705026b6/lib-bs58 @@ -0,0 +1 @@ +c8c0eb3295266e2e \ No newline at end of file diff --git a/target/release/.fingerprint/bs58-5e5d44ea705026b6/lib-bs58.json b/target/release/.fingerprint/bs58-5e5d44ea705026b6/lib-bs58.json new file mode 100644 index 0000000..18a26b0 --- /dev/null +++ b/target/release/.fingerprint/bs58-5e5d44ea705026b6/lib-bs58.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"std\"]","target":4860711247261189145,"profile":2698644804294220970,"path":5134708454509164649,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bs58-5e5d44ea705026b6/dep-lib-bs58"}}],"rustflags":[],"metadata":13637435404263704389,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bv-6fd80826cc4d47ed/build-script-build-script-build b/target/release/.fingerprint/bv-6fd80826cc4d47ed/build-script-build-script-build new file mode 100644 index 0000000..5947fbb --- /dev/null +++ b/target/release/.fingerprint/bv-6fd80826cc4d47ed/build-script-build-script-build @@ -0,0 +1 @@ +b9bb361c6aec8e3e \ No newline at end of file diff --git a/target/release/.fingerprint/bv-6fd80826cc4d47ed/build-script-build-script-build.json b/target/release/.fingerprint/bv-6fd80826cc4d47ed/build-script-build-script-build.json new file mode 100644 index 0000000..12f9715 --- /dev/null +++ b/target/release/.fingerprint/bv-6fd80826cc4d47ed/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"serde\"]","target":2709041430195671023,"profile":2698644804294220970,"path":17101766412984960459,"deps":[[4580306685267451917,"feature_probe",false,11227808825643249588]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bv-6fd80826cc4d47ed/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":251181567152240604,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bv-6fd80826cc4d47ed/dep-build-script-build-script-build b/target/release/.fingerprint/bv-6fd80826cc4d47ed/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/bv-6fd80826cc4d47ed/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/bv-6fd80826cc4d47ed/invoked.timestamp b/target/release/.fingerprint/bv-6fd80826cc4d47ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/bv-6fd80826cc4d47ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/dep-lib-bytemuck_derive b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/dep-lib-bytemuck_derive new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/dep-lib-bytemuck_derive differ diff --git a/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/invoked.timestamp b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/lib-bytemuck_derive b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/lib-bytemuck_derive new file mode 100644 index 0000000..f0a8bec --- /dev/null +++ b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/lib-bytemuck_derive @@ -0,0 +1 @@ +9901e0ae2cf69c03 \ No newline at end of file diff --git a/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/lib-bytemuck_derive.json b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/lib-bytemuck_derive.json new file mode 100644 index 0000000..ec1d277 --- /dev/null +++ b/target/release/.fingerprint/bytemuck_derive-26d266cfb3912447/lib-bytemuck_derive.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":4335912691437814211,"profile":2698644804294220970,"path":17711046416749237957,"deps":[[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bytemuck_derive-26d266cfb3912447/dep-lib-bytemuck_derive"}}],"rustflags":[],"metadata":2970056740063945670,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cc-a2ef55cb2b645885/dep-lib-cc b/target/release/.fingerprint/cc-a2ef55cb2b645885/dep-lib-cc new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/cc-a2ef55cb2b645885/dep-lib-cc differ diff --git a/target/release/.fingerprint/cc-a2ef55cb2b645885/invoked.timestamp b/target/release/.fingerprint/cc-a2ef55cb2b645885/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/cc-a2ef55cb2b645885/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cc-a2ef55cb2b645885/lib-cc b/target/release/.fingerprint/cc-a2ef55cb2b645885/lib-cc new file mode 100644 index 0000000..e594a01 --- /dev/null +++ b/target/release/.fingerprint/cc-a2ef55cb2b645885/lib-cc @@ -0,0 +1 @@ +85a3bdb92a532f77 \ No newline at end of file diff --git a/target/release/.fingerprint/cc-a2ef55cb2b645885/lib-cc.json b/target/release/.fingerprint/cc-a2ef55cb2b645885/lib-cc.json new file mode 100644 index 0000000..cfe1941 --- /dev/null +++ b/target/release/.fingerprint/cc-a2ef55cb2b645885/lib-cc.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2793076990717341772,"profile":2698644804294220970,"path":4305897767131287512,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cc-a2ef55cb2b645885/dep-lib-cc"}}],"rustflags":[],"metadata":5862599371499774553,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-c5795034f49ec124/dep-lib-cfg-if b/target/release/.fingerprint/cfg-if-c5795034f49ec124/dep-lib-cfg-if new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/cfg-if-c5795034f49ec124/dep-lib-cfg-if differ diff --git a/target/release/.fingerprint/cfg-if-c5795034f49ec124/invoked.timestamp b/target/release/.fingerprint/cfg-if-c5795034f49ec124/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/cfg-if-c5795034f49ec124/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-c5795034f49ec124/lib-cfg-if b/target/release/.fingerprint/cfg-if-c5795034f49ec124/lib-cfg-if new file mode 100644 index 0000000..258214e --- /dev/null +++ b/target/release/.fingerprint/cfg-if-c5795034f49ec124/lib-cfg-if @@ -0,0 +1 @@ +f11846242afe4c36 \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-c5795034f49ec124/lib-cfg-if.json b/target/release/.fingerprint/cfg-if-c5795034f49ec124/lib-cfg-if.json new file mode 100644 index 0000000..55786fe --- /dev/null +++ b/target/release/.fingerprint/cfg-if-c5795034f49ec124/lib-cfg-if.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":10094334937643343087,"profile":2698644804294220970,"path":6870778980281362900,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cfg-if-c5795034f49ec124/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/dep-lib-cpufeatures b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/dep-lib-cpufeatures new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/dep-lib-cpufeatures differ diff --git a/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/invoked.timestamp b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/lib-cpufeatures b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/lib-cpufeatures new file mode 100644 index 0000000..5c0d44f --- /dev/null +++ b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/lib-cpufeatures @@ -0,0 +1 @@ +d3b357c8255c0fcb \ No newline at end of file diff --git a/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/lib-cpufeatures.json b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/lib-cpufeatures.json new file mode 100644 index 0000000..d659f35 --- /dev/null +++ b/target/release/.fingerprint/cpufeatures-bc8d2691641a4531/lib-cpufeatures.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17099120278032617052,"profile":2698644804294220970,"path":10548366918749771270,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cpufeatures-bc8d2691641a4531/dep-lib-cpufeatures"}}],"rustflags":[],"metadata":5592991748584184974,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/digest-0b749fbe957f4bfc/dep-lib-digest b/target/release/.fingerprint/digest-0b749fbe957f4bfc/dep-lib-digest new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/digest-0b749fbe957f4bfc/dep-lib-digest differ diff --git a/target/release/.fingerprint/digest-0b749fbe957f4bfc/invoked.timestamp b/target/release/.fingerprint/digest-0b749fbe957f4bfc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/digest-0b749fbe957f4bfc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/digest-0b749fbe957f4bfc/lib-digest b/target/release/.fingerprint/digest-0b749fbe957f4bfc/lib-digest new file mode 100644 index 0000000..0cb625d --- /dev/null +++ b/target/release/.fingerprint/digest-0b749fbe957f4bfc/lib-digest @@ -0,0 +1 @@ +2190be67ea32ccd1 \ No newline at end of file diff --git a/target/release/.fingerprint/digest-0b749fbe957f4bfc/lib-digest.json b/target/release/.fingerprint/digest-0b749fbe957f4bfc/lib-digest.json new file mode 100644 index 0000000..113bdad --- /dev/null +++ b/target/release/.fingerprint/digest-0b749fbe957f4bfc/lib-digest.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"std\"]","target":5694707155508738902,"profile":2698644804294220970,"path":16722908823209669191,"deps":[[10353982180171461258,"generic_array",false,2834668103152014307]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/digest-0b749fbe957f4bfc/dep-lib-digest"}}],"rustflags":[],"metadata":5974257212182257802,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/dep-lib-feature-probe b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/dep-lib-feature-probe new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/dep-lib-feature-probe differ diff --git a/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/invoked.timestamp b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/lib-feature-probe b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/lib-feature-probe new file mode 100644 index 0000000..a7b6dd0 --- /dev/null +++ b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/lib-feature-probe @@ -0,0 +1 @@ +b42f76b2a330d19b \ No newline at end of file diff --git a/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/lib-feature-probe.json b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/lib-feature-probe.json new file mode 100644 index 0000000..1cd3948 --- /dev/null +++ b/target/release/.fingerprint/feature-probe-65d09f12b128dbb1/lib-feature-probe.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":887872274038730983,"profile":2698644804294220970,"path":10235520638590322355,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/feature-probe-65d09f12b128dbb1/dep-lib-feature-probe"}}],"rustflags":[],"metadata":10842935418023998640,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-745791626917055b/build-script-build-script-build b/target/release/.fingerprint/generic-array-745791626917055b/build-script-build-script-build new file mode 100644 index 0000000..8e7de85 --- /dev/null +++ b/target/release/.fingerprint/generic-array-745791626917055b/build-script-build-script-build @@ -0,0 +1 @@ +da2ad2e60f118111 \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-745791626917055b/build-script-build-script-build.json b/target/release/.fingerprint/generic-array-745791626917055b/build-script-build-script-build.json new file mode 100644 index 0000000..980264c --- /dev/null +++ b/target/release/.fingerprint/generic-array-745791626917055b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"more_lengths\", \"serde\"]","target":2709041430195671023,"profile":2698644804294220970,"path":17120328582590068083,"deps":[[16079472387499994964,"version_check",false,8644968372513083949]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/generic-array-745791626917055b/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3504643559825856545,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-745791626917055b/dep-build-script-build-script-build b/target/release/.fingerprint/generic-array-745791626917055b/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/generic-array-745791626917055b/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/generic-array-745791626917055b/invoked.timestamp b/target/release/.fingerprint/generic-array-745791626917055b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/generic-array-745791626917055b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-83267a747338f463/run-build-script-build-script-build b/target/release/.fingerprint/generic-array-83267a747338f463/run-build-script-build-script-build new file mode 100644 index 0000000..6fd4c03 --- /dev/null +++ b/target/release/.fingerprint/generic-array-83267a747338f463/run-build-script-build-script-build @@ -0,0 +1 @@ +f69fe147969b8a92 \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-83267a747338f463/run-build-script-build-script-build.json b/target/release/.fingerprint/generic-array-83267a747338f463/run-build-script-build-script-build.json new file mode 100644 index 0000000..6f64081 --- /dev/null +++ b/target/release/.fingerprint/generic-array-83267a747338f463/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[10353982180171461258,"build_script_build",false,1261308130635164378]],"local":[{"Precalculated":"0.14.6"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-d6535bdf682db935/dep-lib-generic_array b/target/release/.fingerprint/generic-array-d6535bdf682db935/dep-lib-generic_array new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/generic-array-d6535bdf682db935/dep-lib-generic_array differ diff --git a/target/release/.fingerprint/generic-array-d6535bdf682db935/invoked.timestamp b/target/release/.fingerprint/generic-array-d6535bdf682db935/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/generic-array-d6535bdf682db935/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-d6535bdf682db935/lib-generic_array b/target/release/.fingerprint/generic-array-d6535bdf682db935/lib-generic_array new file mode 100644 index 0000000..b390389 --- /dev/null +++ b/target/release/.fingerprint/generic-array-d6535bdf682db935/lib-generic_array @@ -0,0 +1 @@ +e39381009fc35627 \ No newline at end of file diff --git a/target/release/.fingerprint/generic-array-d6535bdf682db935/lib-generic_array.json b/target/release/.fingerprint/generic-array-d6535bdf682db935/lib-generic_array.json new file mode 100644 index 0000000..6febd03 --- /dev/null +++ b/target/release/.fingerprint/generic-array-d6535bdf682db935/lib-generic_array.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"more_lengths\", \"serde\"]","target":3609202219292840517,"profile":2698644804294220970,"path":624659049960085588,"deps":[[10353982180171461258,"build_script_build",false,10559423346076917750],[11395083745183091805,"typenum",false,2191775983433629675],[13445702510275822123,"serde",false,5464793018235895397]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/generic-array-d6535bdf682db935/dep-lib-generic_array"}}],"rustflags":[],"metadata":3504643559825856545,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/heck-4311f1f2467b5b12/dep-lib-heck b/target/release/.fingerprint/heck-4311f1f2467b5b12/dep-lib-heck new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/heck-4311f1f2467b5b12/dep-lib-heck differ diff --git a/target/release/.fingerprint/heck-4311f1f2467b5b12/invoked.timestamp b/target/release/.fingerprint/heck-4311f1f2467b5b12/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/heck-4311f1f2467b5b12/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/heck-4311f1f2467b5b12/lib-heck b/target/release/.fingerprint/heck-4311f1f2467b5b12/lib-heck new file mode 100644 index 0000000..0cde388 --- /dev/null +++ b/target/release/.fingerprint/heck-4311f1f2467b5b12/lib-heck @@ -0,0 +1 @@ +54f37da6d65b95c1 \ No newline at end of file diff --git a/target/release/.fingerprint/heck-4311f1f2467b5b12/lib-heck.json b/target/release/.fingerprint/heck-4311f1f2467b5b12/lib-heck.json new file mode 100644 index 0000000..395f730 --- /dev/null +++ b/target/release/.fingerprint/heck-4311f1f2467b5b12/lib-heck.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":13541735487965020728,"profile":2698644804294220970,"path":1533724660865511275,"deps":[[16064930540079387052,"unicode_segmentation",false,8683598767261632970]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/heck-4311f1f2467b5b12/dep-lib-heck"}}],"rustflags":[],"metadata":4968006677088137060,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-d836c9770fc496d9/dep-lib-itoa b/target/release/.fingerprint/itoa-d836c9770fc496d9/dep-lib-itoa new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/itoa-d836c9770fc496d9/dep-lib-itoa differ diff --git a/target/release/.fingerprint/itoa-d836c9770fc496d9/invoked.timestamp b/target/release/.fingerprint/itoa-d836c9770fc496d9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/itoa-d836c9770fc496d9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-d836c9770fc496d9/lib-itoa b/target/release/.fingerprint/itoa-d836c9770fc496d9/lib-itoa new file mode 100644 index 0000000..ee13546 --- /dev/null +++ b/target/release/.fingerprint/itoa-d836c9770fc496d9/lib-itoa @@ -0,0 +1 @@ +28dc2791ed1eab7e \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-d836c9770fc496d9/lib-itoa.json b/target/release/.fingerprint/itoa-d836c9770fc496d9/lib-itoa.json new file mode 100644 index 0000000..df1c0f1 --- /dev/null +++ b/target/release/.fingerprint/itoa-d836c9770fc496d9/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":16990797089513230490,"profile":2698644804294220970,"path":2795145767489738910,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/itoa-d836c9770fc496d9/dep-lib-itoa"}}],"rustflags":[],"metadata":851671291587502216,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/log-8b716de51fd30dbc/build-script-build-script-build b/target/release/.fingerprint/log-8b716de51fd30dbc/build-script-build-script-build new file mode 100644 index 0000000..3005b86 --- /dev/null +++ b/target/release/.fingerprint/log-8b716de51fd30dbc/build-script-build-script-build @@ -0,0 +1 @@ +71424e7d8cddbbbc \ No newline at end of file diff --git a/target/release/.fingerprint/log-8b716de51fd30dbc/build-script-build-script-build.json b/target/release/.fingerprint/log-8b716de51fd30dbc/build-script-build-script-build.json new file mode 100644 index 0000000..d3014f4 --- /dev/null +++ b/target/release/.fingerprint/log-8b716de51fd30dbc/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2709041430195671023,"profile":2698644804294220970,"path":8333742247673975349,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/log-8b716de51fd30dbc/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":179143468214550567,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/log-8b716de51fd30dbc/dep-build-script-build-script-build b/target/release/.fingerprint/log-8b716de51fd30dbc/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/log-8b716de51fd30dbc/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/log-8b716de51fd30dbc/invoked.timestamp b/target/release/.fingerprint/log-8b716de51fd30dbc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/log-8b716de51fd30dbc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-1fb1706e0edadfda/build-script-build-script-build b/target/release/.fingerprint/memchr-1fb1706e0edadfda/build-script-build-script-build new file mode 100644 index 0000000..8122ad9 --- /dev/null +++ b/target/release/.fingerprint/memchr-1fb1706e0edadfda/build-script-build-script-build @@ -0,0 +1 @@ +cd0ff2e8ca05300a \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-1fb1706e0edadfda/build-script-build-script-build.json b/target/release/.fingerprint/memchr-1fb1706e0edadfda/build-script-build-script-build.json new file mode 100644 index 0000000..6d65165 --- /dev/null +++ b/target/release/.fingerprint/memchr-1fb1706e0edadfda/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":13294766831966498538,"profile":2698644804294220970,"path":1386002425919184020,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-1fb1706e0edadfda/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-1fb1706e0edadfda/dep-build-script-build-script-build b/target/release/.fingerprint/memchr-1fb1706e0edadfda/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/memchr-1fb1706e0edadfda/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/memchr-1fb1706e0edadfda/invoked.timestamp b/target/release/.fingerprint/memchr-1fb1706e0edadfda/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/memchr-1fb1706e0edadfda/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-4606401308d6e743/run-build-script-build-script-build b/target/release/.fingerprint/memchr-4606401308d6e743/run-build-script-build-script-build new file mode 100644 index 0000000..042e6fe --- /dev/null +++ b/target/release/.fingerprint/memchr-4606401308d6e743/run-build-script-build-script-build @@ -0,0 +1 @@ +6c7156aa802dedeb \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-4606401308d6e743/run-build-script-build-script-build.json b/target/release/.fingerprint/memchr-4606401308d6e743/run-build-script-build-script-build.json new file mode 100644 index 0000000..520f647 --- /dev/null +++ b/target/release/.fingerprint/memchr-4606401308d6e743/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6893260508610722743,"build_script_build",false,734093108311101389]],"local":[{"Precalculated":"2.5.0"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-cd35f1a670d051f4/dep-lib-memchr b/target/release/.fingerprint/memchr-cd35f1a670d051f4/dep-lib-memchr new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/memchr-cd35f1a670d051f4/dep-lib-memchr differ diff --git a/target/release/.fingerprint/memchr-cd35f1a670d051f4/invoked.timestamp b/target/release/.fingerprint/memchr-cd35f1a670d051f4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/memchr-cd35f1a670d051f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-cd35f1a670d051f4/lib-memchr b/target/release/.fingerprint/memchr-cd35f1a670d051f4/lib-memchr new file mode 100644 index 0000000..9d8ecae --- /dev/null +++ b/target/release/.fingerprint/memchr-cd35f1a670d051f4/lib-memchr @@ -0,0 +1 @@ +6eebd7825cd75a27 \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-cd35f1a670d051f4/lib-memchr.json b/target/release/.fingerprint/memchr-cd35f1a670d051f4/lib-memchr.json new file mode 100644 index 0000000..e1f3793 --- /dev/null +++ b/target/release/.fingerprint/memchr-cd35f1a670d051f4/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":13381449118212650716,"profile":2698644804294220970,"path":4283924409254210263,"deps":[[6893260508610722743,"build_script_build",false,17000294199030346092]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-cd35f1a670d051f4/dep-lib-memchr"}}],"rustflags":[],"metadata":508135869874479790,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-derive-497212033ee422e3/dep-lib-num_derive b/target/release/.fingerprint/num-derive-497212033ee422e3/dep-lib-num_derive new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/num-derive-497212033ee422e3/dep-lib-num_derive differ diff --git a/target/release/.fingerprint/num-derive-497212033ee422e3/invoked.timestamp b/target/release/.fingerprint/num-derive-497212033ee422e3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/num-derive-497212033ee422e3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/num-derive-497212033ee422e3/lib-num_derive b/target/release/.fingerprint/num-derive-497212033ee422e3/lib-num_derive new file mode 100644 index 0000000..1876a7a --- /dev/null +++ b/target/release/.fingerprint/num-derive-497212033ee422e3/lib-num_derive @@ -0,0 +1 @@ +dc776119ad35ac58 \ No newline at end of file diff --git a/target/release/.fingerprint/num-derive-497212033ee422e3/lib-num_derive.json b/target/release/.fingerprint/num-derive-497212033ee422e3/lib-num_derive.json new file mode 100644 index 0000000..609a4b1 --- /dev/null +++ b/target/release/.fingerprint/num-derive-497212033ee422e3/lib-num_derive.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":6410241908632009416,"profile":2698644804294220970,"path":10752231263508296838,"deps":[[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-derive-497212033ee422e3/dep-lib-num_derive"}}],"rustflags":[],"metadata":14173553705232782339,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-62a2785d40c2760b/build-script-build-script-build b/target/release/.fingerprint/num-traits-62a2785d40c2760b/build-script-build-script-build new file mode 100644 index 0000000..503efb5 --- /dev/null +++ b/target/release/.fingerprint/num-traits-62a2785d40c2760b/build-script-build-script-build @@ -0,0 +1 @@ +90f83e52da141403 \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-62a2785d40c2760b/build-script-build-script-build.json b/target/release/.fingerprint/num-traits-62a2785d40c2760b/build-script-build-script-build.json new file mode 100644 index 0000000..855e812 --- /dev/null +++ b/target/release/.fingerprint/num-traits-62a2785d40c2760b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":2709041430195671023,"profile":2698644804294220970,"path":10591028877005991069,"deps":[[14832468857926148571,"autocfg",false,8889978205501887807]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-traits-62a2785d40c2760b/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14621636500951049976,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-62a2785d40c2760b/dep-build-script-build-script-build b/target/release/.fingerprint/num-traits-62a2785d40c2760b/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/num-traits-62a2785d40c2760b/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/num-traits-62a2785d40c2760b/invoked.timestamp b/target/release/.fingerprint/num-traits-62a2785d40c2760b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/num-traits-62a2785d40c2760b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/dep-lib-num_enum_derive b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/dep-lib-num_enum_derive new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/dep-lib-num_enum_derive differ diff --git a/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/invoked.timestamp b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/lib-num_enum_derive b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/lib-num_enum_derive new file mode 100644 index 0000000..61b9a52 --- /dev/null +++ b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/lib-num_enum_derive @@ -0,0 +1 @@ +954935154bc01b3a \ No newline at end of file diff --git a/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/lib-num_enum_derive.json b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/lib-num_enum_derive.json new file mode 100644 index 0000000..720687e --- /dev/null +++ b/target/release/.fingerprint/num_enum_derive-114009b5e51fdfb9/lib-num_enum_derive.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"proc-macro-crate\", \"std\"]","target":5435110768261741233,"profile":2698644804294220970,"path":13252342842816409026,"deps":[[284704373943991055,"proc_macro_crate",false,12783171416364843423],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num_enum_derive-114009b5e51fdfb9/dep-lib-num_enum_derive"}}],"rustflags":[],"metadata":18091788674843497664,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-ef188906390509ee/dep-lib-once_cell b/target/release/.fingerprint/once_cell-ef188906390509ee/dep-lib-once_cell new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/once_cell-ef188906390509ee/dep-lib-once_cell differ diff --git a/target/release/.fingerprint/once_cell-ef188906390509ee/invoked.timestamp b/target/release/.fingerprint/once_cell-ef188906390509ee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/once_cell-ef188906390509ee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-ef188906390509ee/lib-once_cell b/target/release/.fingerprint/once_cell-ef188906390509ee/lib-once_cell new file mode 100644 index 0000000..9ead7fd --- /dev/null +++ b/target/release/.fingerprint/once_cell-ef188906390509ee/lib-once_cell @@ -0,0 +1 @@ +8028b9e29d37a011 \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-ef188906390509ee/lib-once_cell.json b/target/release/.fingerprint/once_cell-ef188906390509ee/lib-once_cell.json new file mode 100644 index 0000000..855506a --- /dev/null +++ b/target/release/.fingerprint/once_cell-ef188906390509ee/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","target":17253442120831005152,"profile":2698644804294220970,"path":8683663568980172843,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/once_cell-ef188906390509ee/dep-lib-once_cell"}}],"rustflags":[],"metadata":14177539708254521827,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/dep-lib-opaque-debug b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/dep-lib-opaque-debug new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/dep-lib-opaque-debug differ diff --git a/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/invoked.timestamp b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/lib-opaque-debug b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/lib-opaque-debug new file mode 100644 index 0000000..1b44401 --- /dev/null +++ b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/lib-opaque-debug @@ -0,0 +1 @@ +ec7a09cd2c6a0324 \ No newline at end of file diff --git a/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/lib-opaque-debug.json b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/lib-opaque-debug.json new file mode 100644 index 0000000..124271b --- /dev/null +++ b/target/release/.fingerprint/opaque-debug-899fbd895b8153ac/lib-opaque-debug.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":66469288574863249,"profile":2698644804294220970,"path":3035658156993124975,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/opaque-debug-899fbd895b8153ac/dep-lib-opaque-debug"}}],"rustflags":[],"metadata":8060500437326165382,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/dep-lib-proc-macro-crate b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/dep-lib-proc-macro-crate new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/dep-lib-proc-macro-crate differ diff --git a/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/invoked.timestamp b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/lib-proc-macro-crate b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/lib-proc-macro-crate new file mode 100644 index 0000000..cb17579 --- /dev/null +++ b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/lib-proc-macro-crate @@ -0,0 +1 @@ +9f815acfacf266b1 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/lib-proc-macro-crate.json b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/lib-proc-macro-crate.json new file mode 100644 index 0000000..159d0d3 --- /dev/null +++ b/target/release/.fingerprint/proc-macro-crate-445c3e7ca258deac/lib-proc-macro-crate.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":10488202467561598967,"profile":2698644804294220970,"path":12385809324375824886,"deps":[[5429148392333926843,"once_cell",false,1270076246171658368],[6147790641371885936,"thiserror",false,16323826290862810409],[11981321232644391659,"toml",false,13884373266559976035]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro-crate-445c3e7ca258deac/dep-lib-proc-macro-crate"}}],"rustflags":[],"metadata":4875023412952309093,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/dep-lib-proc-macro-crate b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/dep-lib-proc-macro-crate new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/dep-lib-proc-macro-crate differ diff --git a/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/invoked.timestamp b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/lib-proc-macro-crate b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/lib-proc-macro-crate new file mode 100644 index 0000000..2085d95 --- /dev/null +++ b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/lib-proc-macro-crate @@ -0,0 +1 @@ +a607322c400b9047 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/lib-proc-macro-crate.json b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/lib-proc-macro-crate.json new file mode 100644 index 0000000..84a1856 --- /dev/null +++ b/target/release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/lib-proc-macro-crate.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":10488202467561598967,"profile":2698644804294220970,"path":4541523355475585380,"deps":[[11981321232644391659,"toml",false,13884373266559976035]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro-crate-8aa7dcd4d8248eab/dep-lib-proc-macro-crate"}}],"rustflags":[],"metadata":4875023412952309093,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-34817cd73d43694f/dep-lib-proc-macro2 b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/dep-lib-proc-macro2 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/dep-lib-proc-macro2 differ diff --git a/target/release/.fingerprint/proc-macro2-34817cd73d43694f/invoked.timestamp b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-34817cd73d43694f/lib-proc-macro2 b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/lib-proc-macro2 new file mode 100644 index 0000000..6be4d14 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/lib-proc-macro2 @@ -0,0 +1 @@ +4279e6638ab3457a \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-34817cd73d43694f/lib-proc-macro2.json b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/lib-proc-macro2.json new file mode 100644 index 0000000..7c2ba6d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-34817cd73d43694f/lib-proc-macro2.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"proc-macro\", \"span-locations\"]","target":14344298002436322672,"profile":2698644804294220970,"path":648671717153656633,"deps":[[12118559350662167820,"build_script_build",false,14093948029268650785],[17115388670021564403,"unicode_ident",false,8560334656239239311]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-34817cd73d43694f/dep-lib-proc-macro2"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-9480f5820ca77f71/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-9480f5820ca77f71/run-build-script-build-script-build new file mode 100644 index 0000000..89173d1 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-9480f5820ca77f71/run-build-script-build-script-build @@ -0,0 +1 @@ +21eb5f470fc397c3 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-9480f5820ca77f71/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-9480f5820ca77f71/run-build-script-build-script-build.json new file mode 100644 index 0000000..f28bedf --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-9480f5820ca77f71/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[12118559350662167820,"build_script_build",false,1989997572543103139]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-9480f5820ca77f71/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/build-script-build-script-build b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/build-script-build-script-build new file mode 100644 index 0000000..32afd93 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/build-script-build-script-build @@ -0,0 +1 @@ +a34052af3fe49d1b \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/build-script-build-script-build.json new file mode 100644 index 0000000..5c4bf7e --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"proc-macro\", \"span-locations\"]","target":13294766831966498538,"profile":2698644804294220970,"path":1893207948912182770,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-bc997ea213af9d98/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/invoked.timestamp b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-bc997ea213af9d98/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-99e2f63d05afe315/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-diagnostics-99e2f63d05afe315/run-build-script-build-script-build new file mode 100644 index 0000000..89b7bdc --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-99e2f63d05afe315/run-build-script-build-script-build @@ -0,0 +1 @@ +71f3e84f5dfb2407 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-99e2f63d05afe315/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-diagnostics-99e2f63d05afe315/run-build-script-build-script-build.json new file mode 100644 index 0000000..9d4720f --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-99e2f63d05afe315/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[2736741979806574180,"build_script_build",false,10519488103351004802]],"local":[{"Precalculated":"0.9.1"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build-script-build b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build-script-build new file mode 100644 index 0000000..ee85cbb --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build-script-build @@ -0,0 +1 @@ +822e2f03b2bafc91 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build-script-build.json new file mode 100644 index 0000000..b703ecc --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"colors\", \"default\", \"yansi\"]","target":13294766831966498538,"profile":2698644804294220970,"path":3757701912533990412,"deps":[[16079472387499994964,"version_check",false,8644968372513083949]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":9485047575456101210,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/invoked.timestamp b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-c4e1ad88154d7654/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/dep-lib-proc-macro2-diagnostics b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/dep-lib-proc-macro2-diagnostics new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/dep-lib-proc-macro2-diagnostics differ diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/invoked.timestamp b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/lib-proc-macro2-diagnostics b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/lib-proc-macro2-diagnostics new file mode 100644 index 0000000..0132bf8 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/lib-proc-macro2-diagnostics @@ -0,0 +1 @@ +ca962ff8ceb32d4d \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/lib-proc-macro2-diagnostics.json b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/lib-proc-macro2-diagnostics.json new file mode 100644 index 0000000..3992bf7 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/lib-proc-macro2-diagnostics.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"colors\", \"default\", \"yansi\"]","target":16385589510380612128,"profile":2698644804294220970,"path":5562009406455574519,"deps":[[2736741979806574180,"build_script_build",false,514812635618276209],[3005653328507117291,"yansi",false,6689395668052488003],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-diagnostics-fbdfb128f129157a/dep-lib-proc-macro2-diagnostics"}}],"rustflags":[],"metadata":9485047575456101210,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-0080f4ad4c2e9aec/run-build-script-build-script-build b/target/release/.fingerprint/quote-0080f4ad4c2e9aec/run-build-script-build-script-build new file mode 100644 index 0000000..576927a --- /dev/null +++ b/target/release/.fingerprint/quote-0080f4ad4c2e9aec/run-build-script-build-script-build @@ -0,0 +1 @@ +5252a5e617233fd9 \ No newline at end of file diff --git a/target/release/.fingerprint/quote-0080f4ad4c2e9aec/run-build-script-build-script-build.json b/target/release/.fingerprint/quote-0080f4ad4c2e9aec/run-build-script-build-script-build.json new file mode 100644 index 0000000..1aa025f --- /dev/null +++ b/target/release/.fingerprint/quote-0080f4ad4c2e9aec/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[10324120111978938251,"build_script_build",false,16860514611166082685]],"local":[{"RerunIfChanged":{"output":"release/build/quote-0080f4ad4c2e9aec/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-d07f8260b626bf69/dep-lib-quote b/target/release/.fingerprint/quote-d07f8260b626bf69/dep-lib-quote new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/quote-d07f8260b626bf69/dep-lib-quote differ diff --git a/target/release/.fingerprint/quote-d07f8260b626bf69/invoked.timestamp b/target/release/.fingerprint/quote-d07f8260b626bf69/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/quote-d07f8260b626bf69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/quote-d07f8260b626bf69/lib-quote b/target/release/.fingerprint/quote-d07f8260b626bf69/lib-quote new file mode 100644 index 0000000..78426c5 --- /dev/null +++ b/target/release/.fingerprint/quote-d07f8260b626bf69/lib-quote @@ -0,0 +1 @@ +d7fb47a9d6d44818 \ No newline at end of file diff --git a/target/release/.fingerprint/quote-d07f8260b626bf69/lib-quote.json b/target/release/.fingerprint/quote-d07f8260b626bf69/lib-quote.json new file mode 100644 index 0000000..396cd72 --- /dev/null +++ b/target/release/.fingerprint/quote-d07f8260b626bf69/lib-quote.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"proc-macro\"]","target":4606197195311606630,"profile":2698644804294220970,"path":17433269579399778254,"deps":[[10324120111978938251,"build_script_build",false,15654269415323947602],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-d07f8260b626bf69/dep-lib-quote"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-d4535616a3127920/build-script-build-script-build b/target/release/.fingerprint/quote-d4535616a3127920/build-script-build-script-build new file mode 100644 index 0000000..00bccc8 --- /dev/null +++ b/target/release/.fingerprint/quote-d4535616a3127920/build-script-build-script-build @@ -0,0 +1 @@ +7d76d640b594fce9 \ No newline at end of file diff --git a/target/release/.fingerprint/quote-d4535616a3127920/build-script-build-script-build.json b/target/release/.fingerprint/quote-d4535616a3127920/build-script-build-script-build.json new file mode 100644 index 0000000..d926c2b --- /dev/null +++ b/target/release/.fingerprint/quote-d4535616a3127920/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"proc-macro\"]","target":13294766831966498538,"profile":2698644804294220970,"path":4641168843543308344,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-d4535616a3127920/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-d4535616a3127920/dep-build-script-build-script-build b/target/release/.fingerprint/quote-d4535616a3127920/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/quote-d4535616a3127920/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/quote-d4535616a3127920/invoked.timestamp b/target/release/.fingerprint/quote-d4535616a3127920/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/quote-d4535616a3127920/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-397ca5f7ff57d01d/dep-lib-regex b/target/release/.fingerprint/regex-397ca5f7ff57d01d/dep-lib-regex new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/regex-397ca5f7ff57d01d/dep-lib-regex differ diff --git a/target/release/.fingerprint/regex-397ca5f7ff57d01d/invoked.timestamp b/target/release/.fingerprint/regex-397ca5f7ff57d01d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-397ca5f7ff57d01d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-397ca5f7ff57d01d/lib-regex b/target/release/.fingerprint/regex-397ca5f7ff57d01d/lib-regex new file mode 100644 index 0000000..f390b12 --- /dev/null +++ b/target/release/.fingerprint/regex-397ca5f7ff57d01d/lib-regex @@ -0,0 +1 @@ +3569ed4e474544a5 \ No newline at end of file diff --git a/target/release/.fingerprint/regex-397ca5f7ff57d01d/lib-regex.json b/target/release/.fingerprint/regex-397ca5f7ff57d01d/lib-regex.json new file mode 100644 index 0000000..eeed63c --- /dev/null +++ b/target/release/.fingerprint/regex-397ca5f7ff57d01d/lib-regex.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"aho-corasick\", \"default\", \"memchr\", \"perf\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":4736542816701795503,"profile":2698644804294220970,"path":552167105097802373,"deps":[[6893260508610722743,"memchr",false,2835815707715300206],[12543691494136014506,"regex_syntax",false,18219892175967177882],[14504140178752226106,"aho_corasick",false,8234989454633100831]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-397ca5f7ff57d01d/dep-lib-regex"}}],"rustflags":[],"metadata":1738036602712356696,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/dep-lib-regex-syntax b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/dep-lib-regex-syntax new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/dep-lib-regex-syntax differ diff --git a/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/invoked.timestamp b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/lib-regex-syntax b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/lib-regex-syntax new file mode 100644 index 0000000..88aec97 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/lib-regex-syntax @@ -0,0 +1 @@ +9a4c71a2660fdafc \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/lib-regex-syntax.json b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/lib-regex-syntax.json new file mode 100644 index 0000000..faa79b1 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-d29b704d8b2ef535/lib-regex-syntax.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":835887887889934832,"profile":2698644804294220970,"path":2134386019229632977,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-syntax-d29b704d8b2ef535/dep-lib-regex-syntax"}}],"rustflags":[],"metadata":14049147179425589550,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rustc_version-5aada85b829e4525/dep-lib-rustc_version b/target/release/.fingerprint/rustc_version-5aada85b829e4525/dep-lib-rustc_version new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/rustc_version-5aada85b829e4525/dep-lib-rustc_version differ diff --git a/target/release/.fingerprint/rustc_version-5aada85b829e4525/invoked.timestamp b/target/release/.fingerprint/rustc_version-5aada85b829e4525/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rustc_version-5aada85b829e4525/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rustc_version-5aada85b829e4525/lib-rustc_version b/target/release/.fingerprint/rustc_version-5aada85b829e4525/lib-rustc_version new file mode 100644 index 0000000..aa2dabf --- /dev/null +++ b/target/release/.fingerprint/rustc_version-5aada85b829e4525/lib-rustc_version @@ -0,0 +1 @@ +05222da27889b002 \ No newline at end of file diff --git a/target/release/.fingerprint/rustc_version-5aada85b829e4525/lib-rustc_version.json b/target/release/.fingerprint/rustc_version-5aada85b829e4525/lib-rustc_version.json new file mode 100644 index 0000000..485a843 --- /dev/null +++ b/target/release/.fingerprint/rustc_version-5aada85b829e4525/lib-rustc_version.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":5110674710257308944,"profile":2698644804294220970,"path":1748519157385814916,"deps":[[15496137450075788226,"semver",false,2650559218806826451]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rustc_version-5aada85b829e4525/dep-lib-rustc_version"}}],"rustflags":[],"metadata":7564085008422021590,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-6b831d303c4ef650/build-script-build-script-build b/target/release/.fingerprint/rustversion-6b831d303c4ef650/build-script-build-script-build new file mode 100644 index 0000000..6e44d95 --- /dev/null +++ b/target/release/.fingerprint/rustversion-6b831d303c4ef650/build-script-build-script-build @@ -0,0 +1 @@ +e0288b9ae178cf57 \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-6b831d303c4ef650/build-script-build-script-build.json b/target/release/.fingerprint/rustversion-6b831d303c4ef650/build-script-build-script-build.json new file mode 100644 index 0000000..24834ff --- /dev/null +++ b/target/release/.fingerprint/rustversion-6b831d303c4ef650/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":13294766831966498538,"profile":2698644804294220970,"path":1675741813493998857,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rustversion-6b831d303c4ef650/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":11946384680894284015,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-6b831d303c4ef650/dep-build-script-build-script-build b/target/release/.fingerprint/rustversion-6b831d303c4ef650/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/rustversion-6b831d303c4ef650/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/rustversion-6b831d303c4ef650/invoked.timestamp b/target/release/.fingerprint/rustversion-6b831d303c4ef650/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rustversion-6b831d303c4ef650/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-6e839728fc312b72/dep-lib-rustversion b/target/release/.fingerprint/rustversion-6e839728fc312b72/dep-lib-rustversion new file mode 100644 index 0000000..6c82b1c Binary files /dev/null and b/target/release/.fingerprint/rustversion-6e839728fc312b72/dep-lib-rustversion differ diff --git a/target/release/.fingerprint/rustversion-6e839728fc312b72/invoked.timestamp b/target/release/.fingerprint/rustversion-6e839728fc312b72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rustversion-6e839728fc312b72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-6e839728fc312b72/lib-rustversion b/target/release/.fingerprint/rustversion-6e839728fc312b72/lib-rustversion new file mode 100644 index 0000000..1026b2e --- /dev/null +++ b/target/release/.fingerprint/rustversion-6e839728fc312b72/lib-rustversion @@ -0,0 +1 @@ +2baf388d61a81169 \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-6e839728fc312b72/lib-rustversion.json b/target/release/.fingerprint/rustversion-6e839728fc312b72/lib-rustversion.json new file mode 100644 index 0000000..597d56e --- /dev/null +++ b/target/release/.fingerprint/rustversion-6e839728fc312b72/lib-rustversion.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":11151850059634677484,"profile":2698644804294220970,"path":13327657546510483251,"deps":[[2554073919744498126,"build_script_build",false,6012969543186569943]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rustversion-6e839728fc312b72/dep-lib-rustversion"}}],"rustflags":[],"metadata":11946384680894284015,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-f2fc1659aa1e8592/run-build-script-build-script-build b/target/release/.fingerprint/rustversion-f2fc1659aa1e8592/run-build-script-build-script-build new file mode 100644 index 0000000..cd4b99d --- /dev/null +++ b/target/release/.fingerprint/rustversion-f2fc1659aa1e8592/run-build-script-build-script-build @@ -0,0 +1 @@ +d7dae002f15b7253 \ No newline at end of file diff --git a/target/release/.fingerprint/rustversion-f2fc1659aa1e8592/run-build-script-build-script-build.json b/target/release/.fingerprint/rustversion-f2fc1659aa1e8592/run-build-script-build-script-build.json new file mode 100644 index 0000000..74417ac --- /dev/null +++ b/target/release/.fingerprint/rustversion-f2fc1659aa1e8592/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[2554073919744498126,"build_script_build",false,6327408911834622176]],"local":[{"RerunIfChanged":{"output":"release/build/rustversion-f2fc1659aa1e8592/output","paths":["build/build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-90cbcb62a44f9381/dep-lib-ryu b/target/release/.fingerprint/ryu-90cbcb62a44f9381/dep-lib-ryu new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/ryu-90cbcb62a44f9381/dep-lib-ryu differ diff --git a/target/release/.fingerprint/ryu-90cbcb62a44f9381/invoked.timestamp b/target/release/.fingerprint/ryu-90cbcb62a44f9381/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ryu-90cbcb62a44f9381/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-90cbcb62a44f9381/lib-ryu b/target/release/.fingerprint/ryu-90cbcb62a44f9381/lib-ryu new file mode 100644 index 0000000..35ac24d --- /dev/null +++ b/target/release/.fingerprint/ryu-90cbcb62a44f9381/lib-ryu @@ -0,0 +1 @@ +8327050a65e0bf41 \ No newline at end of file diff --git a/target/release/.fingerprint/ryu-90cbcb62a44f9381/lib-ryu.json b/target/release/.fingerprint/ryu-90cbcb62a44f9381/lib-ryu.json new file mode 100644 index 0000000..1598ca1 --- /dev/null +++ b/target/release/.fingerprint/ryu-90cbcb62a44f9381/lib-ryu.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":8261881835615490997,"profile":2698644804294220970,"path":6039456186598588429,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ryu-90cbcb62a44f9381/dep-lib-ryu"}}],"rustflags":[],"metadata":10387617312689919117,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/semver-2f99c2ef04faf533/dep-lib-semver b/target/release/.fingerprint/semver-2f99c2ef04faf533/dep-lib-semver new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/semver-2f99c2ef04faf533/dep-lib-semver differ diff --git a/target/release/.fingerprint/semver-2f99c2ef04faf533/invoked.timestamp b/target/release/.fingerprint/semver-2f99c2ef04faf533/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/semver-2f99c2ef04faf533/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/semver-2f99c2ef04faf533/lib-semver b/target/release/.fingerprint/semver-2f99c2ef04faf533/lib-semver new file mode 100644 index 0000000..9797726 --- /dev/null +++ b/target/release/.fingerprint/semver-2f99c2ef04faf533/lib-semver @@ -0,0 +1 @@ +d3251ef590adc824 \ No newline at end of file diff --git a/target/release/.fingerprint/semver-2f99c2ef04faf533/lib-semver.json b/target/release/.fingerprint/semver-2f99c2ef04faf533/lib-semver.json new file mode 100644 index 0000000..6841606 --- /dev/null +++ b/target/release/.fingerprint/semver-2f99c2ef04faf533/lib-semver.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":10319295318272530936,"profile":2698644804294220970,"path":4547080817729187551,"deps":[[15496137450075788226,"build_script_build",false,10471221514221476444]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/semver-2f99c2ef04faf533/dep-lib-semver"}}],"rustflags":[],"metadata":7480721012031345649,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/semver-83d73ed35885275b/build-script-build-script-build b/target/release/.fingerprint/semver-83d73ed35885275b/build-script-build-script-build new file mode 100644 index 0000000..fcfc921 --- /dev/null +++ b/target/release/.fingerprint/semver-83d73ed35885275b/build-script-build-script-build @@ -0,0 +1 @@ +f02fb48c02c1027e \ No newline at end of file diff --git a/target/release/.fingerprint/semver-83d73ed35885275b/build-script-build-script-build.json b/target/release/.fingerprint/semver-83d73ed35885275b/build-script-build-script-build.json new file mode 100644 index 0000000..c3ec936 --- /dev/null +++ b/target/release/.fingerprint/semver-83d73ed35885275b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":13294766831966498538,"profile":2698644804294220970,"path":8359810868506322472,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/semver-83d73ed35885275b/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":7480721012031345649,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/semver-83d73ed35885275b/dep-build-script-build-script-build b/target/release/.fingerprint/semver-83d73ed35885275b/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/semver-83d73ed35885275b/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/semver-83d73ed35885275b/invoked.timestamp b/target/release/.fingerprint/semver-83d73ed35885275b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/semver-83d73ed35885275b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/semver-bad9b61aec8cb0e8/run-build-script-build-script-build b/target/release/.fingerprint/semver-bad9b61aec8cb0e8/run-build-script-build-script-build new file mode 100644 index 0000000..61176d2 --- /dev/null +++ b/target/release/.fingerprint/semver-bad9b61aec8cb0e8/run-build-script-build-script-build @@ -0,0 +1 @@ +5c5a99ff7c405191 \ No newline at end of file diff --git a/target/release/.fingerprint/semver-bad9b61aec8cb0e8/run-build-script-build-script-build.json b/target/release/.fingerprint/semver-bad9b61aec8cb0e8/run-build-script-build-script-build.json new file mode 100644 index 0000000..fe293a6 --- /dev/null +++ b/target/release/.fingerprint/semver-bad9b61aec8cb0e8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[15496137450075788226,"build_script_build",false,9080032015427055600]],"local":[{"RerunIfChanged":{"output":"release/build/semver-bad9b61aec8cb0e8/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-53d656633d0011a8/build-script-build-script-build b/target/release/.fingerprint/serde-53d656633d0011a8/build-script-build-script-build new file mode 100644 index 0000000..f2b1903 --- /dev/null +++ b/target/release/.fingerprint/serde-53d656633d0011a8/build-script-build-script-build @@ -0,0 +1 @@ +83bba25eb0e73154 \ No newline at end of file diff --git a/target/release/.fingerprint/serde-53d656633d0011a8/build-script-build-script-build.json b/target/release/.fingerprint/serde-53d656633d0011a8/build-script-build-script-build.json new file mode 100644 index 0000000..efe62aa --- /dev/null +++ b/target/release/.fingerprint/serde-53d656633d0011a8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","target":2709041430195671023,"profile":2698644804294220970,"path":1879036211535653245,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-53d656633d0011a8/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-53d656633d0011a8/dep-build-script-build-script-build b/target/release/.fingerprint/serde-53d656633d0011a8/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/serde-53d656633d0011a8/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/serde-53d656633d0011a8/invoked.timestamp b/target/release/.fingerprint/serde-53d656633d0011a8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde-53d656633d0011a8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde-5a78c73fc46eb43e/run-build-script-build-script-build b/target/release/.fingerprint/serde-5a78c73fc46eb43e/run-build-script-build-script-build new file mode 100644 index 0000000..91c7d04 --- /dev/null +++ b/target/release/.fingerprint/serde-5a78c73fc46eb43e/run-build-script-build-script-build @@ -0,0 +1 @@ +792380e8fbe67c8f \ No newline at end of file diff --git a/target/release/.fingerprint/serde-5a78c73fc46eb43e/run-build-script-build-script-build.json b/target/release/.fingerprint/serde-5a78c73fc46eb43e/run-build-script-build-script-build.json new file mode 100644 index 0000000..5f71d7b --- /dev/null +++ b/target/release/.fingerprint/serde-5a78c73fc46eb43e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[13445702510275822123,"build_script_build",false,6066884917732752259]],"local":[{"RerunIfChanged":{"output":"release/build/serde-5a78c73fc46eb43e/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-f15e66f08e5186fb/dep-lib-serde b/target/release/.fingerprint/serde-f15e66f08e5186fb/dep-lib-serde new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/serde-f15e66f08e5186fb/dep-lib-serde differ diff --git a/target/release/.fingerprint/serde-f15e66f08e5186fb/invoked.timestamp b/target/release/.fingerprint/serde-f15e66f08e5186fb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde-f15e66f08e5186fb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde-f15e66f08e5186fb/lib-serde b/target/release/.fingerprint/serde-f15e66f08e5186fb/lib-serde new file mode 100644 index 0000000..0ef697a --- /dev/null +++ b/target/release/.fingerprint/serde-f15e66f08e5186fb/lib-serde @@ -0,0 +1 @@ +653efcde4bd8d64b \ No newline at end of file diff --git a/target/release/.fingerprint/serde-f15e66f08e5186fb/lib-serde.json b/target/release/.fingerprint/serde-f15e66f08e5186fb/lib-serde.json new file mode 100644 index 0000000..dd4cebf --- /dev/null +++ b/target/release/.fingerprint/serde-f15e66f08e5186fb/lib-serde.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","target":15771919462364234457,"profile":2698644804294220970,"path":9240072271348121403,"deps":[[4600690152067640602,"serde_derive",false,18115644426655460525],[13445702510275822123,"build_script_build",false,10339392814147707769]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-f15e66f08e5186fb/dep-lib-serde"}}],"rustflags":[],"metadata":3767376778934503013,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-544c86bdadc691fc/run-build-script-build-script-build b/target/release/.fingerprint/serde_derive-544c86bdadc691fc/run-build-script-build-script-build new file mode 100644 index 0000000..70eb6d6 --- /dev/null +++ b/target/release/.fingerprint/serde_derive-544c86bdadc691fc/run-build-script-build-script-build @@ -0,0 +1 @@ +e0c51404f18b5396 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-544c86bdadc691fc/run-build-script-build-script-build.json b/target/release/.fingerprint/serde_derive-544c86bdadc691fc/run-build-script-build-script-build.json new file mode 100644 index 0000000..2044422 --- /dev/null +++ b/target/release/.fingerprint/serde_derive-544c86bdadc691fc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[4600690152067640602,"build_script_build",false,14774259553865518707]],"local":[{"RerunIfChanged":{"output":"release/build/serde_derive-544c86bdadc691fc/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-926ebfa801d42d40/dep-lib-serde_derive b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/dep-lib-serde_derive new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/dep-lib-serde_derive differ diff --git a/target/release/.fingerprint/serde_derive-926ebfa801d42d40/invoked.timestamp b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-926ebfa801d42d40/lib-serde_derive b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/lib-serde_derive new file mode 100644 index 0000000..bce6ca1 --- /dev/null +++ b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/lib-serde_derive @@ -0,0 +1 @@ +ad6c1510a0b267fb \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-926ebfa801d42d40/lib-serde_derive.json b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/lib-serde_derive.json new file mode 100644 index 0000000..d52e55e --- /dev/null +++ b/target/release/.fingerprint/serde_derive-926ebfa801d42d40/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\"]","target":17963269895377715704,"profile":2698644804294220970,"path":16287553574341403805,"deps":[[4600690152067640602,"build_script_build",false,10832155396028024288],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_derive-926ebfa801d42d40/dep-lib-serde_derive"}}],"rustflags":[],"metadata":14452199383429553764,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/build-script-build-script-build b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/build-script-build-script-build new file mode 100644 index 0000000..942e460 --- /dev/null +++ b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/build-script-build-script-build @@ -0,0 +1 @@ +734e936fc9b608cd \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/build-script-build-script-build.json b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/build-script-build-script-build.json new file mode 100644 index 0000000..731aaab --- /dev/null +++ b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\"]","target":2709041430195671023,"profile":2698644804294220970,"path":8705044937907297793,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_derive-be50b56b6fe4d0de/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14452199383429553764,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/dep-build-script-build-script-build b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/invoked.timestamp b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_derive-be50b56b6fe4d0de/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-424cb467b8e47e3e/run-build-script-build-script-build b/target/release/.fingerprint/serde_json-424cb467b8e47e3e/run-build-script-build-script-build new file mode 100644 index 0000000..8dd42f3 --- /dev/null +++ b/target/release/.fingerprint/serde_json-424cb467b8e47e3e/run-build-script-build-script-build @@ -0,0 +1 @@ +c86d8efb2c7ff3f2 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-424cb467b8e47e3e/run-build-script-build-script-build.json b/target/release/.fingerprint/serde_json-424cb467b8e47e3e/run-build-script-build-script-build.json new file mode 100644 index 0000000..09df90b --- /dev/null +++ b/target/release/.fingerprint/serde_json-424cb467b8e47e3e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[1585722525283672795,"build_script_build",false,12115896206643683649]],"local":[{"RerunIfChanged":{"output":"release/build/serde_json-424cb467b8e47e3e/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-53bd47283ff43d67/dep-lib-serde_json b/target/release/.fingerprint/serde_json-53bd47283ff43d67/dep-lib-serde_json new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/serde_json-53bd47283ff43d67/dep-lib-serde_json differ diff --git a/target/release/.fingerprint/serde_json-53bd47283ff43d67/invoked.timestamp b/target/release/.fingerprint/serde_json-53bd47283ff43d67/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_json-53bd47283ff43d67/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-53bd47283ff43d67/lib-serde_json b/target/release/.fingerprint/serde_json-53bd47283ff43d67/lib-serde_json new file mode 100644 index 0000000..391d8c1 --- /dev/null +++ b/target/release/.fingerprint/serde_json-53bd47283ff43d67/lib-serde_json @@ -0,0 +1 @@ +8ee1b1a118894564 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-53bd47283ff43d67/lib-serde_json.json b/target/release/.fingerprint/serde_json-53bd47283ff43d67/lib-serde_json.json new file mode 100644 index 0000000..0855c1e --- /dev/null +++ b/target/release/.fingerprint/serde_json-53bd47283ff43d67/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":2475719121998694108,"profile":2698644804294220970,"path":12497141452699749670,"deps":[[1585722525283672795,"build_script_build",false,17506476007694953928],[2765627075624309923,"itoa",false,9127423075487833128],[13445702510275822123,"serde",false,5464793018235895397],[15576837897107666781,"ryu",false,4737752057581479811]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-53bd47283ff43d67/dep-lib-serde_json"}}],"rustflags":[],"metadata":16261601059619201932,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/build-script-build-script-build b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/build-script-build-script-build new file mode 100644 index 0000000..245da0d --- /dev/null +++ b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/build-script-build-script-build @@ -0,0 +1 @@ +41e17f3c684f24a8 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/build-script-build-script-build.json b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/build-script-build-script-build.json new file mode 100644 index 0000000..9ed0bb4 --- /dev/null +++ b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":13294766831966498538,"profile":2698644804294220970,"path":6166312403995102650,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-8bf9085c7b429f6f/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":16261601059619201932,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/dep-build-script-build-script-build b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/invoked.timestamp b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_json-8bf9085c7b429f6f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/dep-lib-sha2 b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/dep-lib-sha2 new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/dep-lib-sha2 differ diff --git a/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/invoked.timestamp b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/lib-sha2 b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/lib-sha2 new file mode 100644 index 0000000..246bdcb --- /dev/null +++ b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/lib-sha2 @@ -0,0 +1 @@ +d1a4c2c00a051780 \ No newline at end of file diff --git a/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/lib-sha2.json b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/lib-sha2.json new file mode 100644 index 0000000..e972401 --- /dev/null +++ b/target/release/.fingerprint/sha2-6dbe6e1ccab5c877/lib-sha2.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":18376301184193729913,"profile":2698644804294220970,"path":7828530417259582662,"deps":[[2452538001284770427,"cfg_if",false,3912781633228773617],[2718001092876974103,"cpufeatures",false,14632015031694767059],[5380073082773161146,"block_buffer",false,12981163824155575726],[6014497622236959678,"opaque_debug",false,2595034550946593516],[12829070662860118430,"digest",false,15117514031520190497]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/sha2-6dbe6e1ccab5c877/dep-lib-sha2"}}],"rustflags":[],"metadata":13125521705435454745,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/build-script-build-script-build b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/build-script-build-script-build new file mode 100644 index 0000000..946087a --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/build-script-build-script-build @@ -0,0 +1 @@ +85c651f878291e1a \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/build-script-build-script-build.json b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/build-script-build-script-build.json new file mode 100644 index 0000000..97d8e41 --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":1559088092588622537,"profile":2698644804294220970,"path":2911684999771072774,"deps":[[7246516264653013740,"rustc_version",false,193805935186878981]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/solana-frozen-abi-0112d6309cc25151/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":10761554926887348739,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/dep-build-script-build-script-build b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/invoked.timestamp b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-0112d6309cc25151/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/dep-lib-solana-frozen-abi-macro b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/dep-lib-solana-frozen-abi-macro new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/dep-lib-solana-frozen-abi-macro differ diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/invoked.timestamp b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/lib-solana-frozen-abi-macro b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/lib-solana-frozen-abi-macro new file mode 100644 index 0000000..5b2b310 --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/lib-solana-frozen-abi-macro @@ -0,0 +1 @@ +f67ecb8fd9cb08f2 \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/lib-solana-frozen-abi-macro.json b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/lib-solana-frozen-abi-macro.json new file mode 100644 index 0000000..94ff419 --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/lib-solana-frozen-abi-macro.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2813793597152353054,"profile":2698644804294220970,"path":11544429993459627638,"deps":[[6289230257329224020,"build_script_build",false,13997423833242644427],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/solana-frozen-abi-macro-2310b0b1266f5cff/dep-lib-solana-frozen-abi-macro"}}],"rustflags":[],"metadata":16048375851674354037,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/build-script-build-script-build b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/build-script-build-script-build new file mode 100644 index 0000000..3c35644 --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/build-script-build-script-build @@ -0,0 +1 @@ +05e89fb55412ce77 \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/build-script-build-script-build.json b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/build-script-build-script-build.json new file mode 100644 index 0000000..e07c48c --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":1559088092588622537,"profile":2698644804294220970,"path":1111468745266134939,"deps":[[7246516264653013740,"rustc_version",false,193805935186878981]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":16048375851674354037,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/dep-build-script-build-script-build b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/invoked.timestamp b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-269bbda04972c123/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-4589c63b6c648760/run-build-script-build-script-build b/target/release/.fingerprint/solana-frozen-abi-macro-4589c63b6c648760/run-build-script-build-script-build new file mode 100644 index 0000000..eb68a23 --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-4589c63b6c648760/run-build-script-build-script-build @@ -0,0 +1 @@ +cbaf0397d0d640c2 \ No newline at end of file diff --git a/target/release/.fingerprint/solana-frozen-abi-macro-4589c63b6c648760/run-build-script-build-script-build.json b/target/release/.fingerprint/solana-frozen-abi-macro-4589c63b6c648760/run-build-script-build-script-build.json new file mode 100644 index 0000000..ee0118f --- /dev/null +++ b/target/release/.fingerprint/solana-frozen-abi-macro-4589c63b6c648760/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6289230257329224020,"build_script_build",false,8632857690749528069]],"local":[{"Precalculated":"1.10.41"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/solana-program-91d0e87f63a93348/build-script-build-script-build b/target/release/.fingerprint/solana-program-91d0e87f63a93348/build-script-build-script-build new file mode 100644 index 0000000..95812de --- /dev/null +++ b/target/release/.fingerprint/solana-program-91d0e87f63a93348/build-script-build-script-build @@ -0,0 +1 @@ +ee4c90fabbb55ff3 \ No newline at end of file diff --git a/target/release/.fingerprint/solana-program-91d0e87f63a93348/build-script-build-script-build.json b/target/release/.fingerprint/solana-program-91d0e87f63a93348/build-script-build-script-build.json new file mode 100644 index 0000000..09d6ef2 --- /dev/null +++ b/target/release/.fingerprint/solana-program-91d0e87f63a93348/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":1559088092588622537,"profile":2698644804294220970,"path":5196740340160696999,"deps":[[7246516264653013740,"rustc_version",false,193805935186878981]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/solana-program-91d0e87f63a93348/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6823008017891525108,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/solana-program-91d0e87f63a93348/dep-build-script-build-script-build b/target/release/.fingerprint/solana-program-91d0e87f63a93348/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/solana-program-91d0e87f63a93348/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/solana-program-91d0e87f63a93348/invoked.timestamp b/target/release/.fingerprint/solana-program-91d0e87f63a93348/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/solana-program-91d0e87f63a93348/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/dep-lib-solana-sdk-macro b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/dep-lib-solana-sdk-macro new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/dep-lib-solana-sdk-macro differ diff --git a/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/invoked.timestamp b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/lib-solana-sdk-macro b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/lib-solana-sdk-macro new file mode 100644 index 0000000..922fded --- /dev/null +++ b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/lib-solana-sdk-macro @@ -0,0 +1 @@ +46518567140ec868 \ No newline at end of file diff --git a/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/lib-solana-sdk-macro.json b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/lib-solana-sdk-macro.json new file mode 100644 index 0000000..9d6a90b --- /dev/null +++ b/target/release/.fingerprint/solana-sdk-macro-3989af0256a09b89/lib-solana-sdk-macro.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17595464795391769742,"profile":2698644804294220970,"path":3341900194349449112,"deps":[[2554073919744498126,"rustversion",false,7571017585521110827],[2711478123133662383,"bs58",false,3345653995429150920],[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/solana-sdk-macro-3989af0256a09b89/dep-lib-solana-sdk-macro"}}],"rustflags":[],"metadata":14916664788917006959,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-0ee9571ac1ded5fb/dep-lib-syn b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/dep-lib-syn new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/dep-lib-syn differ diff --git a/target/release/.fingerprint/syn-0ee9571ac1ded5fb/invoked.timestamp b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/syn-0ee9571ac1ded5fb/lib-syn b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/lib-syn new file mode 100644 index 0000000..8da6eeb --- /dev/null +++ b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/lib-syn @@ -0,0 +1 @@ +8df6bd2de203a2f0 \ No newline at end of file diff --git a/target/release/.fingerprint/syn-0ee9571ac1ded5fb/lib-syn.json b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/lib-syn.json new file mode 100644 index 0000000..10daf5a --- /dev/null +++ b/target/release/.fingerprint/syn-0ee9571ac1ded5fb/lib-syn.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\", \"visit\"]","target":12020202395954228905,"profile":2698644804294220970,"path":4818022304330028100,"deps":[[8130906280923162645,"build_script_build",false,1974329187515323177],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914],[17115388670021564403,"unicode_ident",false,8560334656239239311]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-0ee9571ac1ded5fb/dep-lib-syn"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-dc3203afdc09cbaf/run-build-script-build-script-build b/target/release/.fingerprint/syn-dc3203afdc09cbaf/run-build-script-build-script-build new file mode 100644 index 0000000..ba77278 --- /dev/null +++ b/target/release/.fingerprint/syn-dc3203afdc09cbaf/run-build-script-build-script-build @@ -0,0 +1 @@ +29538983ef39661b \ No newline at end of file diff --git a/target/release/.fingerprint/syn-dc3203afdc09cbaf/run-build-script-build-script-build.json b/target/release/.fingerprint/syn-dc3203afdc09cbaf/run-build-script-build-script-build.json new file mode 100644 index 0000000..91e4ff8 --- /dev/null +++ b/target/release/.fingerprint/syn-dc3203afdc09cbaf/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[8130906280923162645,"build_script_build",false,13553604706361195091]],"local":[{"Precalculated":"1.0.107"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-e2ecbf571d0fba19/build-script-build-script-build b/target/release/.fingerprint/syn-e2ecbf571d0fba19/build-script-build-script-build new file mode 100644 index 0000000..1108bf9 --- /dev/null +++ b/target/release/.fingerprint/syn-e2ecbf571d0fba19/build-script-build-script-build @@ -0,0 +1 @@ +53bab89cab1318bc \ No newline at end of file diff --git a/target/release/.fingerprint/syn-e2ecbf571d0fba19/build-script-build-script-build.json b/target/release/.fingerprint/syn-e2ecbf571d0fba19/build-script-build-script-build.json new file mode 100644 index 0000000..2bc25ca --- /dev/null +++ b/target/release/.fingerprint/syn-e2ecbf571d0fba19/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\", \"visit\"]","target":13294766831966498538,"profile":2698644804294220970,"path":10018297777481454865,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-e2ecbf571d0fba19/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6886477143387768027,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-e2ecbf571d0fba19/dep-build-script-build-script-build b/target/release/.fingerprint/syn-e2ecbf571d0fba19/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/syn-e2ecbf571d0fba19/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/syn-e2ecbf571d0fba19/invoked.timestamp b/target/release/.fingerprint/syn-e2ecbf571d0fba19/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/syn-e2ecbf571d0fba19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-0fc5b4ceb54be2c1/run-build-script-build-script-build b/target/release/.fingerprint/thiserror-0fc5b4ceb54be2c1/run-build-script-build-script-build new file mode 100644 index 0000000..b96bb5e --- /dev/null +++ b/target/release/.fingerprint/thiserror-0fc5b4ceb54be2c1/run-build-script-build-script-build @@ -0,0 +1 @@ +79e6b03907d1f5e7 \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-0fc5b4ceb54be2c1/run-build-script-build-script-build.json b/target/release/.fingerprint/thiserror-0fc5b4ceb54be2c1/run-build-script-build-script-build.json new file mode 100644 index 0000000..87b6401 --- /dev/null +++ b/target/release/.fingerprint/thiserror-0fc5b4ceb54be2c1/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6147790641371885936,"build_script_build",false,15756917513616186128]],"local":[{"Precalculated":"1.0.38"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/dep-lib-thiserror b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/dep-lib-thiserror new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/dep-lib-thiserror differ diff --git a/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/invoked.timestamp b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/lib-thiserror b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/lib-thiserror new file mode 100644 index 0000000..9465308 --- /dev/null +++ b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/lib-thiserror @@ -0,0 +1 @@ +29650f3286e189e2 \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/lib-thiserror.json b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/lib-thiserror.json new file mode 100644 index 0000000..4c8ab1b --- /dev/null +++ b/target/release/.fingerprint/thiserror-13cc2d2a640f0e23/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17224392688990046903,"profile":2698644804294220970,"path":17683627663954712738,"deps":[[3399379307741746710,"thiserror_impl",false,1715317386111368123],[6147790641371885936,"build_script_build",false,16714495421018334841]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thiserror-13cc2d2a640f0e23/dep-lib-thiserror"}}],"rustflags":[],"metadata":11722078131081488174,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/build-script-build-script-build b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/build-script-build-script-build new file mode 100644 index 0000000..34b908a --- /dev/null +++ b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/build-script-build-script-build @@ -0,0 +1 @@ +105b39b2fed0abda \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/build-script-build-script-build.json b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/build-script-build-script-build.json new file mode 100644 index 0000000..917aabb --- /dev/null +++ b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":13294766831966498538,"profile":2698644804294220970,"path":127422435787124290,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thiserror-e1e9a5d4ce50b575/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":11722078131081488174,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/dep-build-script-build-script-build b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/dep-build-script-build-script-build new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/invoked.timestamp b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/thiserror-e1e9a5d4ce50b575/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-impl-9353bc8762229810/dep-lib-thiserror-impl b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/dep-lib-thiserror-impl new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/dep-lib-thiserror-impl differ diff --git a/target/release/.fingerprint/thiserror-impl-9353bc8762229810/invoked.timestamp b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-impl-9353bc8762229810/lib-thiserror-impl b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/lib-thiserror-impl new file mode 100644 index 0000000..ba03723 --- /dev/null +++ b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/lib-thiserror-impl @@ -0,0 +1 @@ +bb3b38141308ce17 \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-impl-9353bc8762229810/lib-thiserror-impl.json b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/lib-thiserror-impl.json new file mode 100644 index 0000000..947a34f --- /dev/null +++ b/target/release/.fingerprint/thiserror-impl-9353bc8762229810/lib-thiserror-impl.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":10035154045347681472,"profile":2698644804294220970,"path":2711497782261969642,"deps":[[8130906280923162645,"syn",false,17339425785294747277],[10324120111978938251,"quote",false,1749882473661594583],[12118559350662167820,"proc_macro2",false,8810645652983150914]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thiserror-impl-9353bc8762229810/dep-lib-thiserror-impl"}}],"rustflags":[],"metadata":14048383283908260854,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/toml-e2a863d5f35b0585/dep-lib-toml b/target/release/.fingerprint/toml-e2a863d5f35b0585/dep-lib-toml new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/toml-e2a863d5f35b0585/dep-lib-toml differ diff --git a/target/release/.fingerprint/toml-e2a863d5f35b0585/invoked.timestamp b/target/release/.fingerprint/toml-e2a863d5f35b0585/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/toml-e2a863d5f35b0585/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/toml-e2a863d5f35b0585/lib-toml b/target/release/.fingerprint/toml-e2a863d5f35b0585/lib-toml new file mode 100644 index 0000000..6c5535b --- /dev/null +++ b/target/release/.fingerprint/toml-e2a863d5f35b0585/lib-toml @@ -0,0 +1 @@ +63c23c62ec33afc0 \ No newline at end of file diff --git a/target/release/.fingerprint/toml-e2a863d5f35b0585/lib-toml.json b/target/release/.fingerprint/toml-e2a863d5f35b0585/lib-toml.json new file mode 100644 index 0000000..8e429e5 --- /dev/null +++ b/target/release/.fingerprint/toml-e2a863d5f35b0585/lib-toml.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[\"default\"]","target":13462643144348829615,"profile":2698644804294220970,"path":9055574062994861349,"deps":[[13445702510275822123,"serde",false,5464793018235895397]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/toml-e2a863d5f35b0585/dep-lib-toml"}}],"rustflags":[],"metadata":13437692833141290973,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-0747cbf612ca4418/dep-lib-typenum b/target/release/.fingerprint/typenum-0747cbf612ca4418/dep-lib-typenum new file mode 100644 index 0000000..b44011d Binary files /dev/null and b/target/release/.fingerprint/typenum-0747cbf612ca4418/dep-lib-typenum differ diff --git a/target/release/.fingerprint/typenum-0747cbf612ca4418/invoked.timestamp b/target/release/.fingerprint/typenum-0747cbf612ca4418/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/typenum-0747cbf612ca4418/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-0747cbf612ca4418/lib-typenum b/target/release/.fingerprint/typenum-0747cbf612ca4418/lib-typenum new file mode 100644 index 0000000..aaf7faf --- /dev/null +++ b/target/release/.fingerprint/typenum-0747cbf612ca4418/lib-typenum @@ -0,0 +1 @@ +eb3fcbf7a4c06a1e \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-0747cbf612ca4418/lib-typenum.json b/target/release/.fingerprint/typenum-0747cbf612ca4418/lib-typenum.json new file mode 100644 index 0000000..20b9282 --- /dev/null +++ b/target/release/.fingerprint/typenum-0747cbf612ca4418/lib-typenum.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":9141277588366826021,"profile":2698644804294220970,"path":13053629959826936123,"deps":[[11395083745183091805,"build_script_main",false,13747811333151162746]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/typenum-0747cbf612ca4418/dep-lib-typenum"}}],"rustflags":[],"metadata":5976975242777358168,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-d836ce8ae56b147f/run-build-script-build-script-main b/target/release/.fingerprint/typenum-d836ce8ae56b147f/run-build-script-build-script-main new file mode 100644 index 0000000..fb12a6f --- /dev/null +++ b/target/release/.fingerprint/typenum-d836ce8ae56b147f/run-build-script-build-script-main @@ -0,0 +1 @@ +7a8190879109cabe \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-d836ce8ae56b147f/run-build-script-build-script-main.json b/target/release/.fingerprint/typenum-d836ce8ae56b147f/run-build-script-build-script-main.json new file mode 100644 index 0000000..5fd05fe --- /dev/null +++ b/target/release/.fingerprint/typenum-d836ce8ae56b147f/run-build-script-build-script-main.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[11395083745183091805,"build_script_main",false,17426794712076629665]],"local":[{"RerunIfChanged":{"output":"release/build/typenum-d836ce8ae56b147f/output","paths":["build/main.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-df70cd00a4ea8db4/build-script-build-script-main b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/build-script-build-script-main new file mode 100644 index 0000000..afd072d --- /dev/null +++ b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/build-script-build-script-main @@ -0,0 +1 @@ +a1b6fba27569d8f1 \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-df70cd00a4ea8db4/build-script-build-script-main.json b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/build-script-build-script-main.json new file mode 100644 index 0000000..93bf9e7 --- /dev/null +++ b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/build-script-build-script-main.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2670629102679156082,"profile":2698644804294220970,"path":394928786905497933,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/typenum-df70cd00a4ea8db4/dep-build-script-build-script-main"}}],"rustflags":[],"metadata":5976975242777358168,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/typenum-df70cd00a4ea8db4/dep-build-script-build-script-main b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/dep-build-script-build-script-main new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/dep-build-script-build-script-main differ diff --git a/target/release/.fingerprint/typenum-df70cd00a4ea8db4/invoked.timestamp b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/typenum-df70cd00a4ea8db4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/dep-lib-unicode-ident b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/dep-lib-unicode-ident new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/dep-lib-unicode-ident differ diff --git a/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/invoked.timestamp b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/lib-unicode-ident b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/lib-unicode-ident new file mode 100644 index 0000000..bae0c4d --- /dev/null +++ b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/lib-unicode-ident @@ -0,0 +1 @@ +8f009be7036bcc76 \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/lib-unicode-ident.json b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/lib-unicode-ident.json new file mode 100644 index 0000000..3c371d0 --- /dev/null +++ b/target/release/.fingerprint/unicode-ident-97b695d212fdeaef/lib-unicode-ident.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":796776536126189422,"profile":2698644804294220970,"path":17953481076534138897,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-ident-97b695d212fdeaef/dep-lib-unicode-ident"}}],"rustflags":[],"metadata":1159190378059262574,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/dep-lib-unicode-segmentation b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/dep-lib-unicode-segmentation new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/dep-lib-unicode-segmentation differ diff --git a/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/invoked.timestamp b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/lib-unicode-segmentation b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/lib-unicode-segmentation new file mode 100644 index 0000000..4f07be4 --- /dev/null +++ b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/lib-unicode-segmentation @@ -0,0 +1 @@ +ca49a63612578278 \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/lib-unicode-segmentation.json b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/lib-unicode-segmentation.json new file mode 100644 index 0000000..cb13f37 --- /dev/null +++ b/target/release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/lib-unicode-segmentation.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":12129224598913692379,"profile":2698644804294220970,"path":5564453562847626289,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-segmentation-4a075b29da6b3ebd/dep-lib-unicode-segmentation"}}],"rustflags":[],"metadata":11806978865797999234,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-e84d4ac735eb4669/dep-lib-version_check b/target/release/.fingerprint/version_check-e84d4ac735eb4669/dep-lib-version_check new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/version_check-e84d4ac735eb4669/dep-lib-version_check differ diff --git a/target/release/.fingerprint/version_check-e84d4ac735eb4669/invoked.timestamp b/target/release/.fingerprint/version_check-e84d4ac735eb4669/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/version_check-e84d4ac735eb4669/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-e84d4ac735eb4669/lib-version_check b/target/release/.fingerprint/version_check-e84d4ac735eb4669/lib-version_check new file mode 100644 index 0000000..afee6e0 --- /dev/null +++ b/target/release/.fingerprint/version_check-e84d4ac735eb4669/lib-version_check @@ -0,0 +1 @@ +2d12218aee18f977 \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-e84d4ac735eb4669/lib-version_check.json b/target/release/.fingerprint/version_check-e84d4ac735eb4669/lib-version_check.json new file mode 100644 index 0000000..ffab025 --- /dev/null +++ b/target/release/.fingerprint/version_check-e84d4ac735eb4669/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":2726911228026723764,"profile":2698644804294220970,"path":18162928135707607955,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/version_check-e84d4ac735eb4669/dep-lib-version_check"}}],"rustflags":[],"metadata":14847206692933921638,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/yansi-34bf9e888c25c67f/dep-lib-yansi b/target/release/.fingerprint/yansi-34bf9e888c25c67f/dep-lib-yansi new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/target/release/.fingerprint/yansi-34bf9e888c25c67f/dep-lib-yansi differ diff --git a/target/release/.fingerprint/yansi-34bf9e888c25c67f/invoked.timestamp b/target/release/.fingerprint/yansi-34bf9e888c25c67f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/yansi-34bf9e888c25c67f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/yansi-34bf9e888c25c67f/lib-yansi b/target/release/.fingerprint/yansi-34bf9e888c25c67f/lib-yansi new file mode 100644 index 0000000..000a8a5 --- /dev/null +++ b/target/release/.fingerprint/yansi-34bf9e888c25c67f/lib-yansi @@ -0,0 +1 @@ +432f4e0ceb81d55c \ No newline at end of file diff --git a/target/release/.fingerprint/yansi-34bf9e888c25c67f/lib-yansi.json b/target/release/.fingerprint/yansi-34bf9e888c25c67f/lib-yansi.json new file mode 100644 index 0000000..b8834e0 --- /dev/null +++ b/target/release/.fingerprint/yansi-34bf9e888c25c67f/lib-yansi.json @@ -0,0 +1 @@ +{"rustc":17424618724053001979,"features":"[]","target":17902753892849126463,"profile":2698644804294220970,"path":10087308309118922332,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/yansi-34bf9e888c25c67f/dep-lib-yansi"}}],"rustflags":[],"metadata":17119822801374816370,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/release/build/ahash-710fca02dce7d2d1/build-script-build b/target/release/build/ahash-710fca02dce7d2d1/build-script-build new file mode 100755 index 0000000..1b1ce94 Binary files /dev/null and b/target/release/build/ahash-710fca02dce7d2d1/build-script-build differ diff --git a/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1 b/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1 new file mode 100755 index 0000000..1b1ce94 Binary files /dev/null and b/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1 differ diff --git a/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1.d b/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1.d new file mode 100644 index 0000000..ad50e70 --- /dev/null +++ b/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/./build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/ahash-710fca02dce7d2d1/build_script_build-710fca02dce7d2d1.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/./build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/./build.rs: diff --git a/target/release/build/anyhow-26ac233da58fde1d/invoked.timestamp b/target/release/build/anyhow-26ac233da58fde1d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/anyhow-26ac233da58fde1d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/anyhow-26ac233da58fde1d/out/probe.rs b/target/release/build/anyhow-26ac233da58fde1d/out/probe.rs new file mode 100644 index 0000000..d6ad10e --- /dev/null +++ b/target/release/build/anyhow-26ac233da58fde1d/out/probe.rs @@ -0,0 +1,40 @@ + + #![feature(error_generic_member_access, provide_any)] + + use std::any::{Demand, Provider}; + use std::backtrace::{Backtrace, BacktraceStatus}; + use std::error::Error; + use std::fmt::{self, Display}; + + #[derive(Debug)] + struct E { + backtrace: Backtrace, + } + + impl Display for E { + fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result { + unimplemented!() + } + } + + impl Error for E { + fn provide<'a>(&'a self, demand: &mut Demand<'a>) { + demand.provide_ref(&self.backtrace); + } + } + + struct P; + + impl Provider for P { + fn provide<'a>(&'a self, _demand: &mut Demand<'a>) {} + } + + const _: fn() = || { + let backtrace: Backtrace = Backtrace::capture(); + let status: BacktraceStatus = backtrace.status(); + match status { + BacktraceStatus::Captured | BacktraceStatus::Disabled | _ => {} + } + }; + + const _: fn(&dyn Error) -> Option<&Backtrace> = |err| err.request_ref::(); diff --git a/target/release/build/anyhow-26ac233da58fde1d/output b/target/release/build/anyhow-26ac233da58fde1d/output new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/anyhow-26ac233da58fde1d/root-output b/target/release/build/anyhow-26ac233da58fde1d/root-output new file mode 100644 index 0000000..11d7fd5 --- /dev/null +++ b/target/release/build/anyhow-26ac233da58fde1d/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/anyhow-26ac233da58fde1d/out \ No newline at end of file diff --git a/target/release/build/anyhow-26ac233da58fde1d/stderr b/target/release/build/anyhow-26ac233da58fde1d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/anyhow-863c47b469b68d0d/build-script-build b/target/release/build/anyhow-863c47b469b68d0d/build-script-build new file mode 100755 index 0000000..00aef6d Binary files /dev/null and b/target/release/build/anyhow-863c47b469b68d0d/build-script-build differ diff --git a/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d b/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d new file mode 100755 index 0000000..00aef6d Binary files /dev/null and b/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d differ diff --git a/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d.d b/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d.d new file mode 100644 index 0000000..e70ff30 --- /dev/null +++ b/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/anyhow-863c47b469b68d0d/build_script_build-863c47b469b68d0d.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/build.rs: diff --git a/target/release/build/blake3-3d813a4c35ffb9b3/build-script-build b/target/release/build/blake3-3d813a4c35ffb9b3/build-script-build new file mode 100755 index 0000000..daa9c5b Binary files /dev/null and b/target/release/build/blake3-3d813a4c35ffb9b3/build-script-build differ diff --git a/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3 b/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3 new file mode 100755 index 0000000..daa9c5b Binary files /dev/null and b/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3 differ diff --git a/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3.d b/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3.d new file mode 100644 index 0000000..ea188b7 --- /dev/null +++ b/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/blake3-3d813a4c35ffb9b3/build_script_build-3d813a4c35ffb9b3.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-1.3.3/build.rs: diff --git a/target/release/build/bv-6fd80826cc4d47ed/build-script-build b/target/release/build/bv-6fd80826cc4d47ed/build-script-build new file mode 100755 index 0000000..e50f81b Binary files /dev/null and b/target/release/build/bv-6fd80826cc4d47ed/build-script-build differ diff --git a/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed b/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed new file mode 100755 index 0000000..e50f81b Binary files /dev/null and b/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed differ diff --git a/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed.d b/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed.d new file mode 100644 index 0000000..e61fca2 --- /dev/null +++ b/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/bv-6fd80826cc4d47ed/build_script_build-6fd80826cc4d47ed.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bv-0.11.1/build.rs: diff --git a/target/release/build/generic-array-745791626917055b/build-script-build b/target/release/build/generic-array-745791626917055b/build-script-build new file mode 100755 index 0000000..6da7971 Binary files /dev/null and b/target/release/build/generic-array-745791626917055b/build-script-build differ diff --git a/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b b/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b new file mode 100755 index 0000000..6da7971 Binary files /dev/null and b/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b differ diff --git a/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b.d b/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b.d new file mode 100644 index 0000000..f59f525 --- /dev/null +++ b/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/generic-array-745791626917055b/build_script_build-745791626917055b.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/build.rs: diff --git a/target/release/build/generic-array-83267a747338f463/invoked.timestamp b/target/release/build/generic-array-83267a747338f463/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/generic-array-83267a747338f463/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/generic-array-83267a747338f463/output b/target/release/build/generic-array-83267a747338f463/output new file mode 100644 index 0000000..a67c3a8 --- /dev/null +++ b/target/release/build/generic-array-83267a747338f463/output @@ -0,0 +1 @@ +cargo:rustc-cfg=relaxed_coherence diff --git a/target/release/build/generic-array-83267a747338f463/root-output b/target/release/build/generic-array-83267a747338f463/root-output new file mode 100644 index 0000000..fc5746d --- /dev/null +++ b/target/release/build/generic-array-83267a747338f463/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/generic-array-83267a747338f463/out \ No newline at end of file diff --git a/target/release/build/generic-array-83267a747338f463/stderr b/target/release/build/generic-array-83267a747338f463/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/log-8b716de51fd30dbc/build-script-build b/target/release/build/log-8b716de51fd30dbc/build-script-build new file mode 100755 index 0000000..9b034c3 Binary files /dev/null and b/target/release/build/log-8b716de51fd30dbc/build-script-build differ diff --git a/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc b/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc new file mode 100755 index 0000000..9b034c3 Binary files /dev/null and b/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc differ diff --git a/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc.d b/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc.d new file mode 100644 index 0000000..40fddb7 --- /dev/null +++ b/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/log-8b716de51fd30dbc/build_script_build-8b716de51fd30dbc.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs: diff --git a/target/release/build/memchr-1fb1706e0edadfda/build-script-build b/target/release/build/memchr-1fb1706e0edadfda/build-script-build new file mode 100755 index 0000000..1f03e78 Binary files /dev/null and b/target/release/build/memchr-1fb1706e0edadfda/build-script-build differ diff --git a/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda b/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda new file mode 100755 index 0000000..1f03e78 Binary files /dev/null and b/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda differ diff --git a/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda.d b/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda.d new file mode 100644 index 0000000..0c1c169 --- /dev/null +++ b/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/memchr-1fb1706e0edadfda/build_script_build-1fb1706e0edadfda.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs: diff --git a/target/release/build/memchr-4606401308d6e743/invoked.timestamp b/target/release/build/memchr-4606401308d6e743/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/memchr-4606401308d6e743/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/memchr-4606401308d6e743/output b/target/release/build/memchr-4606401308d6e743/output new file mode 100644 index 0000000..520482b --- /dev/null +++ b/target/release/build/memchr-4606401308d6e743/output @@ -0,0 +1,4 @@ +cargo:rustc-cfg=memchr_runtime_simd +cargo:rustc-cfg=memchr_runtime_sse2 +cargo:rustc-cfg=memchr_runtime_sse42 +cargo:rustc-cfg=memchr_runtime_avx diff --git a/target/release/build/memchr-4606401308d6e743/root-output b/target/release/build/memchr-4606401308d6e743/root-output new file mode 100644 index 0000000..6107230 --- /dev/null +++ b/target/release/build/memchr-4606401308d6e743/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/memchr-4606401308d6e743/out \ No newline at end of file diff --git a/target/release/build/memchr-4606401308d6e743/stderr b/target/release/build/memchr-4606401308d6e743/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/num-traits-62a2785d40c2760b/build-script-build b/target/release/build/num-traits-62a2785d40c2760b/build-script-build new file mode 100755 index 0000000..0e81665 Binary files /dev/null and b/target/release/build/num-traits-62a2785d40c2760b/build-script-build differ diff --git a/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b b/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b new file mode 100755 index 0000000..0e81665 Binary files /dev/null and b/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b differ diff --git a/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b.d b/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b.d new file mode 100644 index 0000000..e7a6a36 --- /dev/null +++ b/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/num-traits-62a2785d40c2760b/build_script_build-62a2785d40c2760b.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs: diff --git a/target/release/build/proc-macro2-9480f5820ca77f71/invoked.timestamp b/target/release/build/proc-macro2-9480f5820ca77f71/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/proc-macro2-9480f5820ca77f71/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro2-9480f5820ca77f71/output b/target/release/build/proc-macro2-9480f5820ca77f71/output new file mode 100644 index 0000000..4fd3fed --- /dev/null +++ b/target/release/build/proc-macro2-9480f5820ca77f71/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=span_locations +cargo:rustc-cfg=use_proc_macro +cargo:rustc-cfg=wrap_proc_macro +cargo:rustc-cfg=proc_macro_span diff --git a/target/release/build/proc-macro2-9480f5820ca77f71/root-output b/target/release/build/proc-macro2-9480f5820ca77f71/root-output new file mode 100644 index 0000000..1082447 --- /dev/null +++ b/target/release/build/proc-macro2-9480f5820ca77f71/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/proc-macro2-9480f5820ca77f71/out \ No newline at end of file diff --git a/target/release/build/proc-macro2-9480f5820ca77f71/stderr b/target/release/build/proc-macro2-9480f5820ca77f71/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/proc-macro2-bc997ea213af9d98/build-script-build b/target/release/build/proc-macro2-bc997ea213af9d98/build-script-build new file mode 100755 index 0000000..8acb3f2 Binary files /dev/null and b/target/release/build/proc-macro2-bc997ea213af9d98/build-script-build differ diff --git a/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98 b/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98 new file mode 100755 index 0000000..8acb3f2 Binary files /dev/null and b/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98 differ diff --git a/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98.d b/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98.d new file mode 100644 index 0000000..a5145ef --- /dev/null +++ b/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/proc-macro2-bc997ea213af9d98/build_script_build-bc997ea213af9d98.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/build.rs: diff --git a/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/invoked.timestamp b/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/output b/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/output new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/root-output b/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/root-output new file mode 100644 index 0000000..a878c91 --- /dev/null +++ b/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/out \ No newline at end of file diff --git a/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/stderr b/target/release/build/proc-macro2-diagnostics-99e2f63d05afe315/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build b/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build new file mode 100755 index 0000000..17343dc Binary files /dev/null and b/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build-script-build differ diff --git a/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654 b/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654 new file mode 100755 index 0000000..17343dc Binary files /dev/null and b/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654 differ diff --git a/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654.d b/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654.d new file mode 100644 index 0000000..3a53890 --- /dev/null +++ b/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/proc-macro2-diagnostics-c4e1ad88154d7654/build_script_build-c4e1ad88154d7654.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/build.rs: diff --git a/target/release/build/quote-0080f4ad4c2e9aec/invoked.timestamp b/target/release/build/quote-0080f4ad4c2e9aec/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/quote-0080f4ad4c2e9aec/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/quote-0080f4ad4c2e9aec/output b/target/release/build/quote-0080f4ad4c2e9aec/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/target/release/build/quote-0080f4ad4c2e9aec/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/target/release/build/quote-0080f4ad4c2e9aec/root-output b/target/release/build/quote-0080f4ad4c2e9aec/root-output new file mode 100644 index 0000000..37d8de7 --- /dev/null +++ b/target/release/build/quote-0080f4ad4c2e9aec/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/quote-0080f4ad4c2e9aec/out \ No newline at end of file diff --git a/target/release/build/quote-0080f4ad4c2e9aec/stderr b/target/release/build/quote-0080f4ad4c2e9aec/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/quote-d4535616a3127920/build-script-build b/target/release/build/quote-d4535616a3127920/build-script-build new file mode 100755 index 0000000..38a281e Binary files /dev/null and b/target/release/build/quote-d4535616a3127920/build-script-build differ diff --git a/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920 b/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920 new file mode 100755 index 0000000..38a281e Binary files /dev/null and b/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920 differ diff --git a/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920.d b/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920.d new file mode 100644 index 0000000..d760cc1 --- /dev/null +++ b/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/quote-d4535616a3127920/build_script_build-d4535616a3127920.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/build.rs: diff --git a/target/release/build/rustversion-6b831d303c4ef650/build-script-build b/target/release/build/rustversion-6b831d303c4ef650/build-script-build new file mode 100755 index 0000000..494595d Binary files /dev/null and b/target/release/build/rustversion-6b831d303c4ef650/build-script-build differ diff --git a/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650 b/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650 new file mode 100755 index 0000000..494595d Binary files /dev/null and b/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650 differ diff --git a/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650.d b/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650.d new file mode 100644 index 0000000..b0f4ddd --- /dev/null +++ b/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650.d @@ -0,0 +1,6 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/build/build.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/build/rustc.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-6b831d303c4ef650/build_script_build-6b831d303c4ef650.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/build/build.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/build/rustc.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/build/build.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/build/rustc.rs: diff --git a/target/release/build/rustversion-f2fc1659aa1e8592/invoked.timestamp b/target/release/build/rustversion-f2fc1659aa1e8592/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/rustversion-f2fc1659aa1e8592/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/rustversion-f2fc1659aa1e8592/out/version.expr b/target/release/build/rustversion-f2fc1659aa1e8592/out/version.expr new file mode 100644 index 0000000..9d5d0ec --- /dev/null +++ b/target/release/build/rustversion-f2fc1659aa1e8592/out/version.expr @@ -0,0 +1,5 @@ +crate::version::Version { + minor: 62, + patch: 0, + channel: crate::version::Channel::Dev, +} diff --git a/target/release/build/rustversion-f2fc1659aa1e8592/output b/target/release/build/rustversion-f2fc1659aa1e8592/output new file mode 100644 index 0000000..2268add --- /dev/null +++ b/target/release/build/rustversion-f2fc1659aa1e8592/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build/build.rs diff --git a/target/release/build/rustversion-f2fc1659aa1e8592/root-output b/target/release/build/rustversion-f2fc1659aa1e8592/root-output new file mode 100644 index 0000000..ff0869c --- /dev/null +++ b/target/release/build/rustversion-f2fc1659aa1e8592/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-f2fc1659aa1e8592/out \ No newline at end of file diff --git a/target/release/build/rustversion-f2fc1659aa1e8592/stderr b/target/release/build/rustversion-f2fc1659aa1e8592/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/semver-83d73ed35885275b/build-script-build b/target/release/build/semver-83d73ed35885275b/build-script-build new file mode 100755 index 0000000..941e538 Binary files /dev/null and b/target/release/build/semver-83d73ed35885275b/build-script-build differ diff --git a/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b b/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b new file mode 100755 index 0000000..941e538 Binary files /dev/null and b/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b differ diff --git a/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b.d b/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b.d new file mode 100644 index 0000000..69e992d --- /dev/null +++ b/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/semver-83d73ed35885275b/build_script_build-83d73ed35885275b.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/build.rs: diff --git a/target/release/build/semver-bad9b61aec8cb0e8/invoked.timestamp b/target/release/build/semver-bad9b61aec8cb0e8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/semver-bad9b61aec8cb0e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/semver-bad9b61aec8cb0e8/output b/target/release/build/semver-bad9b61aec8cb0e8/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/target/release/build/semver-bad9b61aec8cb0e8/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/target/release/build/semver-bad9b61aec8cb0e8/root-output b/target/release/build/semver-bad9b61aec8cb0e8/root-output new file mode 100644 index 0000000..42f72ab --- /dev/null +++ b/target/release/build/semver-bad9b61aec8cb0e8/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/semver-bad9b61aec8cb0e8/out \ No newline at end of file diff --git a/target/release/build/semver-bad9b61aec8cb0e8/stderr b/target/release/build/semver-bad9b61aec8cb0e8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde-53d656633d0011a8/build-script-build b/target/release/build/serde-53d656633d0011a8/build-script-build new file mode 100755 index 0000000..cca4313 Binary files /dev/null and b/target/release/build/serde-53d656633d0011a8/build-script-build differ diff --git a/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8 b/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8 new file mode 100755 index 0000000..cca4313 Binary files /dev/null and b/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8 differ diff --git a/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8.d b/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8.d new file mode 100644 index 0000000..09aabfa --- /dev/null +++ b/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde-53d656633d0011a8/build_script_build-53d656633d0011a8.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/build.rs: diff --git a/target/release/build/serde-5a78c73fc46eb43e/invoked.timestamp b/target/release/build/serde-5a78c73fc46eb43e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/serde-5a78c73fc46eb43e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde-5a78c73fc46eb43e/output b/target/release/build/serde-5a78c73fc46eb43e/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/target/release/build/serde-5a78c73fc46eb43e/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/target/release/build/serde-5a78c73fc46eb43e/root-output b/target/release/build/serde-5a78c73fc46eb43e/root-output new file mode 100644 index 0000000..36a7082 --- /dev/null +++ b/target/release/build/serde-5a78c73fc46eb43e/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde-5a78c73fc46eb43e/out \ No newline at end of file diff --git a/target/release/build/serde-5a78c73fc46eb43e/stderr b/target/release/build/serde-5a78c73fc46eb43e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde_derive-544c86bdadc691fc/invoked.timestamp b/target/release/build/serde_derive-544c86bdadc691fc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/serde_derive-544c86bdadc691fc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde_derive-544c86bdadc691fc/output b/target/release/build/serde_derive-544c86bdadc691fc/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/target/release/build/serde_derive-544c86bdadc691fc/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/target/release/build/serde_derive-544c86bdadc691fc/root-output b/target/release/build/serde_derive-544c86bdadc691fc/root-output new file mode 100644 index 0000000..959b102 --- /dev/null +++ b/target/release/build/serde_derive-544c86bdadc691fc/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde_derive-544c86bdadc691fc/out \ No newline at end of file diff --git a/target/release/build/serde_derive-544c86bdadc691fc/stderr b/target/release/build/serde_derive-544c86bdadc691fc/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde_derive-be50b56b6fe4d0de/build-script-build b/target/release/build/serde_derive-be50b56b6fe4d0de/build-script-build new file mode 100755 index 0000000..fc515ad Binary files /dev/null and b/target/release/build/serde_derive-be50b56b6fe4d0de/build-script-build differ diff --git a/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de b/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de new file mode 100755 index 0000000..fc515ad Binary files /dev/null and b/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de differ diff --git a/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de.d b/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de.d new file mode 100644 index 0000000..67350c6 --- /dev/null +++ b/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde_derive-be50b56b6fe4d0de/build_script_build-be50b56b6fe4d0de.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/build.rs: diff --git a/target/release/build/serde_json-424cb467b8e47e3e/invoked.timestamp b/target/release/build/serde_json-424cb467b8e47e3e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/serde_json-424cb467b8e47e3e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde_json-424cb467b8e47e3e/output b/target/release/build/serde_json-424cb467b8e47e3e/output new file mode 100644 index 0000000..97295a0 --- /dev/null +++ b/target/release/build/serde_json-424cb467b8e47e3e/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=limb_width_64 diff --git a/target/release/build/serde_json-424cb467b8e47e3e/root-output b/target/release/build/serde_json-424cb467b8e47e3e/root-output new file mode 100644 index 0000000..7be7deb --- /dev/null +++ b/target/release/build/serde_json-424cb467b8e47e3e/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde_json-424cb467b8e47e3e/out \ No newline at end of file diff --git a/target/release/build/serde_json-424cb467b8e47e3e/stderr b/target/release/build/serde_json-424cb467b8e47e3e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde_json-8bf9085c7b429f6f/build-script-build b/target/release/build/serde_json-8bf9085c7b429f6f/build-script-build new file mode 100755 index 0000000..0680c73 Binary files /dev/null and b/target/release/build/serde_json-8bf9085c7b429f6f/build-script-build differ diff --git a/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f b/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f new file mode 100755 index 0000000..0680c73 Binary files /dev/null and b/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f differ diff --git a/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f.d b/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f.d new file mode 100644 index 0000000..aec7410 --- /dev/null +++ b/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/serde_json-8bf9085c7b429f6f/build_script_build-8bf9085c7b429f6f.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/build.rs: diff --git a/target/release/build/solana-frozen-abi-0112d6309cc25151/build-script-build b/target/release/build/solana-frozen-abi-0112d6309cc25151/build-script-build new file mode 100755 index 0000000..e0fae80 Binary files /dev/null and b/target/release/build/solana-frozen-abi-0112d6309cc25151/build-script-build differ diff --git a/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151 b/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151 new file mode 100755 index 0000000..e0fae80 Binary files /dev/null and b/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151 differ diff --git a/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151.d b/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151.d new file mode 100644 index 0000000..7821636 --- /dev/null +++ b/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-frozen-abi-0112d6309cc25151/build_script_build-0112d6309cc25151.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-1.10.41/build.rs: diff --git a/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build-script-build b/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build-script-build new file mode 100755 index 0000000..c1e673a Binary files /dev/null and b/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build-script-build differ diff --git a/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123 b/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123 new file mode 100755 index 0000000..c1e673a Binary files /dev/null and b/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123 differ diff --git a/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123.d b/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123.d new file mode 100644 index 0000000..f490204 --- /dev/null +++ b/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-macro-1.10.41/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-frozen-abi-macro-269bbda04972c123/build_script_build-269bbda04972c123.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-macro-1.10.41/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-macro-1.10.41/build.rs: diff --git a/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/invoked.timestamp b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/output b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/output new file mode 100644 index 0000000..28b5f1e --- /dev/null +++ b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=RUSTC_WITH_SPECIALIZATION +cargo:rustc-cfg=RUSTC_NEEDS_PROC_MACRO_HYGIENE diff --git a/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/root-output b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/root-output new file mode 100644 index 0000000..9ff8d9a --- /dev/null +++ b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/out \ No newline at end of file diff --git a/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/stderr b/target/release/build/solana-frozen-abi-macro-4589c63b6c648760/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/solana-program-91d0e87f63a93348/build-script-build b/target/release/build/solana-program-91d0e87f63a93348/build-script-build new file mode 100755 index 0000000..793c933 Binary files /dev/null and b/target/release/build/solana-program-91d0e87f63a93348/build-script-build differ diff --git a/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348 b/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348 new file mode 100755 index 0000000..793c933 Binary files /dev/null and b/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348 differ diff --git a/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348.d b/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348.d new file mode 100644 index 0000000..261d15f --- /dev/null +++ b/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/solana-program-91d0e87f63a93348/build_script_build-91d0e87f63a93348.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-program-1.10.41/build.rs: diff --git a/target/release/build/syn-dc3203afdc09cbaf/invoked.timestamp b/target/release/build/syn-dc3203afdc09cbaf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/syn-dc3203afdc09cbaf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/syn-dc3203afdc09cbaf/output b/target/release/build/syn-dc3203afdc09cbaf/output new file mode 100644 index 0000000..614b948 --- /dev/null +++ b/target/release/build/syn-dc3203afdc09cbaf/output @@ -0,0 +1 @@ +cargo:rustc-cfg=syn_disable_nightly_tests diff --git a/target/release/build/syn-dc3203afdc09cbaf/root-output b/target/release/build/syn-dc3203afdc09cbaf/root-output new file mode 100644 index 0000000..990a5a2 --- /dev/null +++ b/target/release/build/syn-dc3203afdc09cbaf/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/syn-dc3203afdc09cbaf/out \ No newline at end of file diff --git a/target/release/build/syn-dc3203afdc09cbaf/stderr b/target/release/build/syn-dc3203afdc09cbaf/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/syn-e2ecbf571d0fba19/build-script-build b/target/release/build/syn-e2ecbf571d0fba19/build-script-build new file mode 100755 index 0000000..f9661dd Binary files /dev/null and b/target/release/build/syn-e2ecbf571d0fba19/build-script-build differ diff --git a/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19 b/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19 new file mode 100755 index 0000000..f9661dd Binary files /dev/null and b/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19 differ diff --git a/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19.d b/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19.d new file mode 100644 index 0000000..9855a9d --- /dev/null +++ b/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/syn-e2ecbf571d0fba19/build_script_build-e2ecbf571d0fba19.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/build.rs: diff --git a/target/release/build/thiserror-0fc5b4ceb54be2c1/invoked.timestamp b/target/release/build/thiserror-0fc5b4ceb54be2c1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/thiserror-0fc5b4ceb54be2c1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/thiserror-0fc5b4ceb54be2c1/out/probe.rs b/target/release/build/thiserror-0fc5b4ceb54be2c1/out/probe.rs new file mode 100644 index 0000000..cbcb0c5 --- /dev/null +++ b/target/release/build/thiserror-0fc5b4ceb54be2c1/out/probe.rs @@ -0,0 +1,8 @@ + + #![feature(provide_any)] + + use std::any::{Demand, Provider}; + + fn _f<'a, P: Provider>(p: &'a P, demand: &mut Demand<'a>) { + p.provide(demand); + } diff --git a/target/release/build/thiserror-0fc5b4ceb54be2c1/output b/target/release/build/thiserror-0fc5b4ceb54be2c1/output new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/thiserror-0fc5b4ceb54be2c1/root-output b/target/release/build/thiserror-0fc5b4ceb54be2c1/root-output new file mode 100644 index 0000000..73ca6ad --- /dev/null +++ b/target/release/build/thiserror-0fc5b4ceb54be2c1/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/thiserror-0fc5b4ceb54be2c1/out \ No newline at end of file diff --git a/target/release/build/thiserror-0fc5b4ceb54be2c1/stderr b/target/release/build/thiserror-0fc5b4ceb54be2c1/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/thiserror-e1e9a5d4ce50b575/build-script-build b/target/release/build/thiserror-e1e9a5d4ce50b575/build-script-build new file mode 100755 index 0000000..8ee8b54 Binary files /dev/null and b/target/release/build/thiserror-e1e9a5d4ce50b575/build-script-build differ diff --git a/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575 b/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575 new file mode 100755 index 0000000..8ee8b54 Binary files /dev/null and b/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575 differ diff --git a/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575.d b/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575.d new file mode 100644 index 0000000..68c9d74 --- /dev/null +++ b/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/build.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/thiserror-e1e9a5d4ce50b575/build_script_build-e1e9a5d4ce50b575.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/build.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/build.rs: diff --git a/target/release/build/typenum-d836ce8ae56b147f/invoked.timestamp b/target/release/build/typenum-d836ce8ae56b147f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/typenum-d836ce8ae56b147f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs b/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs new file mode 100644 index 0000000..cbbb546 --- /dev/null +++ b/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs @@ -0,0 +1,2248 @@ + +/** +Type aliases for many constants. + +This file is generated by typenum's build script. + +For unsigned integers, the format is `U` followed by the number. We define aliases for + +- Numbers 0 through 1024 +- Powers of 2 below `u64::MAX` +- Powers of 10 below `u64::MAX` + +These alias definitions look like this: + +```rust +use typenum::{B0, B1, UInt, UTerm}; + +# #[allow(dead_code)] +type U6 = UInt, B1>, B0>; +``` + +For positive signed integers, the format is `P` followed by the number and for negative +signed integers it is `N` followed by the number. For the signed integer zero, we use +`Z0`. We define aliases for + +- Numbers -1024 through 1024 +- Powers of 2 between `i64::MIN` and `i64::MAX` +- Powers of 10 between `i64::MIN` and `i64::MAX` + +These alias definitions look like this: + +```rust +use typenum::{B0, B1, UInt, UTerm, PInt, NInt}; + +# #[allow(dead_code)] +type P6 = PInt, B1>, B0>>; +# #[allow(dead_code)] +type N6 = NInt, B1>, B0>>; +``` + +# Example +```rust +# #[allow(unused_imports)] +use typenum::{U0, U1, U2, U3, U4, U5, U6}; +# #[allow(unused_imports)] +use typenum::{N3, N2, N1, Z0, P1, P2, P3}; +# #[allow(unused_imports)] +use typenum::{U774, N17, N10000, P1024, P4096}; +``` + +We also define the aliases `False` and `True` for `B0` and `B1`, respectively. +*/ +#[allow(missing_docs)] +pub mod consts { + use crate::uint::{UInt, UTerm}; + use crate::int::{PInt, NInt}; + + pub use crate::bit::{B0, B1}; + pub use crate::int::Z0; + + pub type True = B1; + pub type False = B0; + pub type U0 = UTerm; + pub type U1 = UInt; + pub type P1 = PInt; pub type N1 = NInt; + pub type U2 = UInt, B0>; + pub type P2 = PInt; pub type N2 = NInt; + pub type U3 = UInt, B1>; + pub type P3 = PInt; pub type N3 = NInt; + pub type U4 = UInt, B0>, B0>; + pub type P4 = PInt; pub type N4 = NInt; + pub type U5 = UInt, B0>, B1>; + pub type P5 = PInt; pub type N5 = NInt; + pub type U6 = UInt, B1>, B0>; + pub type P6 = PInt; pub type N6 = NInt; + pub type U7 = UInt, B1>, B1>; + pub type P7 = PInt; pub type N7 = NInt; + pub type U8 = UInt, B0>, B0>, B0>; + pub type P8 = PInt; pub type N8 = NInt; + pub type U9 = UInt, B0>, B0>, B1>; + pub type P9 = PInt; pub type N9 = NInt; + pub type U10 = UInt, B0>, B1>, B0>; + pub type P10 = PInt; pub type N10 = NInt; + pub type U11 = UInt, B0>, B1>, B1>; + pub type P11 = PInt; pub type N11 = NInt; + pub type U12 = UInt, B1>, B0>, B0>; + pub type P12 = PInt; pub type N12 = NInt; + pub type U13 = UInt, B1>, B0>, B1>; + pub type P13 = PInt; pub type N13 = NInt; + pub type U14 = UInt, B1>, B1>, B0>; + pub type P14 = PInt; pub type N14 = NInt; + pub type U15 = UInt, B1>, B1>, B1>; + pub type P15 = PInt; pub type N15 = NInt; + pub type U16 = UInt, B0>, B0>, B0>, B0>; + pub type P16 = PInt; pub type N16 = NInt; + pub type U17 = UInt, B0>, B0>, B0>, B1>; + pub type P17 = PInt; pub type N17 = NInt; + pub type U18 = UInt, B0>, B0>, B1>, B0>; + pub type P18 = PInt; pub type N18 = NInt; + pub type U19 = UInt, B0>, B0>, B1>, B1>; + pub type P19 = PInt; pub type N19 = NInt; + pub type U20 = UInt, B0>, B1>, B0>, B0>; + pub type P20 = PInt; pub type N20 = NInt; + pub type U21 = UInt, B0>, B1>, B0>, B1>; + pub type P21 = PInt; pub type N21 = NInt; + pub type U22 = UInt, B0>, B1>, B1>, B0>; + pub type P22 = PInt; pub type N22 = NInt; + pub type U23 = UInt, B0>, B1>, B1>, B1>; + pub type P23 = PInt; pub type N23 = NInt; + pub type U24 = UInt, B1>, B0>, B0>, B0>; + pub type P24 = PInt; pub type N24 = NInt; + pub type U25 = UInt, B1>, B0>, B0>, B1>; + pub type P25 = PInt; pub type N25 = NInt; + pub type U26 = UInt, B1>, B0>, B1>, B0>; + pub type P26 = PInt; pub type N26 = NInt; + pub type U27 = UInt, B1>, B0>, B1>, B1>; + pub type P27 = PInt; pub type N27 = NInt; + pub type U28 = UInt, B1>, B1>, B0>, B0>; + pub type P28 = PInt; pub type N28 = NInt; + pub type U29 = UInt, B1>, B1>, B0>, B1>; + pub type P29 = PInt; pub type N29 = NInt; + pub type U30 = UInt, B1>, B1>, B1>, B0>; + pub type P30 = PInt; pub type N30 = NInt; + pub type U31 = UInt, B1>, B1>, B1>, B1>; + pub type P31 = PInt; pub type N31 = NInt; + pub type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + pub type P32 = PInt; pub type N32 = NInt; + pub type U33 = UInt, B0>, B0>, B0>, B0>, B1>; + pub type P33 = PInt; pub type N33 = NInt; + pub type U34 = UInt, B0>, B0>, B0>, B1>, B0>; + pub type P34 = PInt; pub type N34 = NInt; + pub type U35 = UInt, B0>, B0>, B0>, B1>, B1>; + pub type P35 = PInt; pub type N35 = NInt; + pub type U36 = UInt, B0>, B0>, B1>, B0>, B0>; + pub type P36 = PInt; pub type N36 = NInt; + pub type U37 = UInt, B0>, B0>, B1>, B0>, B1>; + pub type P37 = PInt; pub type N37 = NInt; + pub type U38 = UInt, B0>, B0>, B1>, B1>, B0>; + pub type P38 = PInt; pub type N38 = NInt; + pub type U39 = UInt, B0>, B0>, B1>, B1>, B1>; + pub type P39 = PInt; pub type N39 = NInt; + pub type U40 = UInt, B0>, B1>, B0>, B0>, B0>; + pub type P40 = PInt; pub type N40 = NInt; + pub type U41 = UInt, B0>, B1>, B0>, B0>, B1>; + pub type P41 = PInt; pub type N41 = NInt; + pub type U42 = UInt, B0>, B1>, B0>, B1>, B0>; + pub type P42 = PInt; pub type N42 = NInt; + pub type U43 = UInt, B0>, B1>, B0>, B1>, B1>; + pub type P43 = PInt; pub type N43 = NInt; + pub type U44 = UInt, B0>, B1>, B1>, B0>, B0>; + pub type P44 = PInt; pub type N44 = NInt; + pub type U45 = UInt, B0>, B1>, B1>, B0>, B1>; + pub type P45 = PInt; pub type N45 = NInt; + pub type U46 = UInt, B0>, B1>, B1>, B1>, B0>; + pub type P46 = PInt; pub type N46 = NInt; + pub type U47 = UInt, B0>, B1>, B1>, B1>, B1>; + pub type P47 = PInt; pub type N47 = NInt; + pub type U48 = UInt, B1>, B0>, B0>, B0>, B0>; + pub type P48 = PInt; pub type N48 = NInt; + pub type U49 = UInt, B1>, B0>, B0>, B0>, B1>; + pub type P49 = PInt; pub type N49 = NInt; + pub type U50 = UInt, B1>, B0>, B0>, B1>, B0>; + pub type P50 = PInt; pub type N50 = NInt; + pub type U51 = UInt, B1>, B0>, B0>, B1>, B1>; + pub type P51 = PInt; pub type N51 = NInt; + pub type U52 = UInt, B1>, B0>, B1>, B0>, B0>; + pub type P52 = PInt; pub type N52 = NInt; + pub type U53 = UInt, B1>, B0>, B1>, B0>, B1>; + pub type P53 = PInt; pub type N53 = NInt; + pub type U54 = UInt, B1>, B0>, B1>, B1>, B0>; + pub type P54 = PInt; pub type N54 = NInt; + pub type U55 = UInt, B1>, B0>, B1>, B1>, B1>; + pub type P55 = PInt; pub type N55 = NInt; + pub type U56 = UInt, B1>, B1>, B0>, B0>, B0>; + pub type P56 = PInt; pub type N56 = NInt; + pub type U57 = UInt, B1>, B1>, B0>, B0>, B1>; + pub type P57 = PInt; pub type N57 = NInt; + pub type U58 = UInt, B1>, B1>, B0>, B1>, B0>; + pub type P58 = PInt; pub type N58 = NInt; + pub type U59 = UInt, B1>, B1>, B0>, B1>, B1>; + pub type P59 = PInt; pub type N59 = NInt; + pub type U60 = UInt, B1>, B1>, B1>, B0>, B0>; + pub type P60 = PInt; pub type N60 = NInt; + pub type U61 = UInt, B1>, B1>, B1>, B0>, B1>; + pub type P61 = PInt; pub type N61 = NInt; + pub type U62 = UInt, B1>, B1>, B1>, B1>, B0>; + pub type P62 = PInt; pub type N62 = NInt; + pub type U63 = UInt, B1>, B1>, B1>, B1>, B1>; + pub type P63 = PInt; pub type N63 = NInt; + pub type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P64 = PInt; pub type N64 = NInt; + pub type U65 = UInt, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P65 = PInt; pub type N65 = NInt; + pub type U66 = UInt, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P66 = PInt; pub type N66 = NInt; + pub type U67 = UInt, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P67 = PInt; pub type N67 = NInt; + pub type U68 = UInt, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P68 = PInt; pub type N68 = NInt; + pub type U69 = UInt, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P69 = PInt; pub type N69 = NInt; + pub type U70 = UInt, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P70 = PInt; pub type N70 = NInt; + pub type U71 = UInt, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P71 = PInt; pub type N71 = NInt; + pub type U72 = UInt, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P72 = PInt; pub type N72 = NInt; + pub type U73 = UInt, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P73 = PInt; pub type N73 = NInt; + pub type U74 = UInt, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P74 = PInt; pub type N74 = NInt; + pub type U75 = UInt, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P75 = PInt; pub type N75 = NInt; + pub type U76 = UInt, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P76 = PInt; pub type N76 = NInt; + pub type U77 = UInt, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P77 = PInt; pub type N77 = NInt; + pub type U78 = UInt, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P78 = PInt; pub type N78 = NInt; + pub type U79 = UInt, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P79 = PInt; pub type N79 = NInt; + pub type U80 = UInt, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P80 = PInt; pub type N80 = NInt; + pub type U81 = UInt, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P81 = PInt; pub type N81 = NInt; + pub type U82 = UInt, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P82 = PInt; pub type N82 = NInt; + pub type U83 = UInt, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P83 = PInt; pub type N83 = NInt; + pub type U84 = UInt, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P84 = PInt; pub type N84 = NInt; + pub type U85 = UInt, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P85 = PInt; pub type N85 = NInt; + pub type U86 = UInt, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P86 = PInt; pub type N86 = NInt; + pub type U87 = UInt, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P87 = PInt; pub type N87 = NInt; + pub type U88 = UInt, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P88 = PInt; pub type N88 = NInt; + pub type U89 = UInt, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P89 = PInt; pub type N89 = NInt; + pub type U90 = UInt, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P90 = PInt; pub type N90 = NInt; + pub type U91 = UInt, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P91 = PInt; pub type N91 = NInt; + pub type U92 = UInt, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P92 = PInt; pub type N92 = NInt; + pub type U93 = UInt, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P93 = PInt; pub type N93 = NInt; + pub type U94 = UInt, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P94 = PInt; pub type N94 = NInt; + pub type U95 = UInt, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P95 = PInt; pub type N95 = NInt; + pub type U96 = UInt, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P96 = PInt; pub type N96 = NInt; + pub type U97 = UInt, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P97 = PInt; pub type N97 = NInt; + pub type U98 = UInt, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P98 = PInt; pub type N98 = NInt; + pub type U99 = UInt, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P99 = PInt; pub type N99 = NInt; + pub type U100 = UInt, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P100 = PInt; pub type N100 = NInt; + pub type U101 = UInt, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P101 = PInt; pub type N101 = NInt; + pub type U102 = UInt, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P102 = PInt; pub type N102 = NInt; + pub type U103 = UInt, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P103 = PInt; pub type N103 = NInt; + pub type U104 = UInt, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P104 = PInt; pub type N104 = NInt; + pub type U105 = UInt, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P105 = PInt; pub type N105 = NInt; + pub type U106 = UInt, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P106 = PInt; pub type N106 = NInt; + pub type U107 = UInt, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P107 = PInt; pub type N107 = NInt; + pub type U108 = UInt, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P108 = PInt; pub type N108 = NInt; + pub type U109 = UInt, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P109 = PInt; pub type N109 = NInt; + pub type U110 = UInt, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P110 = PInt; pub type N110 = NInt; + pub type U111 = UInt, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P111 = PInt; pub type N111 = NInt; + pub type U112 = UInt, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P112 = PInt; pub type N112 = NInt; + pub type U113 = UInt, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P113 = PInt; pub type N113 = NInt; + pub type U114 = UInt, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P114 = PInt; pub type N114 = NInt; + pub type U115 = UInt, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P115 = PInt; pub type N115 = NInt; + pub type U116 = UInt, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P116 = PInt; pub type N116 = NInt; + pub type U117 = UInt, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P117 = PInt; pub type N117 = NInt; + pub type U118 = UInt, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P118 = PInt; pub type N118 = NInt; + pub type U119 = UInt, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P119 = PInt; pub type N119 = NInt; + pub type U120 = UInt, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P120 = PInt; pub type N120 = NInt; + pub type U121 = UInt, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P121 = PInt; pub type N121 = NInt; + pub type U122 = UInt, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P122 = PInt; pub type N122 = NInt; + pub type U123 = UInt, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P123 = PInt; pub type N123 = NInt; + pub type U124 = UInt, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P124 = PInt; pub type N124 = NInt; + pub type U125 = UInt, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P125 = PInt; pub type N125 = NInt; + pub type U126 = UInt, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P126 = PInt; pub type N126 = NInt; + pub type U127 = UInt, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P127 = PInt; pub type N127 = NInt; + pub type U128 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P128 = PInt; pub type N128 = NInt; + pub type U129 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P129 = PInt; pub type N129 = NInt; + pub type U130 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P130 = PInt; pub type N130 = NInt; + pub type U131 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P131 = PInt; pub type N131 = NInt; + pub type U132 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P132 = PInt; pub type N132 = NInt; + pub type U133 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P133 = PInt; pub type N133 = NInt; + pub type U134 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P134 = PInt; pub type N134 = NInt; + pub type U135 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P135 = PInt; pub type N135 = NInt; + pub type U136 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P136 = PInt; pub type N136 = NInt; + pub type U137 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P137 = PInt; pub type N137 = NInt; + pub type U138 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P138 = PInt; pub type N138 = NInt; + pub type U139 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P139 = PInt; pub type N139 = NInt; + pub type U140 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P140 = PInt; pub type N140 = NInt; + pub type U141 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P141 = PInt; pub type N141 = NInt; + pub type U142 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P142 = PInt; pub type N142 = NInt; + pub type U143 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P143 = PInt; pub type N143 = NInt; + pub type U144 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P144 = PInt; pub type N144 = NInt; + pub type U145 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P145 = PInt; pub type N145 = NInt; + pub type U146 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P146 = PInt; pub type N146 = NInt; + pub type U147 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P147 = PInt; pub type N147 = NInt; + pub type U148 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P148 = PInt; pub type N148 = NInt; + pub type U149 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P149 = PInt; pub type N149 = NInt; + pub type U150 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P150 = PInt; pub type N150 = NInt; + pub type U151 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P151 = PInt; pub type N151 = NInt; + pub type U152 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P152 = PInt; pub type N152 = NInt; + pub type U153 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P153 = PInt; pub type N153 = NInt; + pub type U154 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P154 = PInt; pub type N154 = NInt; + pub type U155 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P155 = PInt; pub type N155 = NInt; + pub type U156 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P156 = PInt; pub type N156 = NInt; + pub type U157 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P157 = PInt; pub type N157 = NInt; + pub type U158 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P158 = PInt; pub type N158 = NInt; + pub type U159 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P159 = PInt; pub type N159 = NInt; + pub type U160 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P160 = PInt; pub type N160 = NInt; + pub type U161 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P161 = PInt; pub type N161 = NInt; + pub type U162 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P162 = PInt; pub type N162 = NInt; + pub type U163 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P163 = PInt; pub type N163 = NInt; + pub type U164 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P164 = PInt; pub type N164 = NInt; + pub type U165 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P165 = PInt; pub type N165 = NInt; + pub type U166 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P166 = PInt; pub type N166 = NInt; + pub type U167 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P167 = PInt; pub type N167 = NInt; + pub type U168 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P168 = PInt; pub type N168 = NInt; + pub type U169 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P169 = PInt; pub type N169 = NInt; + pub type U170 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P170 = PInt; pub type N170 = NInt; + pub type U171 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P171 = PInt; pub type N171 = NInt; + pub type U172 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P172 = PInt; pub type N172 = NInt; + pub type U173 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P173 = PInt; pub type N173 = NInt; + pub type U174 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P174 = PInt; pub type N174 = NInt; + pub type U175 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P175 = PInt; pub type N175 = NInt; + pub type U176 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P176 = PInt; pub type N176 = NInt; + pub type U177 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P177 = PInt; pub type N177 = NInt; + pub type U178 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P178 = PInt; pub type N178 = NInt; + pub type U179 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P179 = PInt; pub type N179 = NInt; + pub type U180 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P180 = PInt; pub type N180 = NInt; + pub type U181 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P181 = PInt; pub type N181 = NInt; + pub type U182 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P182 = PInt; pub type N182 = NInt; + pub type U183 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P183 = PInt; pub type N183 = NInt; + pub type U184 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P184 = PInt; pub type N184 = NInt; + pub type U185 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P185 = PInt; pub type N185 = NInt; + pub type U186 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P186 = PInt; pub type N186 = NInt; + pub type U187 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P187 = PInt; pub type N187 = NInt; + pub type U188 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P188 = PInt; pub type N188 = NInt; + pub type U189 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P189 = PInt; pub type N189 = NInt; + pub type U190 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P190 = PInt; pub type N190 = NInt; + pub type U191 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P191 = PInt; pub type N191 = NInt; + pub type U192 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P192 = PInt; pub type N192 = NInt; + pub type U193 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P193 = PInt; pub type N193 = NInt; + pub type U194 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P194 = PInt; pub type N194 = NInt; + pub type U195 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P195 = PInt; pub type N195 = NInt; + pub type U196 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P196 = PInt; pub type N196 = NInt; + pub type U197 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P197 = PInt; pub type N197 = NInt; + pub type U198 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P198 = PInt; pub type N198 = NInt; + pub type U199 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P199 = PInt; pub type N199 = NInt; + pub type U200 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P200 = PInt; pub type N200 = NInt; + pub type U201 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P201 = PInt; pub type N201 = NInt; + pub type U202 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P202 = PInt; pub type N202 = NInt; + pub type U203 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P203 = PInt; pub type N203 = NInt; + pub type U204 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P204 = PInt; pub type N204 = NInt; + pub type U205 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P205 = PInt; pub type N205 = NInt; + pub type U206 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P206 = PInt; pub type N206 = NInt; + pub type U207 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P207 = PInt; pub type N207 = NInt; + pub type U208 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P208 = PInt; pub type N208 = NInt; + pub type U209 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P209 = PInt; pub type N209 = NInt; + pub type U210 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P210 = PInt; pub type N210 = NInt; + pub type U211 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P211 = PInt; pub type N211 = NInt; + pub type U212 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P212 = PInt; pub type N212 = NInt; + pub type U213 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P213 = PInt; pub type N213 = NInt; + pub type U214 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P214 = PInt; pub type N214 = NInt; + pub type U215 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P215 = PInt; pub type N215 = NInt; + pub type U216 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P216 = PInt; pub type N216 = NInt; + pub type U217 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P217 = PInt; pub type N217 = NInt; + pub type U218 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P218 = PInt; pub type N218 = NInt; + pub type U219 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P219 = PInt; pub type N219 = NInt; + pub type U220 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P220 = PInt; pub type N220 = NInt; + pub type U221 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P221 = PInt; pub type N221 = NInt; + pub type U222 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P222 = PInt; pub type N222 = NInt; + pub type U223 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P223 = PInt; pub type N223 = NInt; + pub type U224 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P224 = PInt; pub type N224 = NInt; + pub type U225 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P225 = PInt; pub type N225 = NInt; + pub type U226 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P226 = PInt; pub type N226 = NInt; + pub type U227 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P227 = PInt; pub type N227 = NInt; + pub type U228 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P228 = PInt; pub type N228 = NInt; + pub type U229 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P229 = PInt; pub type N229 = NInt; + pub type U230 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P230 = PInt; pub type N230 = NInt; + pub type U231 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P231 = PInt; pub type N231 = NInt; + pub type U232 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P232 = PInt; pub type N232 = NInt; + pub type U233 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P233 = PInt; pub type N233 = NInt; + pub type U234 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P234 = PInt; pub type N234 = NInt; + pub type U235 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P235 = PInt; pub type N235 = NInt; + pub type U236 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P236 = PInt; pub type N236 = NInt; + pub type U237 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P237 = PInt; pub type N237 = NInt; + pub type U238 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P238 = PInt; pub type N238 = NInt; + pub type U239 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P239 = PInt; pub type N239 = NInt; + pub type U240 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P240 = PInt; pub type N240 = NInt; + pub type U241 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P241 = PInt; pub type N241 = NInt; + pub type U242 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P242 = PInt; pub type N242 = NInt; + pub type U243 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P243 = PInt; pub type N243 = NInt; + pub type U244 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P244 = PInt; pub type N244 = NInt; + pub type U245 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P245 = PInt; pub type N245 = NInt; + pub type U246 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P246 = PInt; pub type N246 = NInt; + pub type U247 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P247 = PInt; pub type N247 = NInt; + pub type U248 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P248 = PInt; pub type N248 = NInt; + pub type U249 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P249 = PInt; pub type N249 = NInt; + pub type U250 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P250 = PInt; pub type N250 = NInt; + pub type U251 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P251 = PInt; pub type N251 = NInt; + pub type U252 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P252 = PInt; pub type N252 = NInt; + pub type U253 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P253 = PInt; pub type N253 = NInt; + pub type U254 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P254 = PInt; pub type N254 = NInt; + pub type U255 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P255 = PInt; pub type N255 = NInt; + pub type U256 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P256 = PInt; pub type N256 = NInt; + pub type U257 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P257 = PInt; pub type N257 = NInt; + pub type U258 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P258 = PInt; pub type N258 = NInt; + pub type U259 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P259 = PInt; pub type N259 = NInt; + pub type U260 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P260 = PInt; pub type N260 = NInt; + pub type U261 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P261 = PInt; pub type N261 = NInt; + pub type U262 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P262 = PInt; pub type N262 = NInt; + pub type U263 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P263 = PInt; pub type N263 = NInt; + pub type U264 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P264 = PInt; pub type N264 = NInt; + pub type U265 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P265 = PInt; pub type N265 = NInt; + pub type U266 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P266 = PInt; pub type N266 = NInt; + pub type U267 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P267 = PInt; pub type N267 = NInt; + pub type U268 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P268 = PInt; pub type N268 = NInt; + pub type U269 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P269 = PInt; pub type N269 = NInt; + pub type U270 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P270 = PInt; pub type N270 = NInt; + pub type U271 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P271 = PInt; pub type N271 = NInt; + pub type U272 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P272 = PInt; pub type N272 = NInt; + pub type U273 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P273 = PInt; pub type N273 = NInt; + pub type U274 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P274 = PInt; pub type N274 = NInt; + pub type U275 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P275 = PInt; pub type N275 = NInt; + pub type U276 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P276 = PInt; pub type N276 = NInt; + pub type U277 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P277 = PInt; pub type N277 = NInt; + pub type U278 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P278 = PInt; pub type N278 = NInt; + pub type U279 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P279 = PInt; pub type N279 = NInt; + pub type U280 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P280 = PInt; pub type N280 = NInt; + pub type U281 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P281 = PInt; pub type N281 = NInt; + pub type U282 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P282 = PInt; pub type N282 = NInt; + pub type U283 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P283 = PInt; pub type N283 = NInt; + pub type U284 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P284 = PInt; pub type N284 = NInt; + pub type U285 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P285 = PInt; pub type N285 = NInt; + pub type U286 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P286 = PInt; pub type N286 = NInt; + pub type U287 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P287 = PInt; pub type N287 = NInt; + pub type U288 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P288 = PInt; pub type N288 = NInt; + pub type U289 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P289 = PInt; pub type N289 = NInt; + pub type U290 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P290 = PInt; pub type N290 = NInt; + pub type U291 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P291 = PInt; pub type N291 = NInt; + pub type U292 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P292 = PInt; pub type N292 = NInt; + pub type U293 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P293 = PInt; pub type N293 = NInt; + pub type U294 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P294 = PInt; pub type N294 = NInt; + pub type U295 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P295 = PInt; pub type N295 = NInt; + pub type U296 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P296 = PInt; pub type N296 = NInt; + pub type U297 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P297 = PInt; pub type N297 = NInt; + pub type U298 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P298 = PInt; pub type N298 = NInt; + pub type U299 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P299 = PInt; pub type N299 = NInt; + pub type U300 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P300 = PInt; pub type N300 = NInt; + pub type U301 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P301 = PInt; pub type N301 = NInt; + pub type U302 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P302 = PInt; pub type N302 = NInt; + pub type U303 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P303 = PInt; pub type N303 = NInt; + pub type U304 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P304 = PInt; pub type N304 = NInt; + pub type U305 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P305 = PInt; pub type N305 = NInt; + pub type U306 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P306 = PInt; pub type N306 = NInt; + pub type U307 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P307 = PInt; pub type N307 = NInt; + pub type U308 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P308 = PInt; pub type N308 = NInt; + pub type U309 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P309 = PInt; pub type N309 = NInt; + pub type U310 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P310 = PInt; pub type N310 = NInt; + pub type U311 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P311 = PInt; pub type N311 = NInt; + pub type U312 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P312 = PInt; pub type N312 = NInt; + pub type U313 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P313 = PInt; pub type N313 = NInt; + pub type U314 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P314 = PInt; pub type N314 = NInt; + pub type U315 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P315 = PInt; pub type N315 = NInt; + pub type U316 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P316 = PInt; pub type N316 = NInt; + pub type U317 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P317 = PInt; pub type N317 = NInt; + pub type U318 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P318 = PInt; pub type N318 = NInt; + pub type U319 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P319 = PInt; pub type N319 = NInt; + pub type U320 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P320 = PInt; pub type N320 = NInt; + pub type U321 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P321 = PInt; pub type N321 = NInt; + pub type U322 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P322 = PInt; pub type N322 = NInt; + pub type U323 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P323 = PInt; pub type N323 = NInt; + pub type U324 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P324 = PInt; pub type N324 = NInt; + pub type U325 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P325 = PInt; pub type N325 = NInt; + pub type U326 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P326 = PInt; pub type N326 = NInt; + pub type U327 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P327 = PInt; pub type N327 = NInt; + pub type U328 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P328 = PInt; pub type N328 = NInt; + pub type U329 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P329 = PInt; pub type N329 = NInt; + pub type U330 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P330 = PInt; pub type N330 = NInt; + pub type U331 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P331 = PInt; pub type N331 = NInt; + pub type U332 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P332 = PInt; pub type N332 = NInt; + pub type U333 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P333 = PInt; pub type N333 = NInt; + pub type U334 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P334 = PInt; pub type N334 = NInt; + pub type U335 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P335 = PInt; pub type N335 = NInt; + pub type U336 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P336 = PInt; pub type N336 = NInt; + pub type U337 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P337 = PInt; pub type N337 = NInt; + pub type U338 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P338 = PInt; pub type N338 = NInt; + pub type U339 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P339 = PInt; pub type N339 = NInt; + pub type U340 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P340 = PInt; pub type N340 = NInt; + pub type U341 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P341 = PInt; pub type N341 = NInt; + pub type U342 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P342 = PInt; pub type N342 = NInt; + pub type U343 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P343 = PInt; pub type N343 = NInt; + pub type U344 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P344 = PInt; pub type N344 = NInt; + pub type U345 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P345 = PInt; pub type N345 = NInt; + pub type U346 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P346 = PInt; pub type N346 = NInt; + pub type U347 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P347 = PInt; pub type N347 = NInt; + pub type U348 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P348 = PInt; pub type N348 = NInt; + pub type U349 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P349 = PInt; pub type N349 = NInt; + pub type U350 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P350 = PInt; pub type N350 = NInt; + pub type U351 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P351 = PInt; pub type N351 = NInt; + pub type U352 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P352 = PInt; pub type N352 = NInt; + pub type U353 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P353 = PInt; pub type N353 = NInt; + pub type U354 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P354 = PInt; pub type N354 = NInt; + pub type U355 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P355 = PInt; pub type N355 = NInt; + pub type U356 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P356 = PInt; pub type N356 = NInt; + pub type U357 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P357 = PInt; pub type N357 = NInt; + pub type U358 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P358 = PInt; pub type N358 = NInt; + pub type U359 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P359 = PInt; pub type N359 = NInt; + pub type U360 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P360 = PInt; pub type N360 = NInt; + pub type U361 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P361 = PInt; pub type N361 = NInt; + pub type U362 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P362 = PInt; pub type N362 = NInt; + pub type U363 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P363 = PInt; pub type N363 = NInt; + pub type U364 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P364 = PInt; pub type N364 = NInt; + pub type U365 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P365 = PInt; pub type N365 = NInt; + pub type U366 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P366 = PInt; pub type N366 = NInt; + pub type U367 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P367 = PInt; pub type N367 = NInt; + pub type U368 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P368 = PInt; pub type N368 = NInt; + pub type U369 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P369 = PInt; pub type N369 = NInt; + pub type U370 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P370 = PInt; pub type N370 = NInt; + pub type U371 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P371 = PInt; pub type N371 = NInt; + pub type U372 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P372 = PInt; pub type N372 = NInt; + pub type U373 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P373 = PInt; pub type N373 = NInt; + pub type U374 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P374 = PInt; pub type N374 = NInt; + pub type U375 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P375 = PInt; pub type N375 = NInt; + pub type U376 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P376 = PInt; pub type N376 = NInt; + pub type U377 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P377 = PInt; pub type N377 = NInt; + pub type U378 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P378 = PInt; pub type N378 = NInt; + pub type U379 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P379 = PInt; pub type N379 = NInt; + pub type U380 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P380 = PInt; pub type N380 = NInt; + pub type U381 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P381 = PInt; pub type N381 = NInt; + pub type U382 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P382 = PInt; pub type N382 = NInt; + pub type U383 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P383 = PInt; pub type N383 = NInt; + pub type U384 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P384 = PInt; pub type N384 = NInt; + pub type U385 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P385 = PInt; pub type N385 = NInt; + pub type U386 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P386 = PInt; pub type N386 = NInt; + pub type U387 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P387 = PInt; pub type N387 = NInt; + pub type U388 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P388 = PInt; pub type N388 = NInt; + pub type U389 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P389 = PInt; pub type N389 = NInt; + pub type U390 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P390 = PInt; pub type N390 = NInt; + pub type U391 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P391 = PInt; pub type N391 = NInt; + pub type U392 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P392 = PInt; pub type N392 = NInt; + pub type U393 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P393 = PInt; pub type N393 = NInt; + pub type U394 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P394 = PInt; pub type N394 = NInt; + pub type U395 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P395 = PInt; pub type N395 = NInt; + pub type U396 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P396 = PInt; pub type N396 = NInt; + pub type U397 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P397 = PInt; pub type N397 = NInt; + pub type U398 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P398 = PInt; pub type N398 = NInt; + pub type U399 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P399 = PInt; pub type N399 = NInt; + pub type U400 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P400 = PInt; pub type N400 = NInt; + pub type U401 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P401 = PInt; pub type N401 = NInt; + pub type U402 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P402 = PInt; pub type N402 = NInt; + pub type U403 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P403 = PInt; pub type N403 = NInt; + pub type U404 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P404 = PInt; pub type N404 = NInt; + pub type U405 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P405 = PInt; pub type N405 = NInt; + pub type U406 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P406 = PInt; pub type N406 = NInt; + pub type U407 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P407 = PInt; pub type N407 = NInt; + pub type U408 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P408 = PInt; pub type N408 = NInt; + pub type U409 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P409 = PInt; pub type N409 = NInt; + pub type U410 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P410 = PInt; pub type N410 = NInt; + pub type U411 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P411 = PInt; pub type N411 = NInt; + pub type U412 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P412 = PInt; pub type N412 = NInt; + pub type U413 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P413 = PInt; pub type N413 = NInt; + pub type U414 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P414 = PInt; pub type N414 = NInt; + pub type U415 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P415 = PInt; pub type N415 = NInt; + pub type U416 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P416 = PInt; pub type N416 = NInt; + pub type U417 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P417 = PInt; pub type N417 = NInt; + pub type U418 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P418 = PInt; pub type N418 = NInt; + pub type U419 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P419 = PInt; pub type N419 = NInt; + pub type U420 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P420 = PInt; pub type N420 = NInt; + pub type U421 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P421 = PInt; pub type N421 = NInt; + pub type U422 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P422 = PInt; pub type N422 = NInt; + pub type U423 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P423 = PInt; pub type N423 = NInt; + pub type U424 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P424 = PInt; pub type N424 = NInt; + pub type U425 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P425 = PInt; pub type N425 = NInt; + pub type U426 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P426 = PInt; pub type N426 = NInt; + pub type U427 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P427 = PInt; pub type N427 = NInt; + pub type U428 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P428 = PInt; pub type N428 = NInt; + pub type U429 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P429 = PInt; pub type N429 = NInt; + pub type U430 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P430 = PInt; pub type N430 = NInt; + pub type U431 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P431 = PInt; pub type N431 = NInt; + pub type U432 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P432 = PInt; pub type N432 = NInt; + pub type U433 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P433 = PInt; pub type N433 = NInt; + pub type U434 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P434 = PInt; pub type N434 = NInt; + pub type U435 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P435 = PInt; pub type N435 = NInt; + pub type U436 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P436 = PInt; pub type N436 = NInt; + pub type U437 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P437 = PInt; pub type N437 = NInt; + pub type U438 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P438 = PInt; pub type N438 = NInt; + pub type U439 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P439 = PInt; pub type N439 = NInt; + pub type U440 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P440 = PInt; pub type N440 = NInt; + pub type U441 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P441 = PInt; pub type N441 = NInt; + pub type U442 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P442 = PInt; pub type N442 = NInt; + pub type U443 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P443 = PInt; pub type N443 = NInt; + pub type U444 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P444 = PInt; pub type N444 = NInt; + pub type U445 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P445 = PInt; pub type N445 = NInt; + pub type U446 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P446 = PInt; pub type N446 = NInt; + pub type U447 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P447 = PInt; pub type N447 = NInt; + pub type U448 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P448 = PInt; pub type N448 = NInt; + pub type U449 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P449 = PInt; pub type N449 = NInt; + pub type U450 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P450 = PInt; pub type N450 = NInt; + pub type U451 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P451 = PInt; pub type N451 = NInt; + pub type U452 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P452 = PInt; pub type N452 = NInt; + pub type U453 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P453 = PInt; pub type N453 = NInt; + pub type U454 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P454 = PInt; pub type N454 = NInt; + pub type U455 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P455 = PInt; pub type N455 = NInt; + pub type U456 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P456 = PInt; pub type N456 = NInt; + pub type U457 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P457 = PInt; pub type N457 = NInt; + pub type U458 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P458 = PInt; pub type N458 = NInt; + pub type U459 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P459 = PInt; pub type N459 = NInt; + pub type U460 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P460 = PInt; pub type N460 = NInt; + pub type U461 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P461 = PInt; pub type N461 = NInt; + pub type U462 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P462 = PInt; pub type N462 = NInt; + pub type U463 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P463 = PInt; pub type N463 = NInt; + pub type U464 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P464 = PInt; pub type N464 = NInt; + pub type U465 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P465 = PInt; pub type N465 = NInt; + pub type U466 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P466 = PInt; pub type N466 = NInt; + pub type U467 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P467 = PInt; pub type N467 = NInt; + pub type U468 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P468 = PInt; pub type N468 = NInt; + pub type U469 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P469 = PInt; pub type N469 = NInt; + pub type U470 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P470 = PInt; pub type N470 = NInt; + pub type U471 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P471 = PInt; pub type N471 = NInt; + pub type U472 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P472 = PInt; pub type N472 = NInt; + pub type U473 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P473 = PInt; pub type N473 = NInt; + pub type U474 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P474 = PInt; pub type N474 = NInt; + pub type U475 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P475 = PInt; pub type N475 = NInt; + pub type U476 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P476 = PInt; pub type N476 = NInt; + pub type U477 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P477 = PInt; pub type N477 = NInt; + pub type U478 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P478 = PInt; pub type N478 = NInt; + pub type U479 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P479 = PInt; pub type N479 = NInt; + pub type U480 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P480 = PInt; pub type N480 = NInt; + pub type U481 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P481 = PInt; pub type N481 = NInt; + pub type U482 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P482 = PInt; pub type N482 = NInt; + pub type U483 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P483 = PInt; pub type N483 = NInt; + pub type U484 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P484 = PInt; pub type N484 = NInt; + pub type U485 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P485 = PInt; pub type N485 = NInt; + pub type U486 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P486 = PInt; pub type N486 = NInt; + pub type U487 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P487 = PInt; pub type N487 = NInt; + pub type U488 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P488 = PInt; pub type N488 = NInt; + pub type U489 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P489 = PInt; pub type N489 = NInt; + pub type U490 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P490 = PInt; pub type N490 = NInt; + pub type U491 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P491 = PInt; pub type N491 = NInt; + pub type U492 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P492 = PInt; pub type N492 = NInt; + pub type U493 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P493 = PInt; pub type N493 = NInt; + pub type U494 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P494 = PInt; pub type N494 = NInt; + pub type U495 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P495 = PInt; pub type N495 = NInt; + pub type U496 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P496 = PInt; pub type N496 = NInt; + pub type U497 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P497 = PInt; pub type N497 = NInt; + pub type U498 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P498 = PInt; pub type N498 = NInt; + pub type U499 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P499 = PInt; pub type N499 = NInt; + pub type U500 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P500 = PInt; pub type N500 = NInt; + pub type U501 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P501 = PInt; pub type N501 = NInt; + pub type U502 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P502 = PInt; pub type N502 = NInt; + pub type U503 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P503 = PInt; pub type N503 = NInt; + pub type U504 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P504 = PInt; pub type N504 = NInt; + pub type U505 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P505 = PInt; pub type N505 = NInt; + pub type U506 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P506 = PInt; pub type N506 = NInt; + pub type U507 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P507 = PInt; pub type N507 = NInt; + pub type U508 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P508 = PInt; pub type N508 = NInt; + pub type U509 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P509 = PInt; pub type N509 = NInt; + pub type U510 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P510 = PInt; pub type N510 = NInt; + pub type U511 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P511 = PInt; pub type N511 = NInt; + pub type U512 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P512 = PInt; pub type N512 = NInt; + pub type U513 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P513 = PInt; pub type N513 = NInt; + pub type U514 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P514 = PInt; pub type N514 = NInt; + pub type U515 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P515 = PInt; pub type N515 = NInt; + pub type U516 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P516 = PInt; pub type N516 = NInt; + pub type U517 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P517 = PInt; pub type N517 = NInt; + pub type U518 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P518 = PInt; pub type N518 = NInt; + pub type U519 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P519 = PInt; pub type N519 = NInt; + pub type U520 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P520 = PInt; pub type N520 = NInt; + pub type U521 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P521 = PInt; pub type N521 = NInt; + pub type U522 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P522 = PInt; pub type N522 = NInt; + pub type U523 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P523 = PInt; pub type N523 = NInt; + pub type U524 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P524 = PInt; pub type N524 = NInt; + pub type U525 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P525 = PInt; pub type N525 = NInt; + pub type U526 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P526 = PInt; pub type N526 = NInt; + pub type U527 = UInt, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P527 = PInt; pub type N527 = NInt; + pub type U528 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P528 = PInt; pub type N528 = NInt; + pub type U529 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P529 = PInt; pub type N529 = NInt; + pub type U530 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P530 = PInt; pub type N530 = NInt; + pub type U531 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P531 = PInt; pub type N531 = NInt; + pub type U532 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P532 = PInt; pub type N532 = NInt; + pub type U533 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P533 = PInt; pub type N533 = NInt; + pub type U534 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P534 = PInt; pub type N534 = NInt; + pub type U535 = UInt, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P535 = PInt; pub type N535 = NInt; + pub type U536 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P536 = PInt; pub type N536 = NInt; + pub type U537 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P537 = PInt; pub type N537 = NInt; + pub type U538 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P538 = PInt; pub type N538 = NInt; + pub type U539 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P539 = PInt; pub type N539 = NInt; + pub type U540 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P540 = PInt; pub type N540 = NInt; + pub type U541 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P541 = PInt; pub type N541 = NInt; + pub type U542 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P542 = PInt; pub type N542 = NInt; + pub type U543 = UInt, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P543 = PInt; pub type N543 = NInt; + pub type U544 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P544 = PInt; pub type N544 = NInt; + pub type U545 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P545 = PInt; pub type N545 = NInt; + pub type U546 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P546 = PInt; pub type N546 = NInt; + pub type U547 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P547 = PInt; pub type N547 = NInt; + pub type U548 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P548 = PInt; pub type N548 = NInt; + pub type U549 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P549 = PInt; pub type N549 = NInt; + pub type U550 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P550 = PInt; pub type N550 = NInt; + pub type U551 = UInt, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P551 = PInt; pub type N551 = NInt; + pub type U552 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P552 = PInt; pub type N552 = NInt; + pub type U553 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P553 = PInt; pub type N553 = NInt; + pub type U554 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P554 = PInt; pub type N554 = NInt; + pub type U555 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P555 = PInt; pub type N555 = NInt; + pub type U556 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P556 = PInt; pub type N556 = NInt; + pub type U557 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P557 = PInt; pub type N557 = NInt; + pub type U558 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P558 = PInt; pub type N558 = NInt; + pub type U559 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P559 = PInt; pub type N559 = NInt; + pub type U560 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P560 = PInt; pub type N560 = NInt; + pub type U561 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P561 = PInt; pub type N561 = NInt; + pub type U562 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P562 = PInt; pub type N562 = NInt; + pub type U563 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P563 = PInt; pub type N563 = NInt; + pub type U564 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P564 = PInt; pub type N564 = NInt; + pub type U565 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P565 = PInt; pub type N565 = NInt; + pub type U566 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P566 = PInt; pub type N566 = NInt; + pub type U567 = UInt, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P567 = PInt; pub type N567 = NInt; + pub type U568 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P568 = PInt; pub type N568 = NInt; + pub type U569 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P569 = PInt; pub type N569 = NInt; + pub type U570 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P570 = PInt; pub type N570 = NInt; + pub type U571 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P571 = PInt; pub type N571 = NInt; + pub type U572 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P572 = PInt; pub type N572 = NInt; + pub type U573 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P573 = PInt; pub type N573 = NInt; + pub type U574 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P574 = PInt; pub type N574 = NInt; + pub type U575 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P575 = PInt; pub type N575 = NInt; + pub type U576 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P576 = PInt; pub type N576 = NInt; + pub type U577 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P577 = PInt; pub type N577 = NInt; + pub type U578 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P578 = PInt; pub type N578 = NInt; + pub type U579 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P579 = PInt; pub type N579 = NInt; + pub type U580 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P580 = PInt; pub type N580 = NInt; + pub type U581 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P581 = PInt; pub type N581 = NInt; + pub type U582 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P582 = PInt; pub type N582 = NInt; + pub type U583 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P583 = PInt; pub type N583 = NInt; + pub type U584 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P584 = PInt; pub type N584 = NInt; + pub type U585 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P585 = PInt; pub type N585 = NInt; + pub type U586 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P586 = PInt; pub type N586 = NInt; + pub type U587 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P587 = PInt; pub type N587 = NInt; + pub type U588 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P588 = PInt; pub type N588 = NInt; + pub type U589 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P589 = PInt; pub type N589 = NInt; + pub type U590 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P590 = PInt; pub type N590 = NInt; + pub type U591 = UInt, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P591 = PInt; pub type N591 = NInt; + pub type U592 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P592 = PInt; pub type N592 = NInt; + pub type U593 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P593 = PInt; pub type N593 = NInt; + pub type U594 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P594 = PInt; pub type N594 = NInt; + pub type U595 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P595 = PInt; pub type N595 = NInt; + pub type U596 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P596 = PInt; pub type N596 = NInt; + pub type U597 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P597 = PInt; pub type N597 = NInt; + pub type U598 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P598 = PInt; pub type N598 = NInt; + pub type U599 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P599 = PInt; pub type N599 = NInt; + pub type U600 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P600 = PInt; pub type N600 = NInt; + pub type U601 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P601 = PInt; pub type N601 = NInt; + pub type U602 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P602 = PInt; pub type N602 = NInt; + pub type U603 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P603 = PInt; pub type N603 = NInt; + pub type U604 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P604 = PInt; pub type N604 = NInt; + pub type U605 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P605 = PInt; pub type N605 = NInt; + pub type U606 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P606 = PInt; pub type N606 = NInt; + pub type U607 = UInt, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P607 = PInt; pub type N607 = NInt; + pub type U608 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P608 = PInt; pub type N608 = NInt; + pub type U609 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P609 = PInt; pub type N609 = NInt; + pub type U610 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P610 = PInt; pub type N610 = NInt; + pub type U611 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P611 = PInt; pub type N611 = NInt; + pub type U612 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P612 = PInt; pub type N612 = NInt; + pub type U613 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P613 = PInt; pub type N613 = NInt; + pub type U614 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P614 = PInt; pub type N614 = NInt; + pub type U615 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P615 = PInt; pub type N615 = NInt; + pub type U616 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P616 = PInt; pub type N616 = NInt; + pub type U617 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P617 = PInt; pub type N617 = NInt; + pub type U618 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P618 = PInt; pub type N618 = NInt; + pub type U619 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P619 = PInt; pub type N619 = NInt; + pub type U620 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P620 = PInt; pub type N620 = NInt; + pub type U621 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P621 = PInt; pub type N621 = NInt; + pub type U622 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P622 = PInt; pub type N622 = NInt; + pub type U623 = UInt, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P623 = PInt; pub type N623 = NInt; + pub type U624 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P624 = PInt; pub type N624 = NInt; + pub type U625 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P625 = PInt; pub type N625 = NInt; + pub type U626 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P626 = PInt; pub type N626 = NInt; + pub type U627 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P627 = PInt; pub type N627 = NInt; + pub type U628 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P628 = PInt; pub type N628 = NInt; + pub type U629 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P629 = PInt; pub type N629 = NInt; + pub type U630 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P630 = PInt; pub type N630 = NInt; + pub type U631 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P631 = PInt; pub type N631 = NInt; + pub type U632 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P632 = PInt; pub type N632 = NInt; + pub type U633 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P633 = PInt; pub type N633 = NInt; + pub type U634 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P634 = PInt; pub type N634 = NInt; + pub type U635 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P635 = PInt; pub type N635 = NInt; + pub type U636 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P636 = PInt; pub type N636 = NInt; + pub type U637 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P637 = PInt; pub type N637 = NInt; + pub type U638 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P638 = PInt; pub type N638 = NInt; + pub type U639 = UInt, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P639 = PInt; pub type N639 = NInt; + pub type U640 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P640 = PInt; pub type N640 = NInt; + pub type U641 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P641 = PInt; pub type N641 = NInt; + pub type U642 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P642 = PInt; pub type N642 = NInt; + pub type U643 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P643 = PInt; pub type N643 = NInt; + pub type U644 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P644 = PInt; pub type N644 = NInt; + pub type U645 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P645 = PInt; pub type N645 = NInt; + pub type U646 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P646 = PInt; pub type N646 = NInt; + pub type U647 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P647 = PInt; pub type N647 = NInt; + pub type U648 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P648 = PInt; pub type N648 = NInt; + pub type U649 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P649 = PInt; pub type N649 = NInt; + pub type U650 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P650 = PInt; pub type N650 = NInt; + pub type U651 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P651 = PInt; pub type N651 = NInt; + pub type U652 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P652 = PInt; pub type N652 = NInt; + pub type U653 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P653 = PInt; pub type N653 = NInt; + pub type U654 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P654 = PInt; pub type N654 = NInt; + pub type U655 = UInt, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P655 = PInt; pub type N655 = NInt; + pub type U656 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P656 = PInt; pub type N656 = NInt; + pub type U657 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P657 = PInt; pub type N657 = NInt; + pub type U658 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P658 = PInt; pub type N658 = NInt; + pub type U659 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P659 = PInt; pub type N659 = NInt; + pub type U660 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P660 = PInt; pub type N660 = NInt; + pub type U661 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P661 = PInt; pub type N661 = NInt; + pub type U662 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P662 = PInt; pub type N662 = NInt; + pub type U663 = UInt, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P663 = PInt; pub type N663 = NInt; + pub type U664 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P664 = PInt; pub type N664 = NInt; + pub type U665 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P665 = PInt; pub type N665 = NInt; + pub type U666 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P666 = PInt; pub type N666 = NInt; + pub type U667 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P667 = PInt; pub type N667 = NInt; + pub type U668 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P668 = PInt; pub type N668 = NInt; + pub type U669 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P669 = PInt; pub type N669 = NInt; + pub type U670 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P670 = PInt; pub type N670 = NInt; + pub type U671 = UInt, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P671 = PInt; pub type N671 = NInt; + pub type U672 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P672 = PInt; pub type N672 = NInt; + pub type U673 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P673 = PInt; pub type N673 = NInt; + pub type U674 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P674 = PInt; pub type N674 = NInt; + pub type U675 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P675 = PInt; pub type N675 = NInt; + pub type U676 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P676 = PInt; pub type N676 = NInt; + pub type U677 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P677 = PInt; pub type N677 = NInt; + pub type U678 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P678 = PInt; pub type N678 = NInt; + pub type U679 = UInt, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P679 = PInt; pub type N679 = NInt; + pub type U680 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P680 = PInt; pub type N680 = NInt; + pub type U681 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P681 = PInt; pub type N681 = NInt; + pub type U682 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P682 = PInt; pub type N682 = NInt; + pub type U683 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P683 = PInt; pub type N683 = NInt; + pub type U684 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P684 = PInt; pub type N684 = NInt; + pub type U685 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P685 = PInt; pub type N685 = NInt; + pub type U686 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P686 = PInt; pub type N686 = NInt; + pub type U687 = UInt, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P687 = PInt; pub type N687 = NInt; + pub type U688 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P688 = PInt; pub type N688 = NInt; + pub type U689 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P689 = PInt; pub type N689 = NInt; + pub type U690 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P690 = PInt; pub type N690 = NInt; + pub type U691 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P691 = PInt; pub type N691 = NInt; + pub type U692 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P692 = PInt; pub type N692 = NInt; + pub type U693 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P693 = PInt; pub type N693 = NInt; + pub type U694 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P694 = PInt; pub type N694 = NInt; + pub type U695 = UInt, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P695 = PInt; pub type N695 = NInt; + pub type U696 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P696 = PInt; pub type N696 = NInt; + pub type U697 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P697 = PInt; pub type N697 = NInt; + pub type U698 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P698 = PInt; pub type N698 = NInt; + pub type U699 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P699 = PInt; pub type N699 = NInt; + pub type U700 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P700 = PInt; pub type N700 = NInt; + pub type U701 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P701 = PInt; pub type N701 = NInt; + pub type U702 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P702 = PInt; pub type N702 = NInt; + pub type U703 = UInt, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P703 = PInt; pub type N703 = NInt; + pub type U704 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P704 = PInt; pub type N704 = NInt; + pub type U705 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P705 = PInt; pub type N705 = NInt; + pub type U706 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P706 = PInt; pub type N706 = NInt; + pub type U707 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P707 = PInt; pub type N707 = NInt; + pub type U708 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P708 = PInt; pub type N708 = NInt; + pub type U709 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P709 = PInt; pub type N709 = NInt; + pub type U710 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P710 = PInt; pub type N710 = NInt; + pub type U711 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P711 = PInt; pub type N711 = NInt; + pub type U712 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P712 = PInt; pub type N712 = NInt; + pub type U713 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P713 = PInt; pub type N713 = NInt; + pub type U714 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P714 = PInt; pub type N714 = NInt; + pub type U715 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P715 = PInt; pub type N715 = NInt; + pub type U716 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P716 = PInt; pub type N716 = NInt; + pub type U717 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P717 = PInt; pub type N717 = NInt; + pub type U718 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P718 = PInt; pub type N718 = NInt; + pub type U719 = UInt, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P719 = PInt; pub type N719 = NInt; + pub type U720 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P720 = PInt; pub type N720 = NInt; + pub type U721 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P721 = PInt; pub type N721 = NInt; + pub type U722 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P722 = PInt; pub type N722 = NInt; + pub type U723 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P723 = PInt; pub type N723 = NInt; + pub type U724 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P724 = PInt; pub type N724 = NInt; + pub type U725 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P725 = PInt; pub type N725 = NInt; + pub type U726 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P726 = PInt; pub type N726 = NInt; + pub type U727 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P727 = PInt; pub type N727 = NInt; + pub type U728 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P728 = PInt; pub type N728 = NInt; + pub type U729 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P729 = PInt; pub type N729 = NInt; + pub type U730 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P730 = PInt; pub type N730 = NInt; + pub type U731 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P731 = PInt; pub type N731 = NInt; + pub type U732 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P732 = PInt; pub type N732 = NInt; + pub type U733 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P733 = PInt; pub type N733 = NInt; + pub type U734 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P734 = PInt; pub type N734 = NInt; + pub type U735 = UInt, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P735 = PInt; pub type N735 = NInt; + pub type U736 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P736 = PInt; pub type N736 = NInt; + pub type U737 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P737 = PInt; pub type N737 = NInt; + pub type U738 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P738 = PInt; pub type N738 = NInt; + pub type U739 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P739 = PInt; pub type N739 = NInt; + pub type U740 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P740 = PInt; pub type N740 = NInt; + pub type U741 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P741 = PInt; pub type N741 = NInt; + pub type U742 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P742 = PInt; pub type N742 = NInt; + pub type U743 = UInt, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P743 = PInt; pub type N743 = NInt; + pub type U744 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P744 = PInt; pub type N744 = NInt; + pub type U745 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P745 = PInt; pub type N745 = NInt; + pub type U746 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P746 = PInt; pub type N746 = NInt; + pub type U747 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P747 = PInt; pub type N747 = NInt; + pub type U748 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P748 = PInt; pub type N748 = NInt; + pub type U749 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P749 = PInt; pub type N749 = NInt; + pub type U750 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P750 = PInt; pub type N750 = NInt; + pub type U751 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P751 = PInt; pub type N751 = NInt; + pub type U752 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P752 = PInt; pub type N752 = NInt; + pub type U753 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P753 = PInt; pub type N753 = NInt; + pub type U754 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P754 = PInt; pub type N754 = NInt; + pub type U755 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P755 = PInt; pub type N755 = NInt; + pub type U756 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P756 = PInt; pub type N756 = NInt; + pub type U757 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P757 = PInt; pub type N757 = NInt; + pub type U758 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P758 = PInt; pub type N758 = NInt; + pub type U759 = UInt, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P759 = PInt; pub type N759 = NInt; + pub type U760 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P760 = PInt; pub type N760 = NInt; + pub type U761 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P761 = PInt; pub type N761 = NInt; + pub type U762 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P762 = PInt; pub type N762 = NInt; + pub type U763 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P763 = PInt; pub type N763 = NInt; + pub type U764 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P764 = PInt; pub type N764 = NInt; + pub type U765 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P765 = PInt; pub type N765 = NInt; + pub type U766 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P766 = PInt; pub type N766 = NInt; + pub type U767 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P767 = PInt; pub type N767 = NInt; + pub type U768 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P768 = PInt; pub type N768 = NInt; + pub type U769 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P769 = PInt; pub type N769 = NInt; + pub type U770 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P770 = PInt; pub type N770 = NInt; + pub type U771 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P771 = PInt; pub type N771 = NInt; + pub type U772 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P772 = PInt; pub type N772 = NInt; + pub type U773 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P773 = PInt; pub type N773 = NInt; + pub type U774 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P774 = PInt; pub type N774 = NInt; + pub type U775 = UInt, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P775 = PInt; pub type N775 = NInt; + pub type U776 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P776 = PInt; pub type N776 = NInt; + pub type U777 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P777 = PInt; pub type N777 = NInt; + pub type U778 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P778 = PInt; pub type N778 = NInt; + pub type U779 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P779 = PInt; pub type N779 = NInt; + pub type U780 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P780 = PInt; pub type N780 = NInt; + pub type U781 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P781 = PInt; pub type N781 = NInt; + pub type U782 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P782 = PInt; pub type N782 = NInt; + pub type U783 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P783 = PInt; pub type N783 = NInt; + pub type U784 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P784 = PInt; pub type N784 = NInt; + pub type U785 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P785 = PInt; pub type N785 = NInt; + pub type U786 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P786 = PInt; pub type N786 = NInt; + pub type U787 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P787 = PInt; pub type N787 = NInt; + pub type U788 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P788 = PInt; pub type N788 = NInt; + pub type U789 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P789 = PInt; pub type N789 = NInt; + pub type U790 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P790 = PInt; pub type N790 = NInt; + pub type U791 = UInt, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P791 = PInt; pub type N791 = NInt; + pub type U792 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P792 = PInt; pub type N792 = NInt; + pub type U793 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P793 = PInt; pub type N793 = NInt; + pub type U794 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P794 = PInt; pub type N794 = NInt; + pub type U795 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P795 = PInt; pub type N795 = NInt; + pub type U796 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P796 = PInt; pub type N796 = NInt; + pub type U797 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P797 = PInt; pub type N797 = NInt; + pub type U798 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P798 = PInt; pub type N798 = NInt; + pub type U799 = UInt, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P799 = PInt; pub type N799 = NInt; + pub type U800 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P800 = PInt; pub type N800 = NInt; + pub type U801 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P801 = PInt; pub type N801 = NInt; + pub type U802 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P802 = PInt; pub type N802 = NInt; + pub type U803 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P803 = PInt; pub type N803 = NInt; + pub type U804 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P804 = PInt; pub type N804 = NInt; + pub type U805 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P805 = PInt; pub type N805 = NInt; + pub type U806 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P806 = PInt; pub type N806 = NInt; + pub type U807 = UInt, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P807 = PInt; pub type N807 = NInt; + pub type U808 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P808 = PInt; pub type N808 = NInt; + pub type U809 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P809 = PInt; pub type N809 = NInt; + pub type U810 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P810 = PInt; pub type N810 = NInt; + pub type U811 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P811 = PInt; pub type N811 = NInt; + pub type U812 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P812 = PInt; pub type N812 = NInt; + pub type U813 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P813 = PInt; pub type N813 = NInt; + pub type U814 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P814 = PInt; pub type N814 = NInt; + pub type U815 = UInt, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P815 = PInt; pub type N815 = NInt; + pub type U816 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P816 = PInt; pub type N816 = NInt; + pub type U817 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P817 = PInt; pub type N817 = NInt; + pub type U818 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P818 = PInt; pub type N818 = NInt; + pub type U819 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P819 = PInt; pub type N819 = NInt; + pub type U820 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P820 = PInt; pub type N820 = NInt; + pub type U821 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P821 = PInt; pub type N821 = NInt; + pub type U822 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P822 = PInt; pub type N822 = NInt; + pub type U823 = UInt, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P823 = PInt; pub type N823 = NInt; + pub type U824 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P824 = PInt; pub type N824 = NInt; + pub type U825 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P825 = PInt; pub type N825 = NInt; + pub type U826 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P826 = PInt; pub type N826 = NInt; + pub type U827 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P827 = PInt; pub type N827 = NInt; + pub type U828 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P828 = PInt; pub type N828 = NInt; + pub type U829 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P829 = PInt; pub type N829 = NInt; + pub type U830 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P830 = PInt; pub type N830 = NInt; + pub type U831 = UInt, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P831 = PInt; pub type N831 = NInt; + pub type U832 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P832 = PInt; pub type N832 = NInt; + pub type U833 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P833 = PInt; pub type N833 = NInt; + pub type U834 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P834 = PInt; pub type N834 = NInt; + pub type U835 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P835 = PInt; pub type N835 = NInt; + pub type U836 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P836 = PInt; pub type N836 = NInt; + pub type U837 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P837 = PInt; pub type N837 = NInt; + pub type U838 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P838 = PInt; pub type N838 = NInt; + pub type U839 = UInt, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P839 = PInt; pub type N839 = NInt; + pub type U840 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P840 = PInt; pub type N840 = NInt; + pub type U841 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P841 = PInt; pub type N841 = NInt; + pub type U842 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P842 = PInt; pub type N842 = NInt; + pub type U843 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P843 = PInt; pub type N843 = NInt; + pub type U844 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P844 = PInt; pub type N844 = NInt; + pub type U845 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P845 = PInt; pub type N845 = NInt; + pub type U846 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P846 = PInt; pub type N846 = NInt; + pub type U847 = UInt, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P847 = PInt; pub type N847 = NInt; + pub type U848 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P848 = PInt; pub type N848 = NInt; + pub type U849 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P849 = PInt; pub type N849 = NInt; + pub type U850 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P850 = PInt; pub type N850 = NInt; + pub type U851 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P851 = PInt; pub type N851 = NInt; + pub type U852 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P852 = PInt; pub type N852 = NInt; + pub type U853 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P853 = PInt; pub type N853 = NInt; + pub type U854 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P854 = PInt; pub type N854 = NInt; + pub type U855 = UInt, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P855 = PInt; pub type N855 = NInt; + pub type U856 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P856 = PInt; pub type N856 = NInt; + pub type U857 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P857 = PInt; pub type N857 = NInt; + pub type U858 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P858 = PInt; pub type N858 = NInt; + pub type U859 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P859 = PInt; pub type N859 = NInt; + pub type U860 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P860 = PInt; pub type N860 = NInt; + pub type U861 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P861 = PInt; pub type N861 = NInt; + pub type U862 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P862 = PInt; pub type N862 = NInt; + pub type U863 = UInt, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P863 = PInt; pub type N863 = NInt; + pub type U864 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P864 = PInt; pub type N864 = NInt; + pub type U865 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P865 = PInt; pub type N865 = NInt; + pub type U866 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P866 = PInt; pub type N866 = NInt; + pub type U867 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P867 = PInt; pub type N867 = NInt; + pub type U868 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P868 = PInt; pub type N868 = NInt; + pub type U869 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P869 = PInt; pub type N869 = NInt; + pub type U870 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P870 = PInt; pub type N870 = NInt; + pub type U871 = UInt, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P871 = PInt; pub type N871 = NInt; + pub type U872 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P872 = PInt; pub type N872 = NInt; + pub type U873 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P873 = PInt; pub type N873 = NInt; + pub type U874 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P874 = PInt; pub type N874 = NInt; + pub type U875 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P875 = PInt; pub type N875 = NInt; + pub type U876 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P876 = PInt; pub type N876 = NInt; + pub type U877 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P877 = PInt; pub type N877 = NInt; + pub type U878 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P878 = PInt; pub type N878 = NInt; + pub type U879 = UInt, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P879 = PInt; pub type N879 = NInt; + pub type U880 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P880 = PInt; pub type N880 = NInt; + pub type U881 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P881 = PInt; pub type N881 = NInt; + pub type U882 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P882 = PInt; pub type N882 = NInt; + pub type U883 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P883 = PInt; pub type N883 = NInt; + pub type U884 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P884 = PInt; pub type N884 = NInt; + pub type U885 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P885 = PInt; pub type N885 = NInt; + pub type U886 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P886 = PInt; pub type N886 = NInt; + pub type U887 = UInt, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P887 = PInt; pub type N887 = NInt; + pub type U888 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P888 = PInt; pub type N888 = NInt; + pub type U889 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P889 = PInt; pub type N889 = NInt; + pub type U890 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P890 = PInt; pub type N890 = NInt; + pub type U891 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P891 = PInt; pub type N891 = NInt; + pub type U892 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P892 = PInt; pub type N892 = NInt; + pub type U893 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P893 = PInt; pub type N893 = NInt; + pub type U894 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P894 = PInt; pub type N894 = NInt; + pub type U895 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P895 = PInt; pub type N895 = NInt; + pub type U896 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P896 = PInt; pub type N896 = NInt; + pub type U897 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P897 = PInt; pub type N897 = NInt; + pub type U898 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P898 = PInt; pub type N898 = NInt; + pub type U899 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P899 = PInt; pub type N899 = NInt; + pub type U900 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P900 = PInt; pub type N900 = NInt; + pub type U901 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P901 = PInt; pub type N901 = NInt; + pub type U902 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P902 = PInt; pub type N902 = NInt; + pub type U903 = UInt, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P903 = PInt; pub type N903 = NInt; + pub type U904 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P904 = PInt; pub type N904 = NInt; + pub type U905 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P905 = PInt; pub type N905 = NInt; + pub type U906 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P906 = PInt; pub type N906 = NInt; + pub type U907 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P907 = PInt; pub type N907 = NInt; + pub type U908 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P908 = PInt; pub type N908 = NInt; + pub type U909 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P909 = PInt; pub type N909 = NInt; + pub type U910 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P910 = PInt; pub type N910 = NInt; + pub type U911 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P911 = PInt; pub type N911 = NInt; + pub type U912 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P912 = PInt; pub type N912 = NInt; + pub type U913 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P913 = PInt; pub type N913 = NInt; + pub type U914 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P914 = PInt; pub type N914 = NInt; + pub type U915 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P915 = PInt; pub type N915 = NInt; + pub type U916 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P916 = PInt; pub type N916 = NInt; + pub type U917 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P917 = PInt; pub type N917 = NInt; + pub type U918 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P918 = PInt; pub type N918 = NInt; + pub type U919 = UInt, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P919 = PInt; pub type N919 = NInt; + pub type U920 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P920 = PInt; pub type N920 = NInt; + pub type U921 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P921 = PInt; pub type N921 = NInt; + pub type U922 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P922 = PInt; pub type N922 = NInt; + pub type U923 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P923 = PInt; pub type N923 = NInt; + pub type U924 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P924 = PInt; pub type N924 = NInt; + pub type U925 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P925 = PInt; pub type N925 = NInt; + pub type U926 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P926 = PInt; pub type N926 = NInt; + pub type U927 = UInt, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P927 = PInt; pub type N927 = NInt; + pub type U928 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P928 = PInt; pub type N928 = NInt; + pub type U929 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P929 = PInt; pub type N929 = NInt; + pub type U930 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P930 = PInt; pub type N930 = NInt; + pub type U931 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P931 = PInt; pub type N931 = NInt; + pub type U932 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P932 = PInt; pub type N932 = NInt; + pub type U933 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P933 = PInt; pub type N933 = NInt; + pub type U934 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P934 = PInt; pub type N934 = NInt; + pub type U935 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P935 = PInt; pub type N935 = NInt; + pub type U936 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P936 = PInt; pub type N936 = NInt; + pub type U937 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P937 = PInt; pub type N937 = NInt; + pub type U938 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P938 = PInt; pub type N938 = NInt; + pub type U939 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P939 = PInt; pub type N939 = NInt; + pub type U940 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P940 = PInt; pub type N940 = NInt; + pub type U941 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P941 = PInt; pub type N941 = NInt; + pub type U942 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P942 = PInt; pub type N942 = NInt; + pub type U943 = UInt, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P943 = PInt; pub type N943 = NInt; + pub type U944 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P944 = PInt; pub type N944 = NInt; + pub type U945 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P945 = PInt; pub type N945 = NInt; + pub type U946 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P946 = PInt; pub type N946 = NInt; + pub type U947 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P947 = PInt; pub type N947 = NInt; + pub type U948 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P948 = PInt; pub type N948 = NInt; + pub type U949 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P949 = PInt; pub type N949 = NInt; + pub type U950 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P950 = PInt; pub type N950 = NInt; + pub type U951 = UInt, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P951 = PInt; pub type N951 = NInt; + pub type U952 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P952 = PInt; pub type N952 = NInt; + pub type U953 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P953 = PInt; pub type N953 = NInt; + pub type U954 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P954 = PInt; pub type N954 = NInt; + pub type U955 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P955 = PInt; pub type N955 = NInt; + pub type U956 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P956 = PInt; pub type N956 = NInt; + pub type U957 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P957 = PInt; pub type N957 = NInt; + pub type U958 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P958 = PInt; pub type N958 = NInt; + pub type U959 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P959 = PInt; pub type N959 = NInt; + pub type U960 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P960 = PInt; pub type N960 = NInt; + pub type U961 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>; + pub type P961 = PInt; pub type N961 = NInt; + pub type U962 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>; + pub type P962 = PInt; pub type N962 = NInt; + pub type U963 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>; + pub type P963 = PInt; pub type N963 = NInt; + pub type U964 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>; + pub type P964 = PInt; pub type N964 = NInt; + pub type U965 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>; + pub type P965 = PInt; pub type N965 = NInt; + pub type U966 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>; + pub type P966 = PInt; pub type N966 = NInt; + pub type U967 = UInt, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>; + pub type P967 = PInt; pub type N967 = NInt; + pub type U968 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>; + pub type P968 = PInt; pub type N968 = NInt; + pub type U969 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>; + pub type P969 = PInt; pub type N969 = NInt; + pub type U970 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>; + pub type P970 = PInt; pub type N970 = NInt; + pub type U971 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B1>; + pub type P971 = PInt; pub type N971 = NInt; + pub type U972 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>; + pub type P972 = PInt; pub type N972 = NInt; + pub type U973 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>; + pub type P973 = PInt; pub type N973 = NInt; + pub type U974 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>; + pub type P974 = PInt; pub type N974 = NInt; + pub type U975 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B1>; + pub type P975 = PInt; pub type N975 = NInt; + pub type U976 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P976 = PInt; pub type N976 = NInt; + pub type U977 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>; + pub type P977 = PInt; pub type N977 = NInt; + pub type U978 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>; + pub type P978 = PInt; pub type N978 = NInt; + pub type U979 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>; + pub type P979 = PInt; pub type N979 = NInt; + pub type U980 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>; + pub type P980 = PInt; pub type N980 = NInt; + pub type U981 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B1>; + pub type P981 = PInt; pub type N981 = NInt; + pub type U982 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>; + pub type P982 = PInt; pub type N982 = NInt; + pub type U983 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>; + pub type P983 = PInt; pub type N983 = NInt; + pub type U984 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>; + pub type P984 = PInt; pub type N984 = NInt; + pub type U985 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>; + pub type P985 = PInt; pub type N985 = NInt; + pub type U986 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>; + pub type P986 = PInt; pub type N986 = NInt; + pub type U987 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>; + pub type P987 = PInt; pub type N987 = NInt; + pub type U988 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>; + pub type P988 = PInt; pub type N988 = NInt; + pub type U989 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>; + pub type P989 = PInt; pub type N989 = NInt; + pub type U990 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>; + pub type P990 = PInt; pub type N990 = NInt; + pub type U991 = UInt, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>; + pub type P991 = PInt; pub type N991 = NInt; + pub type U992 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P992 = PInt; pub type N992 = NInt; + pub type U993 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>; + pub type P993 = PInt; pub type N993 = NInt; + pub type U994 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>; + pub type P994 = PInt; pub type N994 = NInt; + pub type U995 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B1>; + pub type P995 = PInt; pub type N995 = NInt; + pub type U996 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>; + pub type P996 = PInt; pub type N996 = NInt; + pub type U997 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>; + pub type P997 = PInt; pub type N997 = NInt; + pub type U998 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>; + pub type P998 = PInt; pub type N998 = NInt; + pub type U999 = UInt, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>; + pub type P999 = PInt; pub type N999 = NInt; + pub type U1000 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>; + pub type P1000 = PInt; pub type N1000 = NInt; + pub type U1001 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>; + pub type P1001 = PInt; pub type N1001 = NInt; + pub type U1002 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>; + pub type P1002 = PInt; pub type N1002 = NInt; + pub type U1003 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>; + pub type P1003 = PInt; pub type N1003 = NInt; + pub type U1004 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>; + pub type P1004 = PInt; pub type N1004 = NInt; + pub type U1005 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>; + pub type P1005 = PInt; pub type N1005 = NInt; + pub type U1006 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B0>; + pub type P1006 = PInt; pub type N1006 = NInt; + pub type U1007 = UInt, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>, B1>; + pub type P1007 = PInt; pub type N1007 = NInt; + pub type U1008 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>; + pub type P1008 = PInt; pub type N1008 = NInt; + pub type U1009 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + pub type P1009 = PInt; pub type N1009 = NInt; + pub type U1010 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>; + pub type P1010 = PInt; pub type N1010 = NInt; + pub type U1011 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + pub type P1011 = PInt; pub type N1011 = NInt; + pub type U1012 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>; + pub type P1012 = PInt; pub type N1012 = NInt; + pub type U1013 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>; + pub type P1013 = PInt; pub type N1013 = NInt; + pub type U1014 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B0>; + pub type P1014 = PInt; pub type N1014 = NInt; + pub type U1015 = UInt, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>, B1>; + pub type P1015 = PInt; pub type N1015 = NInt; + pub type U1016 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>; + pub type P1016 = PInt; pub type N1016 = NInt; + pub type U1017 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>; + pub type P1017 = PInt; pub type N1017 = NInt; + pub type U1018 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>; + pub type P1018 = PInt; pub type N1018 = NInt; + pub type U1019 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B1>; + pub type P1019 = PInt; pub type N1019 = NInt; + pub type U1020 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>; + pub type P1020 = PInt; pub type N1020 = NInt; + pub type U1021 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>; + pub type P1021 = PInt; pub type N1021 = NInt; + pub type U1022 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B0>; + pub type P1022 = PInt; pub type N1022 = NInt; + pub type U1023 = UInt, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>, B1>; + pub type P1023 = PInt; pub type N1023 = NInt; + pub type U1024 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1024 = PInt; pub type N1024 = NInt; + pub type U2048 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2048 = PInt; pub type N2048 = NInt; + pub type U4096 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4096 = PInt; pub type N4096 = NInt; + pub type U8192 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8192 = PInt; pub type N8192 = NInt; + pub type U16384 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P16384 = PInt; pub type N16384 = NInt; + pub type U32768 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P32768 = PInt; pub type N32768 = NInt; + pub type U65536 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P65536 = PInt; pub type N65536 = NInt; + pub type U131072 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P131072 = PInt; pub type N131072 = NInt; + pub type U262144 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P262144 = PInt; pub type N262144 = NInt; + pub type U524288 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P524288 = PInt; pub type N524288 = NInt; + pub type U1048576 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1048576 = PInt; pub type N1048576 = NInt; + pub type U2097152 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2097152 = PInt; pub type N2097152 = NInt; + pub type U4194304 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4194304 = PInt; pub type N4194304 = NInt; + pub type U8388608 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8388608 = PInt; pub type N8388608 = NInt; + pub type U16777216 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P16777216 = PInt; pub type N16777216 = NInt; + pub type U33554432 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P33554432 = PInt; pub type N33554432 = NInt; + pub type U67108864 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P67108864 = PInt; pub type N67108864 = NInt; + pub type U134217728 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P134217728 = PInt; pub type N134217728 = NInt; + pub type U268435456 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P268435456 = PInt; pub type N268435456 = NInt; + pub type U536870912 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P536870912 = PInt; pub type N536870912 = NInt; + pub type U1073741824 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1073741824 = PInt; pub type N1073741824 = NInt; + pub type U2147483648 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2147483648 = PInt; pub type N2147483648 = NInt; + pub type U4294967296 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4294967296 = PInt; pub type N4294967296 = NInt; + pub type U8589934592 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8589934592 = PInt; pub type N8589934592 = NInt; + pub type U17179869184 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P17179869184 = PInt; pub type N17179869184 = NInt; + pub type U34359738368 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P34359738368 = PInt; pub type N34359738368 = NInt; + pub type U68719476736 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P68719476736 = PInt; pub type N68719476736 = NInt; + pub type U137438953472 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P137438953472 = PInt; pub type N137438953472 = NInt; + pub type U274877906944 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P274877906944 = PInt; pub type N274877906944 = NInt; + pub type U549755813888 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P549755813888 = PInt; pub type N549755813888 = NInt; + pub type U1099511627776 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1099511627776 = PInt; pub type N1099511627776 = NInt; + pub type U2199023255552 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2199023255552 = PInt; pub type N2199023255552 = NInt; + pub type U4398046511104 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4398046511104 = PInt; pub type N4398046511104 = NInt; + pub type U8796093022208 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P8796093022208 = PInt; pub type N8796093022208 = NInt; + pub type U17592186044416 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P17592186044416 = PInt; pub type N17592186044416 = NInt; + pub type U35184372088832 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P35184372088832 = PInt; pub type N35184372088832 = NInt; + pub type U70368744177664 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P70368744177664 = PInt; pub type N70368744177664 = NInt; + pub type U140737488355328 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P140737488355328 = PInt; pub type N140737488355328 = NInt; + pub type U281474976710656 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P281474976710656 = PInt; pub type N281474976710656 = NInt; + pub type U562949953421312 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P562949953421312 = PInt; pub type N562949953421312 = NInt; + pub type U1125899906842624 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1125899906842624 = PInt; pub type N1125899906842624 = NInt; + pub type U2251799813685248 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2251799813685248 = PInt; pub type N2251799813685248 = NInt; + pub type U4503599627370496 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4503599627370496 = PInt; pub type N4503599627370496 = NInt; + pub type U9007199254740992 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P9007199254740992 = PInt; pub type N9007199254740992 = NInt; + pub type U18014398509481984 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P18014398509481984 = PInt; pub type N18014398509481984 = NInt; + pub type U36028797018963968 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P36028797018963968 = PInt; pub type N36028797018963968 = NInt; + pub type U72057594037927936 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P72057594037927936 = PInt; pub type N72057594037927936 = NInt; + pub type U144115188075855872 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P144115188075855872 = PInt; pub type N144115188075855872 = NInt; + pub type U288230376151711744 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P288230376151711744 = PInt; pub type N288230376151711744 = NInt; + pub type U576460752303423488 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P576460752303423488 = PInt; pub type N576460752303423488 = NInt; + pub type U1152921504606846976 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1152921504606846976 = PInt; pub type N1152921504606846976 = NInt; + pub type U2305843009213693952 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P2305843009213693952 = PInt; pub type N2305843009213693952 = NInt; + pub type U4611686018427387904 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P4611686018427387904 = PInt; pub type N4611686018427387904 = NInt; + pub type U9223372036854775808 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type U10000 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>; + pub type P10000 = PInt; pub type N10000 = NInt; + pub type U100000 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + pub type P100000 = PInt; pub type N100000 = NInt; + pub type U1000000 = UInt, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000 = PInt; pub type N1000000 = NInt; + pub type U10000000 = UInt, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000 = PInt; pub type N10000000 = NInt; + pub type U100000000 = UInt, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000 = PInt; pub type N100000000 = NInt; + pub type U1000000000 = UInt, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000 = PInt; pub type N1000000000 = NInt; + pub type U10000000000 = UInt, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000000 = PInt; pub type N10000000000 = NInt; + pub type U100000000000 = UInt, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000000 = PInt; pub type N100000000000 = NInt; + pub type U1000000000000 = UInt, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000000 = PInt; pub type N1000000000000 = NInt; + pub type U10000000000000 = UInt, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000000000 = PInt; pub type N10000000000000 = NInt; + pub type U100000000000000 = UInt, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000000000 = PInt; pub type N100000000000000 = NInt; + pub type U1000000000000000 = UInt, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000000000 = PInt; pub type N1000000000000000 = NInt; + pub type U10000000000000000 = UInt, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B0>, B1>, B1>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P10000000000000000 = PInt; pub type N10000000000000000 = NInt; + pub type U100000000000000000 = UInt, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P100000000000000000 = PInt; pub type N100000000000000000 = NInt; + pub type U1000000000000000000 = UInt, B1>, B0>, B1>, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B1>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B0>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + pub type P1000000000000000000 = PInt; pub type N1000000000000000000 = NInt; + pub type U10000000000000000000 = UInt, B0>, B0>, B0>, B1>, B0>, B1>, B0>, B1>, B1>, B0>, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; +} \ No newline at end of file diff --git a/target/release/build/typenum-d836ce8ae56b147f/out/op.rs b/target/release/build/typenum-d836ce8ae56b147f/out/op.rs new file mode 100644 index 0000000..ce6f3e0 --- /dev/null +++ b/target/release/build/typenum-d836ce8ae56b147f/out/op.rs @@ -0,0 +1,1030 @@ + +/** +Convenient type operations. + +Any types representing values must be able to be expressed as `ident`s. That means they need to be +in scope. + +For example, `P5` is okay, but `typenum::P5` is not. + +You may combine operators arbitrarily, although doing so excessively may require raising the +recursion limit. + +# Example +```rust +#![recursion_limit="128"] +#[macro_use] extern crate typenum; +use typenum::consts::*; + +fn main() { + assert_type!( + op!(min((P1 - P2) * (N3 + N7), P5 * (P3 + P4)) == P10) + ); +} +``` +Operators are evaluated based on the operator precedence outlined +[here](https://doc.rust-lang.org/reference.html#operator-precedence). + +The full list of supported operators and functions is as follows: + +`*`, `/`, `%`, `+`, `-`, `<<`, `>>`, `&`, `^`, `|`, `==`, `!=`, `<=`, `>=`, `<`, `>`, `cmp`, `sqr`, `sqrt`, `abs`, `cube`, `pow`, `min`, `max`, `log2`, `gcd` + +They all expand to type aliases defined in the `operator_aliases` module. Here is an expanded list, +including examples: + +--- +Operator `*`. Expands to `Prod`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P2 * P3), P6); +# } +``` + +--- +Operator `/`. Expands to `Quot`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P6 / P2), P3); +# } +``` + +--- +Operator `%`. Expands to `Mod`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 % P3), P2); +# } +``` + +--- +Operator `+`. Expands to `Sum`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P2 + P3), P5); +# } +``` + +--- +Operator `-`. Expands to `Diff`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P2 - P3), N1); +# } +``` + +--- +Operator `<<`. Expands to `Shleft`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U1 << U5), U32); +# } +``` + +--- +Operator `>>`. Expands to `Shright`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U32 >> U5), U1); +# } +``` + +--- +Operator `&`. Expands to `And`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U5 & U3), U1); +# } +``` + +--- +Operator `^`. Expands to `Xor`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U5 ^ U3), U6); +# } +``` + +--- +Operator `|`. Expands to `Or`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(U5 | U3), U7); +# } +``` + +--- +Operator `==`. Expands to `Eq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 == P3 + P2), True); +# } +``` + +--- +Operator `!=`. Expands to `NotEq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 != P3 + P2), False); +# } +``` + +--- +Operator `<=`. Expands to `LeEq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P6 <= P3 + P2), False); +# } +``` + +--- +Operator `>=`. Expands to `GrEq`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P6 >= P3 + P2), True); +# } +``` + +--- +Operator `<`. Expands to `Le`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P4 < P3 + P2), True); +# } +``` + +--- +Operator `>`. Expands to `Gr`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(P5 < P3 + P2), False); +# } +``` + +--- +Operator `cmp`. Expands to `Compare`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(cmp(P2, P3)), Less); +# } +``` + +--- +Operator `sqr`. Expands to `Square`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(sqr(P2)), P4); +# } +``` + +--- +Operator `sqrt`. Expands to `Sqrt`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(sqrt(U9)), U3); +# } +``` + +--- +Operator `abs`. Expands to `AbsVal`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(abs(N2)), P2); +# } +``` + +--- +Operator `cube`. Expands to `Cube`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(cube(P2)), P8); +# } +``` + +--- +Operator `pow`. Expands to `Exp`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(pow(P2, P3)), P8); +# } +``` + +--- +Operator `min`. Expands to `Minimum`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(min(P2, P3)), P2); +# } +``` + +--- +Operator `max`. Expands to `Maximum`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(max(P2, P3)), P3); +# } +``` + +--- +Operator `log2`. Expands to `Log2`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(log2(U9)), U3); +# } +``` + +--- +Operator `gcd`. Expands to `Gcf`. + +```rust +# #[macro_use] extern crate typenum; +# use typenum::*; +# fn main() { +assert_type_eq!(op!(gcd(U9, U21)), U3); +# } +``` + +*/ +#[macro_export(local_inner_macros)] +macro_rules! op { + ($($tail:tt)*) => ( __op_internal__!($($tail)*) ); +} + + #[doc(hidden)] + #[macro_export(local_inner_macros)] + macro_rules! __op_internal__ { + +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: cmp $($tail:tt)*) => ( + __op_internal__!(@stack[Compare, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: sqr $($tail:tt)*) => ( + __op_internal__!(@stack[Square, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: sqrt $($tail:tt)*) => ( + __op_internal__!(@stack[Sqrt, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: abs $($tail:tt)*) => ( + __op_internal__!(@stack[AbsVal, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: cube $($tail:tt)*) => ( + __op_internal__!(@stack[Cube, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: pow $($tail:tt)*) => ( + __op_internal__!(@stack[Exp, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: min $($tail:tt)*) => ( + __op_internal__!(@stack[Minimum, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: max $($tail:tt)*) => ( + __op_internal__!(@stack[Maximum, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: log2 $($tail:tt)*) => ( + __op_internal__!(@stack[Log2, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: gcd $($tail:tt)*) => ( + __op_internal__!(@stack[Gcf, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[LParen, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: , $($tail:tt)*) => ( + __op_internal__!(@stack[LParen, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$stack_top:ident, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: , $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$stack_top, $($queue,)*] @tail: , $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: * $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: * $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: * $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: * $($tail:tt)*) => ( + __op_internal__!(@stack[Prod, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: / $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: / $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: / $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: / $($tail:tt)*) => ( + __op_internal__!(@stack[Quot, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: % $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: % $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: % $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: % $($tail:tt)*) => ( + __op_internal__!(@stack[Mod, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: + $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: + $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: + $($tail:tt)*) => ( + __op_internal__!(@stack[Sum, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: - $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: - $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: - $($tail:tt)*) => ( + __op_internal__!(@stack[Diff, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: << $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: << $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: << $($tail:tt)*) => ( + __op_internal__!(@stack[Shleft, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: >> $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >> $($tail:tt)*) => ( + __op_internal__!(@stack[Shright, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: & $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: & $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: & $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: & $($tail:tt)*) => ( + __op_internal__!(@stack[And, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: ^ $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ^ $($tail:tt)*) => ( + __op_internal__!(@stack[Xor, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: | $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: | $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: | $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: | $($tail:tt)*) => ( + __op_internal__!(@stack[Or, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: == $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: == $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: == $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: == $($tail:tt)*) => ( + __op_internal__!(@stack[Eq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: != $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: != $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: != $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: != $($tail:tt)*) => ( + __op_internal__!(@stack[NotEq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: <= $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: <= $($tail:tt)*) => ( + __op_internal__!(@stack[LeEq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: >= $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: >= $($tail:tt)*) => ( + __op_internal__!(@stack[GrEq, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: < $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: < $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: < $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: < $($tail:tt)*) => ( + __op_internal__!(@stack[Le, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[Prod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Prod, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Quot, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Quot, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Mod, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Mod, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Sum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sum, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Diff, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Diff, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Shleft, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shleft, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Shright, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Shright, $($queue,)*] @tail: > $($tail)*) +); +(@stack[And, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[And, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Xor, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Xor, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Or, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Or, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Eq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Eq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[NotEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[NotEq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[LeEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[LeEq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[GrEq, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[GrEq, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Le, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Le, $($queue,)*] @tail: > $($tail)*) +); +(@stack[Gr, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gr, $($queue,)*] @tail: > $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: > $($tail:tt)*) => ( + __op_internal__!(@stack[Gr, $($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: ( $($stuff:tt)* ) $($tail:tt)* ) + => ( + __op_internal__!(@stack[LParen, $($stack,)*] @queue[$($queue,)*] + @tail: $($stuff)* RParen $($tail)*) +); +(@stack[LParen, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: RParen $($tail:tt)*) => ( + __op_internal__!(@rp3 @stack[$($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$stack_top:ident, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: RParen $($tail:tt)*) + => ( + __op_internal__!(@stack[$($stack,)*] @queue[$stack_top, $($queue,)*] @tail: RParen $($tail)*) +); +(@rp3 @stack[Compare, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Compare, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Square, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Square, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Sqrt, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Sqrt, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[AbsVal, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[AbsVal, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Cube, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Cube, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Exp, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Exp, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Minimum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Minimum, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Maximum, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Maximum, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Log2, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Log2, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[Gcf, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[Gcf, $($queue,)*] @tail: $($tail)*) +); +(@rp3 @stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$($queue,)*] @tail: $($tail)*) +); +(@stack[$($stack:ident,)*] @queue[$($queue:ident,)*] @tail: $num:ident $($tail:tt)*) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$num, $($queue,)*] @tail: $($tail)*) +); +(@stack[] @queue[$($queue:ident,)*] @tail: ) => ( + __op_internal__!(@reverse[] @input: $($queue,)*) +); +(@stack[$stack_top:ident, $($stack:ident,)*] @queue[$($queue:ident,)*] @tail:) => ( + __op_internal__!(@stack[$($stack,)*] @queue[$stack_top, $($queue,)*] @tail: ) +); +(@reverse[$($revved:ident,)*] @input: $head:ident, $($tail:ident,)* ) => ( + __op_internal__!(@reverse[$head, $($revved,)*] @input: $($tail,)*) +); +(@reverse[$($revved:ident,)*] @input: ) => ( + __op_internal__!(@eval @stack[] @input[$($revved,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Prod, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Prod<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Quot, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Quot<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Mod, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Mod<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Sum, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Sum<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Diff, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Diff<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Shleft, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Shleft<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Shright, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Shright<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[And, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::And<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Xor, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Xor<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Or, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Or<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Eq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Eq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[NotEq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::NotEq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[LeEq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::LeEq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[GrEq, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::GrEq<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Le, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Le<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Gr, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Gr<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Compare, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Compare<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Exp, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Exp<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Minimum, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Minimum<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Maximum, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Maximum<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $b:ty, $($stack:ty,)*] @input[Gcf, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Gcf<$b, $a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Square, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Square<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Sqrt, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Sqrt<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[AbsVal, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::AbsVal<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Cube, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Cube<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$a:ty, $($stack:ty,)*] @input[Log2, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$crate::Log2<$a>, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$($stack:ty,)*] @input[$head:ident, $($tail:ident,)*]) => ( + __op_internal__!(@eval @stack[$head, $($stack,)*] @input[$($tail,)*]) +); +(@eval @stack[$stack:ty,] @input[]) => ( + $stack +); +($($tail:tt)* ) => ( + __op_internal__!(@stack[] @queue[] @tail: $($tail)*) +); +} \ No newline at end of file diff --git a/target/release/build/typenum-d836ce8ae56b147f/out/tests.rs b/target/release/build/typenum-d836ce8ae56b147f/out/tests.rs new file mode 100644 index 0000000..12616c0 --- /dev/null +++ b/target/release/build/typenum-d836ce8ae56b147f/out/tests.rs @@ -0,0 +1,20565 @@ + +extern crate typenum; + +use std::ops::*; +use std::cmp::Ordering; +use typenum::*; + +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Sub_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_0() { + type A = UTerm; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_0() { + type A = UTerm; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U0CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_1() { + type A = UTerm; + type B = UInt; + + #[allow(non_camel_case_types)] + type U0CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_2() { + type A = UTerm; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_3() { + type A = UTerm; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Sub_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_0() { + type A = UInt; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U1CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_1() { + type A = UInt; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_1() { + type A = UInt; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Sub_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_PartialDiv_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_1() { + type A = UInt; + type B = UInt; + + #[allow(non_camel_case_types)] + type U1CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_2() { + type A = UInt; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_2() { + type A = UInt; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_2() { + type A = UInt; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_2() { + type A = UInt; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_3() { + type A = UInt; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_3() { + type A = UInt; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_3() { + type A = UInt; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_3() { + type A = UInt; + type B = UInt, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_3() { + type A = UInt; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_3() { + type A = UInt; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_4() { + type A = UInt; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U1AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_5() { + type A = UInt; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_0() { + type A = UInt, B0>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_0() { + type A = UInt, B0>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U2CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_1() { + type A = UInt, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_1() { + type A = UInt, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_1() { + type A = UInt, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_PartialDiv_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_1() { + type A = UInt, B0>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U2CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_PartialDiv_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_2() { + type A = UInt, B0>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_3() { + type A = UInt, B0>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_0() { + type A = UInt, B1>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_0() { + type A = UInt, B1>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U3CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_1() { + type A = UInt, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_1() { + type A = UInt, B1>; + type B = UInt; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_1() { + type A = UInt, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_1() { + type A = UInt, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_1() { + type A = UInt, B1>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_PartialDiv_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_1() { + type A = UInt, B1>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U3CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_2() { + type A = UInt, B1>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U24 = UInt, B1>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_PartialDiv_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3PartialDivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U27 = UInt, B1>, B0>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_3() { + type A = UInt, B1>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U48 = UInt, B1>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U81 = UInt, B0>, B1>, B0>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U96 = UInt, B1>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U15 = UInt, B1>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U243 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U4CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_1() { + type A = UInt, B0>, B0>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U4CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4SubU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4PartialDivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U256 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U128 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1024 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U5CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_PartialDiv_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_1() { + type A = UInt, B0>, B1>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U5CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U25 = UInt, B1>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U40 = UInt, B0>, B1>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U15 = UInt, B1>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U125 = UInt, B1>, B1>, B1>, B1>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U80 = UInt, B0>, B1>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5SubU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U625 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U160 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5SubU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U25 = UInt, B1>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_PartialDiv_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5PartialDivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U3125 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5SubN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5PartialDivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N5CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N5Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N5CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N125 = NInt, B1>, B1>, B1>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P625 = PInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5AddP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N25 = NInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5PartialDivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N3125 = NInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4SubN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4PartialDivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N4AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N4CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N4Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N4CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N4SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N64 = NInt, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4AddP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N16 = NInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4PartialDivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P256 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N1024 = NInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3SubN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3PartialDivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N1() { + type A = NInt, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N1() { + type A = NInt, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N3CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul__0() { + type A = NInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max__0() { + type A = NInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd__0() { + type A = NInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow__0() { + type A = NInt, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp__0() { + type A = NInt, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N3Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P1() { + type A = NInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P1() { + type A = NInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P1() { + type A = NInt, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P1() { + type A = NInt, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N3CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3AddP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3PartialDivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N27 = NInt, B1>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P81 = PInt, B0>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N243 = NInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2SubN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N1() { + type A = NInt, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N1() { + type A = NInt, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N2CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul__0() { + type A = NInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max__0() { + type A = NInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd__0() { + type A = NInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow__0() { + type A = NInt, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp__0() { + type A = NInt, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N2Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P1() { + type A = NInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P1() { + type A = NInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P1() { + type A = NInt, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P1() { + type A = NInt, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N2CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2AddP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N32 = NInt, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N3() { + type A = NInt>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N3() { + type A = NInt>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N2() { + type A = NInt>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N2() { + type A = NInt>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N1() { + type A = NInt>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N1() { + type A = NInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1SubN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N1() { + type A = NInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_PartialDiv_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N1() { + type A = NInt>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N1CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul__0() { + type A = NInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max__0() { + type A = NInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd__0() { + type A = NInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow__0() { + type A = NInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp__0() { + type A = NInt>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N1Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P1() { + type A = NInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1AddP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P1() { + type A = NInt>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P1() { + type A = NInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P1() { + type A = NInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P1() { + type A = NInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_PartialDiv_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P1() { + type A = NInt>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N1CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P2() { + type A = NInt>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P2() { + type A = NInt>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P3() { + type A = NInt>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P3() { + type A = NInt>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0AddN5 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0SubN5 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0MinN5 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdN5 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpN5 = >::Output; + assert_eq!(<_0CmpN5 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0AddN4 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0SubN4 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0MinN4 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdN4 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpN4 = >::Output; + assert_eq!(<_0CmpN4 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N3() { + type A = Z0; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0AddN3 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N3() { + type A = Z0; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0SubN3 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N3() { + type A = Z0; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0MinN3 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N3() { + type A = Z0; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdN3 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N3() { + type A = Z0; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpN3 = >::Output; + assert_eq!(<_0CmpN3 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N2() { + type A = Z0; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0AddN2 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N2() { + type A = Z0; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0SubN2 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N2() { + type A = Z0; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0MinN2 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N2() { + type A = Z0; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdN2 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N2() { + type A = Z0; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpN2 = >::Output; + assert_eq!(<_0CmpN2 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N1() { + type A = Z0; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0AddN1 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N1() { + type A = Z0; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0SubN1 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N1() { + type A = Z0; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0MinN1 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N1() { + type A = Z0; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0GcdN1 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N1() { + type A = Z0; + type B = NInt>; + + #[allow(non_camel_case_types)] + type _0CmpN1 = >::Output; + assert_eq!(<_0CmpN1 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Add_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Add_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Sub_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Sub_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Mul_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Min_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Max_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Gcd_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Gcd_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow__0() { + type A = Z0; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0Pow_0 = <>::Output as Same>::Output; + + assert_eq!(<_0Pow_0 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp__0() { + type A = Z0; + type B = Z0; + + #[allow(non_camel_case_types)] + type _0Cmp_0 = >::Output; + assert_eq!(<_0Cmp_0 as Ord>::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0AddP1 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P1() { + type A = Z0; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0SubP1 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0MaxP1 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0GcdP1 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P1() { + type A = Z0; + type B = PInt>; + + #[allow(non_camel_case_types)] + type _0CmpP1 = >::Output; + assert_eq!(<_0CmpP1 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0AddP2 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P2() { + type A = Z0; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0SubP2 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0MaxP2 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdP2 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P2() { + type A = Z0; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpP2 = >::Output; + assert_eq!(<_0CmpP2 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0AddP3 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P3() { + type A = Z0; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0SubP3 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0MaxP3 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdP3 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P3() { + type A = Z0; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpP3 = >::Output; + assert_eq!(<_0CmpP3 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0AddP4 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0SubP4 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0MaxP4 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdP4 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpP4 = >::Output; + assert_eq!(<_0CmpP4 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0AddP5 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0SubP5 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0MaxP5 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdP5 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpP5 = >::Output; + assert_eq!(<_0CmpP5 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N3() { + type A = PInt>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N3() { + type A = PInt>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N2() { + type A = PInt>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N2() { + type A = PInt>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N1() { + type A = PInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1AddN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N1() { + type A = PInt>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N1() { + type A = PInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_PartialDiv_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N1() { + type A = PInt>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P1CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul__0() { + type A = PInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min__0() { + type A = PInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp__0() { + type A = PInt>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P1Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P1() { + type A = PInt>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P1() { + type A = PInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1SubP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P1() { + type A = PInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_PartialDiv_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P1() { + type A = PInt>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P1CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P2() { + type A = PInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P2() { + type A = PInt>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P2() { + type A = PInt>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P3() { + type A = PInt>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P3() { + type A = PInt>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P3() { + type A = PInt>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2AddN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N1() { + type A = PInt, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N1() { + type A = PInt, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P2CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul__0() { + type A = PInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min__0() { + type A = PInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow__0() { + type A = PInt, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp__0() { + type A = PInt, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P2Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P1() { + type A = PInt, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P1() { + type A = PInt, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P2CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2SubP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P32 = PInt, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3AddN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3PartialDivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N1() { + type A = PInt, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N1() { + type A = PInt, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P3CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul__0() { + type A = PInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min__0() { + type A = PInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow__0() { + type A = PInt, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp__0() { + type A = PInt, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P3Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P1() { + type A = PInt, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P1() { + type A = PInt, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P3CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3SubP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3PartialDivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P27 = PInt, B1>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P81 = PInt, B0>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P243 = PInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4AddN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N16 = NInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4PartialDivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P4MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P4SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P4CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P4Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P4CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P4AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P64 = PInt, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4SubP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4PartialDivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P256 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1024 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5AddN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N25 = NInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5PartialDivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P5MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P5CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P5Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P5CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P125 = PInt, B1>, B1>, B1>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P625 = PInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5SubP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5PartialDivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P3125 = PInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Neg() { + type A = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type NegN5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Abs() { + type A = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type AbsN5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Neg() { + type A = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type NegN4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Abs() { + type A = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type AbsN4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Neg() { + type A = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type NegN3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Abs() { + type A = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type AbsN3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Neg() { + type A = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type NegN2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Abs() { + type A = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type AbsN2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Neg() { + type A = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type NegN1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Abs() { + type A = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type AbsN1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Neg() { + type A = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type Neg_0 = <::Output as Same<_0>>::Output; + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Abs() { + type A = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type Abs_0 = <::Output as Same<_0>>::Output; + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Neg() { + type A = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type NegP1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Abs() { + type A = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type AbsP1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Neg() { + type A = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type NegP2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Abs() { + type A = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type AbsP2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Neg() { + type A = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type NegP3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Abs() { + type A = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type AbsP3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Neg() { + type A = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type NegP4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Abs() { + type A = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type AbsP4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Neg() { + type A = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type NegP5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Abs() { + type A = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type AbsP5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} \ No newline at end of file diff --git a/target/release/build/typenum-d836ce8ae56b147f/output b/target/release/build/typenum-d836ce8ae56b147f/output new file mode 100644 index 0000000..f03a71a --- /dev/null +++ b/target/release/build/typenum-d836ce8ae56b147f/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build/main.rs +cargo:rustc-env=TYPENUM_BUILD_CONSTS=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs +cargo:rustc-env=TYPENUM_BUILD_OP=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/op.rs diff --git a/target/release/build/typenum-d836ce8ae56b147f/root-output b/target/release/build/typenum-d836ce8ae56b147f/root-output new file mode 100644 index 0000000..26c6de8 --- /dev/null +++ b/target/release/build/typenum-d836ce8ae56b147f/root-output @@ -0,0 +1 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out \ No newline at end of file diff --git a/target/release/build/typenum-d836ce8ae56b147f/stderr b/target/release/build/typenum-d836ce8ae56b147f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/typenum-df70cd00a4ea8db4/build-script-main b/target/release/build/typenum-df70cd00a4ea8db4/build-script-main new file mode 100755 index 0000000..190788b Binary files /dev/null and b/target/release/build/typenum-df70cd00a4ea8db4/build-script-main differ diff --git a/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4 b/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4 new file mode 100755 index 0000000..190788b Binary files /dev/null and b/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4 differ diff --git a/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4.d b/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4.d new file mode 100644 index 0000000..b046f86 --- /dev/null +++ b/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/main.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/op.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/tests.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-df70cd00a4ea8db4/build_script_main-df70cd00a4ea8db4.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/main.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/op.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/tests.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/main.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/op.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/tests.rs: diff --git a/target/release/deps/aho_corasick-7958e9041fa212b0.d b/target/release/deps/aho_corasick-7958e9041fa212b0.d new file mode 100644 index 0000000..cce6533 --- /dev/null +++ b/target/release/deps/aho_corasick-7958e9041fa212b0.d @@ -0,0 +1,25 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/aho_corasick-7958e9041fa212b0.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/ahocorasick.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/automaton.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/byte_frequencies.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/classes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/dfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/nfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/pattern.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/rabinkarp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/compile.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/runtime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/vector.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/prefilter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/state_id.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libaho_corasick-7958e9041fa212b0.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/ahocorasick.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/automaton.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/byte_frequencies.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/classes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/dfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/nfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/pattern.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/rabinkarp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/compile.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/runtime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/vector.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/prefilter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/state_id.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/aho_corasick-7958e9041fa212b0.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/ahocorasick.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/automaton.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/byte_frequencies.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/classes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/dfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/nfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/api.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/pattern.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/rabinkarp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/compile.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/runtime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/vector.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/prefilter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/state_id.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/ahocorasick.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/automaton.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/buffer.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/byte_frequencies.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/classes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/dfa.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/nfa.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/api.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/pattern.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/rabinkarp.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/compile.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/teddy/runtime.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/packed/vector.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/prefilter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/state_id.rs: diff --git a/target/release/deps/anchor_attribute_access_control-59abe76c686c3a68.d b/target/release/deps/anchor_attribute_access_control-59abe76c686c3a68.d new file mode 100644 index 0000000..da6937b --- /dev/null +++ b/target/release/deps/anchor_attribute_access_control-59abe76c686c3a68.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_access_control-59abe76c686c3a68.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-access-control-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_access_control-59abe76c686c3a68.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-access-control-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-access-control-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_attribute_account-b694ef7c4987b21e.d b/target/release/deps/anchor_attribute_account-b694ef7c4987b21e.d new file mode 100644 index 0000000..1cbbe97 --- /dev/null +++ b/target/release/deps/anchor_attribute_account-b694ef7c4987b21e.d @@ -0,0 +1,6 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_account-b694ef7c4987b21e.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-account-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-account-0.25.0/src/id.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_account-b694ef7c4987b21e.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-account-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-account-0.25.0/src/id.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-account-0.25.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-account-0.25.0/src/id.rs: diff --git a/target/release/deps/anchor_attribute_constant-129b38b98af01d02.d b/target/release/deps/anchor_attribute_constant-129b38b98af01d02.d new file mode 100644 index 0000000..aa1344d --- /dev/null +++ b/target/release/deps/anchor_attribute_constant-129b38b98af01d02.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_constant-129b38b98af01d02.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-constant-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_constant-129b38b98af01d02.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-constant-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-constant-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_attribute_error-8a93a1bc31f9686c.d b/target/release/deps/anchor_attribute_error-8a93a1bc31f9686c.d new file mode 100644 index 0000000..c1d9705 --- /dev/null +++ b/target/release/deps/anchor_attribute_error-8a93a1bc31f9686c.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_error-8a93a1bc31f9686c.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-error-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_error-8a93a1bc31f9686c.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-error-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-error-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_attribute_event-f34b26d58c4ac1fc.d b/target/release/deps/anchor_attribute_event-f34b26d58c4ac1fc.d new file mode 100644 index 0000000..bccd229 --- /dev/null +++ b/target/release/deps/anchor_attribute_event-f34b26d58c4ac1fc.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_event-f34b26d58c4ac1fc.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-event-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_event-f34b26d58c4ac1fc.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-event-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-event-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_attribute_interface-426208417058e56a.d b/target/release/deps/anchor_attribute_interface-426208417058e56a.d new file mode 100644 index 0000000..fd5c8e8 --- /dev/null +++ b/target/release/deps/anchor_attribute_interface-426208417058e56a.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_interface-426208417058e56a.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-interface-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_interface-426208417058e56a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-interface-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-interface-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_attribute_program-5dd60ca9839ee802.d b/target/release/deps/anchor_attribute_program-5dd60ca9839ee802.d new file mode 100644 index 0000000..3b53078 --- /dev/null +++ b/target/release/deps/anchor_attribute_program-5dd60ca9839ee802.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_program-5dd60ca9839ee802.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-program-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_program-5dd60ca9839ee802.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-program-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-program-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_attribute_state-7bd4aeb7bf22a153.d b/target/release/deps/anchor_attribute_state-7bd4aeb7bf22a153.d new file mode 100644 index 0000000..2bb2bda --- /dev/null +++ b/target/release/deps/anchor_attribute_state-7bd4aeb7bf22a153.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_attribute_state-7bd4aeb7bf22a153.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-state-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_attribute_state-7bd4aeb7bf22a153.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-state-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-attribute-state-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_derive_accounts-4dcabd6e4d7f968c.d b/target/release/deps/anchor_derive_accounts-4dcabd6e4d7f968c.d new file mode 100644 index 0000000..13e116c --- /dev/null +++ b/target/release/deps/anchor_derive_accounts-4dcabd6e4d7f968c.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_derive_accounts-4dcabd6e4d7f968c.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-derive-accounts-0.25.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_derive_accounts-4dcabd6e4d7f968c.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-derive-accounts-0.25.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-derive-accounts-0.25.0/src/lib.rs: diff --git a/target/release/deps/anchor_syn-009a47885153c216.d b/target/release/deps/anchor_syn-009a47885153c216.d new file mode 100644 index 0000000..3a2577c --- /dev/null +++ b/target/release/deps/anchor_syn-009a47885153c216.d @@ -0,0 +1,35 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_syn-009a47885153c216.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__client_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__cpi_client_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/constraints.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/exit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_infos.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_metas.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/try_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/cpi.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/dispatch.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/entry.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/handlers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/constraints.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/docs.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/instructions.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/state.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanchor_syn-009a47885153c216.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__client_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__cpi_client_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/constraints.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/exit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_infos.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_metas.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/try_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/cpi.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/dispatch.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/entry.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/handlers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/constraints.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/docs.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/instructions.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/state.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anchor_syn-009a47885153c216.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__client_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__cpi_client_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/constraints.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/exit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_infos.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_metas.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/try_accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/accounts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/cpi.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/dispatch.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/entry.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/handlers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/instruction.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/constraints.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/docs.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/instructions.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/state.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__client_accounts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/__cpi_client_accounts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/constraints.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/exit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_infos.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/to_account_metas.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/accounts/try_accounts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/accounts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/common.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/cpi.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/dispatch.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/entry.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/handlers.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/codegen/program/instruction.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/hash.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/accounts/constraints.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/context.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/docs.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/instructions.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anchor-syn-0.25.0/src/parser/program/state.rs: diff --git a/target/release/deps/anyhow-bc16d99ef38b1e96.d b/target/release/deps/anyhow-bc16d99ef38b1e96.d new file mode 100644 index 0000000..3956530 --- /dev/null +++ b/target/release/deps/anyhow-bc16d99ef38b1e96.d @@ -0,0 +1,17 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anyhow-bc16d99ef38b1e96.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/backtrace.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/chain.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ensure.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/kind.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ptr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/wrapper.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libanyhow-bc16d99ef38b1e96.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/backtrace.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/chain.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ensure.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/kind.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ptr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/wrapper.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/anyhow-bc16d99ef38b1e96.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/backtrace.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/chain.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/context.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ensure.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/kind.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ptr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/wrapper.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/backtrace.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/chain.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/context.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ensure.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/fmt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/kind.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/ptr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.68/src/wrapper.rs: diff --git a/target/release/deps/autocfg-9a6fb7153d9f0282.d b/target/release/deps/autocfg-9a6fb7153d9f0282.d new file mode 100644 index 0000000..b13daf8 --- /dev/null +++ b/target/release/deps/autocfg-9a6fb7153d9f0282.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/autocfg-9a6fb7153d9f0282.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/version.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libautocfg-9a6fb7153d9f0282.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/version.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/autocfg-9a6fb7153d9f0282.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/version.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/version.rs: diff --git a/target/release/deps/block_buffer-cbbbf208d71ad7df.d b/target/release/deps/block_buffer-cbbbf208d71ad7df.d new file mode 100644 index 0000000..23949d8 --- /dev/null +++ b/target/release/deps/block_buffer-cbbbf208d71ad7df.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/block_buffer-cbbbf208d71ad7df.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/block_buffer-cbbbf208d71ad7df.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs: diff --git a/target/release/deps/borsh_derive-670a0122fef363b3.d b/target/release/deps/borsh_derive-670a0122fef363b3.d new file mode 100644 index 0000000..e2abd6b --- /dev/null +++ b/target/release/deps/borsh_derive-670a0122fef363b3.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libborsh_derive-670a0122fef363b3.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-0.9.3/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/borsh_derive-670a0122fef363b3.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-0.9.3/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-0.9.3/src/lib.rs: diff --git a/target/release/deps/borsh_derive_internal-075281021040ed04.d b/target/release/deps/borsh_derive_internal-075281021040ed04.d new file mode 100644 index 0000000..df2f49a --- /dev/null +++ b/target/release/deps/borsh_derive_internal-075281021040ed04.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/borsh_derive_internal-075281021040ed04.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/attribute_helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_ser.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libborsh_derive_internal-075281021040ed04.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/attribute_helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_ser.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/borsh_derive_internal-075281021040ed04.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/attribute_helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_ser.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/attribute_helpers.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/enum_ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/struct_ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-derive-internal-0.9.3/src/union_ser.rs: diff --git a/target/release/deps/borsh_schema_derive_internal-62a5d81aa3a28765.d b/target/release/deps/borsh_schema_derive_internal-62a5d81aa3a28765.d new file mode 100644 index 0000000..0df7dcd --- /dev/null +++ b/target/release/deps/borsh_schema_derive_internal-62a5d81aa3a28765.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/borsh_schema_derive_internal-62a5d81aa3a28765.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/enum_schema.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/struct_schema.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/enum_schema.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/struct_schema.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/borsh_schema_derive_internal-62a5d81aa3a28765.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/helpers.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/enum_schema.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/struct_schema.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/helpers.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/enum_schema.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/borsh-schema-derive-internal-0.9.3/src/struct_schema.rs: diff --git a/target/release/deps/bs58-0fcd4588ebddc92b.d b/target/release/deps/bs58-0fcd4588ebddc92b.d new file mode 100644 index 0000000..e82cf25 --- /dev/null +++ b/target/release/deps/bs58-0fcd4588ebddc92b.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/bs58-0fcd4588ebddc92b.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/encode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libbs58-0fcd4588ebddc92b.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/encode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/bs58-0fcd4588ebddc92b.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/encode.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/alphabet.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/decode.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.3.1/src/encode.rs: diff --git a/target/release/deps/bs58-5e5d44ea705026b6.d b/target/release/deps/bs58-5e5d44ea705026b6.d new file mode 100644 index 0000000..204c551 --- /dev/null +++ b/target/release/deps/bs58-5e5d44ea705026b6.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/bs58-5e5d44ea705026b6.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libbs58-5e5d44ea705026b6.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/bs58-5e5d44ea705026b6.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/alphabet.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/decode.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bs58-0.4.0/src/encode.rs: diff --git a/target/release/deps/bytemuck_derive-26d266cfb3912447.d b/target/release/deps/bytemuck_derive-26d266cfb3912447.d new file mode 100644 index 0000000..1f0d57e --- /dev/null +++ b/target/release/deps/bytemuck_derive-26d266cfb3912447.d @@ -0,0 +1,6 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libbytemuck_derive-26d266cfb3912447.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck_derive-1.3.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck_derive-1.3.0/src/traits.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/bytemuck_derive-26d266cfb3912447.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck_derive-1.3.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck_derive-1.3.0/src/traits.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck_derive-1.3.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/bytemuck_derive-1.3.0/src/traits.rs: diff --git a/target/release/deps/cc-a2ef55cb2b645885.d b/target/release/deps/cc-a2ef55cb2b645885.d new file mode 100644 index 0000000..7eed3f6 --- /dev/null +++ b/target/release/deps/cc-a2ef55cb2b645885.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/cc-a2ef55cb2b645885.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/windows_registry.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libcc-a2ef55cb2b645885.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/windows_registry.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/cc-a2ef55cb2b645885.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/windows_registry.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.78/src/windows_registry.rs: diff --git a/target/release/deps/cfg_if-c5795034f49ec124.d b/target/release/deps/cfg_if-c5795034f49ec124.d new file mode 100644 index 0000000..3b33639 --- /dev/null +++ b/target/release/deps/cfg_if-c5795034f49ec124.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/cfg_if-c5795034f49ec124.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libcfg_if-c5795034f49ec124.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/cfg_if-c5795034f49ec124.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs: diff --git a/target/release/deps/cpufeatures-bc8d2691641a4531.d b/target/release/deps/cpufeatures-bc8d2691641a4531.d new file mode 100644 index 0000000..c415042 --- /dev/null +++ b/target/release/deps/cpufeatures-bc8d2691641a4531.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/cpufeatures-bc8d2691641a4531.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/x86.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libcpufeatures-bc8d2691641a4531.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/x86.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/cpufeatures-bc8d2691641a4531.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/x86.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/x86.rs: diff --git a/target/release/deps/digest-0b749fbe957f4bfc.d b/target/release/deps/digest-0b749fbe957f4bfc.d new file mode 100644 index 0000000..d781ed0 --- /dev/null +++ b/target/release/deps/digest-0b749fbe957f4bfc.d @@ -0,0 +1,13 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/digest-0b749fbe957f4bfc.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/dyn_digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/errors.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/fixed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/xof.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libdigest-0b749fbe957f4bfc.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/dyn_digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/errors.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/fixed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/xof.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/digest-0b749fbe957f4bfc.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/dyn_digest.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/errors.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/fixed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/variable.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/xof.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/digest.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/dyn_digest.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/errors.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/fixed.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/variable.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/xof.rs: diff --git a/target/release/deps/feature_probe-65d09f12b128dbb1.d b/target/release/deps/feature_probe-65d09f12b128dbb1.d new file mode 100644 index 0000000..3578825 --- /dev/null +++ b/target/release/deps/feature_probe-65d09f12b128dbb1.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/feature_probe-65d09f12b128dbb1.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/feature-probe-0.1.1/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libfeature_probe-65d09f12b128dbb1.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/feature-probe-0.1.1/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/feature_probe-65d09f12b128dbb1.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/feature-probe-0.1.1/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/feature-probe-0.1.1/src/lib.rs: diff --git a/target/release/deps/generic_array-d6535bdf682db935.d b/target/release/deps/generic_array-d6535bdf682db935.d new file mode 100644 index 0000000..bfd5ad4 --- /dev/null +++ b/target/release/deps/generic_array-d6535bdf682db935.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/generic_array-d6535bdf682db935.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libgeneric_array-d6535bdf682db935.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/generic_array-d6535bdf682db935.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/hex.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/impl_serde.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/arr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/functional.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/iter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/src/sequence.rs: diff --git a/target/release/deps/heck-4311f1f2467b5b12.d b/target/release/deps/heck-4311f1f2467b5b12.d new file mode 100644 index 0000000..df78453 --- /dev/null +++ b/target/release/deps/heck-4311f1f2467b5b12.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/heck-4311f1f2467b5b12.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/camel.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/kebab.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/mixed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_kebab.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_snake.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/snake.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/title.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libheck-4311f1f2467b5b12.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/camel.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/kebab.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/mixed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_kebab.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_snake.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/snake.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/title.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/heck-4311f1f2467b5b12.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/camel.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/kebab.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/mixed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_kebab.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_snake.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/snake.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/title.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/camel.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/kebab.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/mixed.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_kebab.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/shouty_snake.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/snake.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/title.rs: diff --git a/target/release/deps/itoa-d836c9770fc496d9.d b/target/release/deps/itoa-d836c9770fc496d9.d new file mode 100644 index 0000000..b0b7c5e --- /dev/null +++ b/target/release/deps/itoa-d836c9770fc496d9.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/itoa-d836c9770fc496d9.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/udiv128.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libitoa-d836c9770fc496d9.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/udiv128.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/itoa-d836c9770fc496d9.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/udiv128.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.5/src/udiv128.rs: diff --git a/target/release/deps/libaho_corasick-7958e9041fa212b0.rlib b/target/release/deps/libaho_corasick-7958e9041fa212b0.rlib new file mode 100644 index 0000000..3f1d182 Binary files /dev/null and b/target/release/deps/libaho_corasick-7958e9041fa212b0.rlib differ diff --git a/target/release/deps/libaho_corasick-7958e9041fa212b0.rmeta b/target/release/deps/libaho_corasick-7958e9041fa212b0.rmeta new file mode 100644 index 0000000..7e5b362 Binary files /dev/null and b/target/release/deps/libaho_corasick-7958e9041fa212b0.rmeta differ diff --git a/target/release/deps/libanchor_attribute_access_control-59abe76c686c3a68.dylib b/target/release/deps/libanchor_attribute_access_control-59abe76c686c3a68.dylib new file mode 100755 index 0000000..9cda633 Binary files /dev/null and b/target/release/deps/libanchor_attribute_access_control-59abe76c686c3a68.dylib differ diff --git a/target/release/deps/libanchor_attribute_account-b694ef7c4987b21e.dylib b/target/release/deps/libanchor_attribute_account-b694ef7c4987b21e.dylib new file mode 100755 index 0000000..dbc72f6 Binary files /dev/null and b/target/release/deps/libanchor_attribute_account-b694ef7c4987b21e.dylib differ diff --git a/target/release/deps/libanchor_attribute_constant-129b38b98af01d02.dylib b/target/release/deps/libanchor_attribute_constant-129b38b98af01d02.dylib new file mode 100755 index 0000000..49035a3 Binary files /dev/null and b/target/release/deps/libanchor_attribute_constant-129b38b98af01d02.dylib differ diff --git a/target/release/deps/libanchor_attribute_error-8a93a1bc31f9686c.dylib b/target/release/deps/libanchor_attribute_error-8a93a1bc31f9686c.dylib new file mode 100755 index 0000000..274b76b Binary files /dev/null and b/target/release/deps/libanchor_attribute_error-8a93a1bc31f9686c.dylib differ diff --git a/target/release/deps/libanchor_attribute_event-f34b26d58c4ac1fc.dylib b/target/release/deps/libanchor_attribute_event-f34b26d58c4ac1fc.dylib new file mode 100755 index 0000000..e1cef1c Binary files /dev/null and b/target/release/deps/libanchor_attribute_event-f34b26d58c4ac1fc.dylib differ diff --git a/target/release/deps/libanchor_attribute_interface-426208417058e56a.dylib b/target/release/deps/libanchor_attribute_interface-426208417058e56a.dylib new file mode 100755 index 0000000..1468ad7 Binary files /dev/null and b/target/release/deps/libanchor_attribute_interface-426208417058e56a.dylib differ diff --git a/target/release/deps/libanchor_attribute_program-5dd60ca9839ee802.dylib b/target/release/deps/libanchor_attribute_program-5dd60ca9839ee802.dylib new file mode 100755 index 0000000..daf9f98 Binary files /dev/null and b/target/release/deps/libanchor_attribute_program-5dd60ca9839ee802.dylib differ diff --git a/target/release/deps/libanchor_attribute_state-7bd4aeb7bf22a153.dylib b/target/release/deps/libanchor_attribute_state-7bd4aeb7bf22a153.dylib new file mode 100755 index 0000000..ae45228 Binary files /dev/null and b/target/release/deps/libanchor_attribute_state-7bd4aeb7bf22a153.dylib differ diff --git a/target/release/deps/libanchor_derive_accounts-4dcabd6e4d7f968c.dylib b/target/release/deps/libanchor_derive_accounts-4dcabd6e4d7f968c.dylib new file mode 100755 index 0000000..5af97d2 Binary files /dev/null and b/target/release/deps/libanchor_derive_accounts-4dcabd6e4d7f968c.dylib differ diff --git a/target/release/deps/libanchor_syn-009a47885153c216.rlib b/target/release/deps/libanchor_syn-009a47885153c216.rlib new file mode 100644 index 0000000..caf6ced Binary files /dev/null and b/target/release/deps/libanchor_syn-009a47885153c216.rlib differ diff --git a/target/release/deps/libanchor_syn-009a47885153c216.rmeta b/target/release/deps/libanchor_syn-009a47885153c216.rmeta new file mode 100644 index 0000000..10b786c Binary files /dev/null and b/target/release/deps/libanchor_syn-009a47885153c216.rmeta differ diff --git a/target/release/deps/libanyhow-bc16d99ef38b1e96.rlib b/target/release/deps/libanyhow-bc16d99ef38b1e96.rlib new file mode 100644 index 0000000..98501a5 Binary files /dev/null and b/target/release/deps/libanyhow-bc16d99ef38b1e96.rlib differ diff --git a/target/release/deps/libanyhow-bc16d99ef38b1e96.rmeta b/target/release/deps/libanyhow-bc16d99ef38b1e96.rmeta new file mode 100644 index 0000000..9186002 Binary files /dev/null and b/target/release/deps/libanyhow-bc16d99ef38b1e96.rmeta differ diff --git a/target/release/deps/libautocfg-9a6fb7153d9f0282.rlib b/target/release/deps/libautocfg-9a6fb7153d9f0282.rlib new file mode 100644 index 0000000..2753ae4 Binary files /dev/null and b/target/release/deps/libautocfg-9a6fb7153d9f0282.rlib differ diff --git a/target/release/deps/libautocfg-9a6fb7153d9f0282.rmeta b/target/release/deps/libautocfg-9a6fb7153d9f0282.rmeta new file mode 100644 index 0000000..6b06253 Binary files /dev/null and b/target/release/deps/libautocfg-9a6fb7153d9f0282.rmeta differ diff --git a/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rlib b/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rlib new file mode 100644 index 0000000..44c7a59 Binary files /dev/null and b/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rlib differ diff --git a/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rmeta b/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rmeta new file mode 100644 index 0000000..e672cc2 Binary files /dev/null and b/target/release/deps/libblock_buffer-cbbbf208d71ad7df.rmeta differ diff --git a/target/release/deps/libborsh_derive-670a0122fef363b3.dylib b/target/release/deps/libborsh_derive-670a0122fef363b3.dylib new file mode 100755 index 0000000..89ce3b1 Binary files /dev/null and b/target/release/deps/libborsh_derive-670a0122fef363b3.dylib differ diff --git a/target/release/deps/libborsh_derive_internal-075281021040ed04.rlib b/target/release/deps/libborsh_derive_internal-075281021040ed04.rlib new file mode 100644 index 0000000..b1ab3c4 Binary files /dev/null and b/target/release/deps/libborsh_derive_internal-075281021040ed04.rlib differ diff --git a/target/release/deps/libborsh_derive_internal-075281021040ed04.rmeta b/target/release/deps/libborsh_derive_internal-075281021040ed04.rmeta new file mode 100644 index 0000000..707fdfc Binary files /dev/null and b/target/release/deps/libborsh_derive_internal-075281021040ed04.rmeta differ diff --git a/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rlib b/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rlib new file mode 100644 index 0000000..913b356 Binary files /dev/null and b/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rlib differ diff --git a/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rmeta b/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rmeta new file mode 100644 index 0000000..60ca26d Binary files /dev/null and b/target/release/deps/libborsh_schema_derive_internal-62a5d81aa3a28765.rmeta differ diff --git a/target/release/deps/libbs58-0fcd4588ebddc92b.rlib b/target/release/deps/libbs58-0fcd4588ebddc92b.rlib new file mode 100644 index 0000000..9e19048 Binary files /dev/null and b/target/release/deps/libbs58-0fcd4588ebddc92b.rlib differ diff --git a/target/release/deps/libbs58-0fcd4588ebddc92b.rmeta b/target/release/deps/libbs58-0fcd4588ebddc92b.rmeta new file mode 100644 index 0000000..a869ff4 Binary files /dev/null and b/target/release/deps/libbs58-0fcd4588ebddc92b.rmeta differ diff --git a/target/release/deps/libbs58-5e5d44ea705026b6.rlib b/target/release/deps/libbs58-5e5d44ea705026b6.rlib new file mode 100644 index 0000000..a2222d7 Binary files /dev/null and b/target/release/deps/libbs58-5e5d44ea705026b6.rlib differ diff --git a/target/release/deps/libbs58-5e5d44ea705026b6.rmeta b/target/release/deps/libbs58-5e5d44ea705026b6.rmeta new file mode 100644 index 0000000..83e4751 Binary files /dev/null and b/target/release/deps/libbs58-5e5d44ea705026b6.rmeta differ diff --git a/target/release/deps/libbytemuck_derive-26d266cfb3912447.dylib b/target/release/deps/libbytemuck_derive-26d266cfb3912447.dylib new file mode 100755 index 0000000..df5766d Binary files /dev/null and b/target/release/deps/libbytemuck_derive-26d266cfb3912447.dylib differ diff --git a/target/release/deps/libcc-a2ef55cb2b645885.rlib b/target/release/deps/libcc-a2ef55cb2b645885.rlib new file mode 100644 index 0000000..b34c5fd Binary files /dev/null and b/target/release/deps/libcc-a2ef55cb2b645885.rlib differ diff --git a/target/release/deps/libcc-a2ef55cb2b645885.rmeta b/target/release/deps/libcc-a2ef55cb2b645885.rmeta new file mode 100644 index 0000000..1ef0e5e Binary files /dev/null and b/target/release/deps/libcc-a2ef55cb2b645885.rmeta differ diff --git a/target/release/deps/libcfg_if-c5795034f49ec124.rlib b/target/release/deps/libcfg_if-c5795034f49ec124.rlib new file mode 100644 index 0000000..360b2da Binary files /dev/null and b/target/release/deps/libcfg_if-c5795034f49ec124.rlib differ diff --git a/target/release/deps/libcfg_if-c5795034f49ec124.rmeta b/target/release/deps/libcfg_if-c5795034f49ec124.rmeta new file mode 100644 index 0000000..837cf88 Binary files /dev/null and b/target/release/deps/libcfg_if-c5795034f49ec124.rmeta differ diff --git a/target/release/deps/libcpufeatures-bc8d2691641a4531.rlib b/target/release/deps/libcpufeatures-bc8d2691641a4531.rlib new file mode 100644 index 0000000..8fe9746 Binary files /dev/null and b/target/release/deps/libcpufeatures-bc8d2691641a4531.rlib differ diff --git a/target/release/deps/libcpufeatures-bc8d2691641a4531.rmeta b/target/release/deps/libcpufeatures-bc8d2691641a4531.rmeta new file mode 100644 index 0000000..80bfcc6 Binary files /dev/null and b/target/release/deps/libcpufeatures-bc8d2691641a4531.rmeta differ diff --git a/target/release/deps/libdigest-0b749fbe957f4bfc.rlib b/target/release/deps/libdigest-0b749fbe957f4bfc.rlib new file mode 100644 index 0000000..dce420d Binary files /dev/null and b/target/release/deps/libdigest-0b749fbe957f4bfc.rlib differ diff --git a/target/release/deps/libdigest-0b749fbe957f4bfc.rmeta b/target/release/deps/libdigest-0b749fbe957f4bfc.rmeta new file mode 100644 index 0000000..0ba9ad2 Binary files /dev/null and b/target/release/deps/libdigest-0b749fbe957f4bfc.rmeta differ diff --git a/target/release/deps/libfeature_probe-65d09f12b128dbb1.rlib b/target/release/deps/libfeature_probe-65d09f12b128dbb1.rlib new file mode 100644 index 0000000..aa6d160 Binary files /dev/null and b/target/release/deps/libfeature_probe-65d09f12b128dbb1.rlib differ diff --git a/target/release/deps/libfeature_probe-65d09f12b128dbb1.rmeta b/target/release/deps/libfeature_probe-65d09f12b128dbb1.rmeta new file mode 100644 index 0000000..893a567 Binary files /dev/null and b/target/release/deps/libfeature_probe-65d09f12b128dbb1.rmeta differ diff --git a/target/release/deps/libgeneric_array-d6535bdf682db935.rlib b/target/release/deps/libgeneric_array-d6535bdf682db935.rlib new file mode 100644 index 0000000..c72966a Binary files /dev/null and b/target/release/deps/libgeneric_array-d6535bdf682db935.rlib differ diff --git a/target/release/deps/libgeneric_array-d6535bdf682db935.rmeta b/target/release/deps/libgeneric_array-d6535bdf682db935.rmeta new file mode 100644 index 0000000..24a6ab9 Binary files /dev/null and b/target/release/deps/libgeneric_array-d6535bdf682db935.rmeta differ diff --git a/target/release/deps/libheck-4311f1f2467b5b12.rlib b/target/release/deps/libheck-4311f1f2467b5b12.rlib new file mode 100644 index 0000000..9d750c8 Binary files /dev/null and b/target/release/deps/libheck-4311f1f2467b5b12.rlib differ diff --git a/target/release/deps/libheck-4311f1f2467b5b12.rmeta b/target/release/deps/libheck-4311f1f2467b5b12.rmeta new file mode 100644 index 0000000..143d444 Binary files /dev/null and b/target/release/deps/libheck-4311f1f2467b5b12.rmeta differ diff --git a/target/release/deps/libitoa-d836c9770fc496d9.rlib b/target/release/deps/libitoa-d836c9770fc496d9.rlib new file mode 100644 index 0000000..5783efd Binary files /dev/null and b/target/release/deps/libitoa-d836c9770fc496d9.rlib differ diff --git a/target/release/deps/libitoa-d836c9770fc496d9.rmeta b/target/release/deps/libitoa-d836c9770fc496d9.rmeta new file mode 100644 index 0000000..081533b Binary files /dev/null and b/target/release/deps/libitoa-d836c9770fc496d9.rmeta differ diff --git a/target/release/deps/libmemchr-cd35f1a670d051f4.rlib b/target/release/deps/libmemchr-cd35f1a670d051f4.rlib new file mode 100644 index 0000000..47f6e7b Binary files /dev/null and b/target/release/deps/libmemchr-cd35f1a670d051f4.rlib differ diff --git a/target/release/deps/libmemchr-cd35f1a670d051f4.rmeta b/target/release/deps/libmemchr-cd35f1a670d051f4.rmeta new file mode 100644 index 0000000..92deccb Binary files /dev/null and b/target/release/deps/libmemchr-cd35f1a670d051f4.rmeta differ diff --git a/target/release/deps/libnum_derive-497212033ee422e3.dylib b/target/release/deps/libnum_derive-497212033ee422e3.dylib new file mode 100755 index 0000000..eecaab9 Binary files /dev/null and b/target/release/deps/libnum_derive-497212033ee422e3.dylib differ diff --git a/target/release/deps/libnum_enum_derive-114009b5e51fdfb9.dylib b/target/release/deps/libnum_enum_derive-114009b5e51fdfb9.dylib new file mode 100755 index 0000000..c9edfcd Binary files /dev/null and b/target/release/deps/libnum_enum_derive-114009b5e51fdfb9.dylib differ diff --git a/target/release/deps/libonce_cell-ef188906390509ee.rlib b/target/release/deps/libonce_cell-ef188906390509ee.rlib new file mode 100644 index 0000000..96bb2bf Binary files /dev/null and b/target/release/deps/libonce_cell-ef188906390509ee.rlib differ diff --git a/target/release/deps/libonce_cell-ef188906390509ee.rmeta b/target/release/deps/libonce_cell-ef188906390509ee.rmeta new file mode 100644 index 0000000..7ec9fbd Binary files /dev/null and b/target/release/deps/libonce_cell-ef188906390509ee.rmeta differ diff --git a/target/release/deps/libopaque_debug-899fbd895b8153ac.rlib b/target/release/deps/libopaque_debug-899fbd895b8153ac.rlib new file mode 100644 index 0000000..0588faa Binary files /dev/null and b/target/release/deps/libopaque_debug-899fbd895b8153ac.rlib differ diff --git a/target/release/deps/libopaque_debug-899fbd895b8153ac.rmeta b/target/release/deps/libopaque_debug-899fbd895b8153ac.rmeta new file mode 100644 index 0000000..72df42d Binary files /dev/null and b/target/release/deps/libopaque_debug-899fbd895b8153ac.rmeta differ diff --git a/target/release/deps/libproc_macro2-34817cd73d43694f.rlib b/target/release/deps/libproc_macro2-34817cd73d43694f.rlib new file mode 100644 index 0000000..c5e6efd Binary files /dev/null and b/target/release/deps/libproc_macro2-34817cd73d43694f.rlib differ diff --git a/target/release/deps/libproc_macro2-34817cd73d43694f.rmeta b/target/release/deps/libproc_macro2-34817cd73d43694f.rmeta new file mode 100644 index 0000000..922acb4 Binary files /dev/null and b/target/release/deps/libproc_macro2-34817cd73d43694f.rmeta differ diff --git a/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rlib b/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rlib new file mode 100644 index 0000000..dd5628d Binary files /dev/null and b/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rlib differ diff --git a/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rmeta b/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rmeta new file mode 100644 index 0000000..67f0b74 Binary files /dev/null and b/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rmeta differ diff --git a/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rlib b/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rlib new file mode 100644 index 0000000..8dc8ac1 Binary files /dev/null and b/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rlib differ diff --git a/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rmeta b/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rmeta new file mode 100644 index 0000000..fa8b34e Binary files /dev/null and b/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rmeta differ diff --git a/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rlib b/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rlib new file mode 100644 index 0000000..a7724aa Binary files /dev/null and b/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rlib differ diff --git a/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rmeta b/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rmeta new file mode 100644 index 0000000..6ca3e80 Binary files /dev/null and b/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rmeta differ diff --git a/target/release/deps/libquote-d07f8260b626bf69.rlib b/target/release/deps/libquote-d07f8260b626bf69.rlib new file mode 100644 index 0000000..0e42437 Binary files /dev/null and b/target/release/deps/libquote-d07f8260b626bf69.rlib differ diff --git a/target/release/deps/libquote-d07f8260b626bf69.rmeta b/target/release/deps/libquote-d07f8260b626bf69.rmeta new file mode 100644 index 0000000..58ea54a Binary files /dev/null and b/target/release/deps/libquote-d07f8260b626bf69.rmeta differ diff --git a/target/release/deps/libregex-397ca5f7ff57d01d.rlib b/target/release/deps/libregex-397ca5f7ff57d01d.rlib new file mode 100644 index 0000000..2b0d6d0 Binary files /dev/null and b/target/release/deps/libregex-397ca5f7ff57d01d.rlib differ diff --git a/target/release/deps/libregex-397ca5f7ff57d01d.rmeta b/target/release/deps/libregex-397ca5f7ff57d01d.rmeta new file mode 100644 index 0000000..d78e100 Binary files /dev/null and b/target/release/deps/libregex-397ca5f7ff57d01d.rmeta differ diff --git a/target/release/deps/libregex_syntax-d29b704d8b2ef535.rlib b/target/release/deps/libregex_syntax-d29b704d8b2ef535.rlib new file mode 100644 index 0000000..3f53e7d Binary files /dev/null and b/target/release/deps/libregex_syntax-d29b704d8b2ef535.rlib differ diff --git a/target/release/deps/libregex_syntax-d29b704d8b2ef535.rmeta b/target/release/deps/libregex_syntax-d29b704d8b2ef535.rmeta new file mode 100644 index 0000000..df9d0f7 Binary files /dev/null and b/target/release/deps/libregex_syntax-d29b704d8b2ef535.rmeta differ diff --git a/target/release/deps/librustc_version-5aada85b829e4525.rlib b/target/release/deps/librustc_version-5aada85b829e4525.rlib new file mode 100644 index 0000000..766b139 Binary files /dev/null and b/target/release/deps/librustc_version-5aada85b829e4525.rlib differ diff --git a/target/release/deps/librustc_version-5aada85b829e4525.rmeta b/target/release/deps/librustc_version-5aada85b829e4525.rmeta new file mode 100644 index 0000000..e0ca581 Binary files /dev/null and b/target/release/deps/librustc_version-5aada85b829e4525.rmeta differ diff --git a/target/release/deps/librustversion-6e839728fc312b72.dylib b/target/release/deps/librustversion-6e839728fc312b72.dylib new file mode 100755 index 0000000..b1a3920 Binary files /dev/null and b/target/release/deps/librustversion-6e839728fc312b72.dylib differ diff --git a/target/release/deps/libryu-90cbcb62a44f9381.rlib b/target/release/deps/libryu-90cbcb62a44f9381.rlib new file mode 100644 index 0000000..9c56cca Binary files /dev/null and b/target/release/deps/libryu-90cbcb62a44f9381.rlib differ diff --git a/target/release/deps/libryu-90cbcb62a44f9381.rmeta b/target/release/deps/libryu-90cbcb62a44f9381.rmeta new file mode 100644 index 0000000..92a9290 Binary files /dev/null and b/target/release/deps/libryu-90cbcb62a44f9381.rmeta differ diff --git a/target/release/deps/libsemver-2f99c2ef04faf533.rlib b/target/release/deps/libsemver-2f99c2ef04faf533.rlib new file mode 100644 index 0000000..1600a4e Binary files /dev/null and b/target/release/deps/libsemver-2f99c2ef04faf533.rlib differ diff --git a/target/release/deps/libsemver-2f99c2ef04faf533.rmeta b/target/release/deps/libsemver-2f99c2ef04faf533.rmeta new file mode 100644 index 0000000..2b7fb4c Binary files /dev/null and b/target/release/deps/libsemver-2f99c2ef04faf533.rmeta differ diff --git a/target/release/deps/libserde-f15e66f08e5186fb.rlib b/target/release/deps/libserde-f15e66f08e5186fb.rlib new file mode 100644 index 0000000..5872c09 Binary files /dev/null and b/target/release/deps/libserde-f15e66f08e5186fb.rlib differ diff --git a/target/release/deps/libserde-f15e66f08e5186fb.rmeta b/target/release/deps/libserde-f15e66f08e5186fb.rmeta new file mode 100644 index 0000000..e9426af Binary files /dev/null and b/target/release/deps/libserde-f15e66f08e5186fb.rmeta differ diff --git a/target/release/deps/libserde_derive-926ebfa801d42d40.dylib b/target/release/deps/libserde_derive-926ebfa801d42d40.dylib new file mode 100755 index 0000000..a7ca1aa Binary files /dev/null and b/target/release/deps/libserde_derive-926ebfa801d42d40.dylib differ diff --git a/target/release/deps/libserde_json-53bd47283ff43d67.rlib b/target/release/deps/libserde_json-53bd47283ff43d67.rlib new file mode 100644 index 0000000..84d24e1 Binary files /dev/null and b/target/release/deps/libserde_json-53bd47283ff43d67.rlib differ diff --git a/target/release/deps/libserde_json-53bd47283ff43d67.rmeta b/target/release/deps/libserde_json-53bd47283ff43d67.rmeta new file mode 100644 index 0000000..e480cbe Binary files /dev/null and b/target/release/deps/libserde_json-53bd47283ff43d67.rmeta differ diff --git a/target/release/deps/libsha2-6dbe6e1ccab5c877.rlib b/target/release/deps/libsha2-6dbe6e1ccab5c877.rlib new file mode 100644 index 0000000..5b2e97d Binary files /dev/null and b/target/release/deps/libsha2-6dbe6e1ccab5c877.rlib differ diff --git a/target/release/deps/libsha2-6dbe6e1ccab5c877.rmeta b/target/release/deps/libsha2-6dbe6e1ccab5c877.rmeta new file mode 100644 index 0000000..c20d2ab Binary files /dev/null and b/target/release/deps/libsha2-6dbe6e1ccab5c877.rmeta differ diff --git a/target/release/deps/libsolana_frozen_abi_macro-2310b0b1266f5cff.dylib b/target/release/deps/libsolana_frozen_abi_macro-2310b0b1266f5cff.dylib new file mode 100755 index 0000000..be1d5d3 Binary files /dev/null and b/target/release/deps/libsolana_frozen_abi_macro-2310b0b1266f5cff.dylib differ diff --git a/target/release/deps/libsolana_sdk_macro-3989af0256a09b89.dylib b/target/release/deps/libsolana_sdk_macro-3989af0256a09b89.dylib new file mode 100755 index 0000000..cc8825d Binary files /dev/null and b/target/release/deps/libsolana_sdk_macro-3989af0256a09b89.dylib differ diff --git a/target/release/deps/libsyn-0ee9571ac1ded5fb.rlib b/target/release/deps/libsyn-0ee9571ac1ded5fb.rlib new file mode 100644 index 0000000..b36c2c3 Binary files /dev/null and b/target/release/deps/libsyn-0ee9571ac1ded5fb.rlib differ diff --git a/target/release/deps/libsyn-0ee9571ac1ded5fb.rmeta b/target/release/deps/libsyn-0ee9571ac1ded5fb.rmeta new file mode 100644 index 0000000..badb738 Binary files /dev/null and b/target/release/deps/libsyn-0ee9571ac1ded5fb.rmeta differ diff --git a/target/release/deps/libthiserror-13cc2d2a640f0e23.rlib b/target/release/deps/libthiserror-13cc2d2a640f0e23.rlib new file mode 100644 index 0000000..535ca1f Binary files /dev/null and b/target/release/deps/libthiserror-13cc2d2a640f0e23.rlib differ diff --git a/target/release/deps/libthiserror-13cc2d2a640f0e23.rmeta b/target/release/deps/libthiserror-13cc2d2a640f0e23.rmeta new file mode 100644 index 0000000..8d7349b Binary files /dev/null and b/target/release/deps/libthiserror-13cc2d2a640f0e23.rmeta differ diff --git a/target/release/deps/libthiserror_impl-9353bc8762229810.dylib b/target/release/deps/libthiserror_impl-9353bc8762229810.dylib new file mode 100755 index 0000000..7cc83ca Binary files /dev/null and b/target/release/deps/libthiserror_impl-9353bc8762229810.dylib differ diff --git a/target/release/deps/libtoml-e2a863d5f35b0585.rlib b/target/release/deps/libtoml-e2a863d5f35b0585.rlib new file mode 100644 index 0000000..7670f85 Binary files /dev/null and b/target/release/deps/libtoml-e2a863d5f35b0585.rlib differ diff --git a/target/release/deps/libtoml-e2a863d5f35b0585.rmeta b/target/release/deps/libtoml-e2a863d5f35b0585.rmeta new file mode 100644 index 0000000..e24fa1c Binary files /dev/null and b/target/release/deps/libtoml-e2a863d5f35b0585.rmeta differ diff --git a/target/release/deps/libtypenum-0747cbf612ca4418.rlib b/target/release/deps/libtypenum-0747cbf612ca4418.rlib new file mode 100644 index 0000000..7861a03 Binary files /dev/null and b/target/release/deps/libtypenum-0747cbf612ca4418.rlib differ diff --git a/target/release/deps/libtypenum-0747cbf612ca4418.rmeta b/target/release/deps/libtypenum-0747cbf612ca4418.rmeta new file mode 100644 index 0000000..87d3ef0 Binary files /dev/null and b/target/release/deps/libtypenum-0747cbf612ca4418.rmeta differ diff --git a/target/release/deps/libunicode_ident-97b695d212fdeaef.rlib b/target/release/deps/libunicode_ident-97b695d212fdeaef.rlib new file mode 100644 index 0000000..1a9ca14 Binary files /dev/null and b/target/release/deps/libunicode_ident-97b695d212fdeaef.rlib differ diff --git a/target/release/deps/libunicode_ident-97b695d212fdeaef.rmeta b/target/release/deps/libunicode_ident-97b695d212fdeaef.rmeta new file mode 100644 index 0000000..d080e60 Binary files /dev/null and b/target/release/deps/libunicode_ident-97b695d212fdeaef.rmeta differ diff --git a/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rlib b/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rlib new file mode 100644 index 0000000..714ed66 Binary files /dev/null and b/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rlib differ diff --git a/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rmeta b/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rmeta new file mode 100644 index 0000000..bea9a1a Binary files /dev/null and b/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rmeta differ diff --git a/target/release/deps/libversion_check-e84d4ac735eb4669.rlib b/target/release/deps/libversion_check-e84d4ac735eb4669.rlib new file mode 100644 index 0000000..358c782 Binary files /dev/null and b/target/release/deps/libversion_check-e84d4ac735eb4669.rlib differ diff --git a/target/release/deps/libversion_check-e84d4ac735eb4669.rmeta b/target/release/deps/libversion_check-e84d4ac735eb4669.rmeta new file mode 100644 index 0000000..a484af4 Binary files /dev/null and b/target/release/deps/libversion_check-e84d4ac735eb4669.rmeta differ diff --git a/target/release/deps/libyansi-34bf9e888c25c67f.rlib b/target/release/deps/libyansi-34bf9e888c25c67f.rlib new file mode 100644 index 0000000..8f3ac6d Binary files /dev/null and b/target/release/deps/libyansi-34bf9e888c25c67f.rlib differ diff --git a/target/release/deps/libyansi-34bf9e888c25c67f.rmeta b/target/release/deps/libyansi-34bf9e888c25c67f.rmeta new file mode 100644 index 0000000..23b2a47 Binary files /dev/null and b/target/release/deps/libyansi-34bf9e888c25c67f.rmeta differ diff --git a/target/release/deps/memchr-cd35f1a670d051f4.d b/target/release/deps/memchr-cd35f1a670d051f4.d new file mode 100644 index 0000000..3f39848 --- /dev/null +++ b/target/release/deps/memchr-cd35f1a670d051f4.d @@ -0,0 +1,32 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/memchr-cd35f1a670d051f4.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/cow.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/naive.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/sse2.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/byte_frequencies.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/genericsimd.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rabinkarp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rarebytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/twoway.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/util.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/vector.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/sse.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libmemchr-cd35f1a670d051f4.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/cow.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/naive.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/sse2.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/byte_frequencies.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/genericsimd.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rabinkarp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rarebytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/twoway.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/util.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/vector.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/sse.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/memchr-cd35f1a670d051f4.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/cow.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/naive.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/sse2.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/byte_frequencies.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/genericsimd.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rabinkarp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rarebytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/twoway.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/util.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/vector.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/avx.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/sse.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/cow.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/fallback.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/iter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/naive.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/avx.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memchr/x86/sse2.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/byte_frequencies.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/genericsimd.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/fallback.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/genericsimd.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/avx.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/prefilter/x86/sse.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rabinkarp.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/rarebytes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/twoway.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/util.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/vector.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/avx.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/memmem/x86/sse.rs: diff --git a/target/release/deps/num_derive-497212033ee422e3.d b/target/release/deps/num_derive-497212033ee422e3.d new file mode 100644 index 0000000..ecfca3b --- /dev/null +++ b/target/release/deps/num_derive-497212033ee422e3.d @@ -0,0 +1,6 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libnum_derive-497212033ee422e3.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.3.3/src/test.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/num_derive-497212033ee422e3.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.3.3/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.3.3/src/test.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.3.3/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num-derive-0.3.3/src/test.rs: diff --git a/target/release/deps/num_enum_derive-114009b5e51fdfb9.d b/target/release/deps/num_enum_derive-114009b5e51fdfb9.d new file mode 100644 index 0000000..3581350 --- /dev/null +++ b/target/release/deps/num_enum_derive-114009b5e51fdfb9.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libnum_enum_derive-114009b5e51fdfb9.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum_derive-0.5.7/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/num_enum_derive-114009b5e51fdfb9.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum_derive-0.5.7/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/num_enum_derive-0.5.7/src/lib.rs: diff --git a/target/release/deps/once_cell-ef188906390509ee.d b/target/release/deps/once_cell-ef188906390509ee.d new file mode 100644 index 0000000..87a0c3f --- /dev/null +++ b/target/release/deps/once_cell-ef188906390509ee.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/once_cell-ef188906390509ee.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libonce_cell-ef188906390509ee.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/once_cell-ef188906390509ee.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/imp_std.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.16.0/src/race.rs: diff --git a/target/release/deps/opaque_debug-899fbd895b8153ac.d b/target/release/deps/opaque_debug-899fbd895b8153ac.d new file mode 100644 index 0000000..6ba1886 --- /dev/null +++ b/target/release/deps/opaque_debug-899fbd895b8153ac.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/opaque_debug-899fbd895b8153ac.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libopaque_debug-899fbd895b8153ac.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/opaque_debug-899fbd895b8153ac.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs: diff --git a/target/release/deps/proc_macro2-34817cd73d43694f.d b/target/release/deps/proc_macro2-34817cd73d43694f.d new file mode 100644 index 0000000..fc244b6 --- /dev/null +++ b/target/release/deps/proc_macro2-34817cd73d43694f.d @@ -0,0 +1,13 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro2-34817cd73d43694f.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/marker.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/rcvec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/detection.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/wrapper.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libproc_macro2-34817cd73d43694f.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/marker.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/rcvec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/detection.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/wrapper.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro2-34817cd73d43694f.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/marker.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/rcvec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/detection.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/fallback.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/wrapper.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/marker.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/parse.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/rcvec.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/detection.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/fallback.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.49/src/wrapper.rs: diff --git a/target/release/deps/proc_macro2_diagnostics-fbdfb128f129157a.d b/target/release/deps/proc_macro2_diagnostics-fbdfb128f129157a.d new file mode 100644 index 0000000..80e99a3 --- /dev/null +++ b/target/release/deps/proc_macro2_diagnostics-fbdfb128f129157a.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro2_diagnostics-fbdfb128f129157a.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/diagnostic.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/line.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libproc_macro2_diagnostics-fbdfb128f129157a.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/diagnostic.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/line.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro2_diagnostics-fbdfb128f129157a.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/diagnostic.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/line.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/ext.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/diagnostic.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-diagnostics-0.9.1/src/line.rs: diff --git a/target/release/deps/proc_macro_crate-445c3e7ca258deac.d b/target/release/deps/proc_macro_crate-445c3e7ca258deac.d new file mode 100644 index 0000000..83eebca --- /dev/null +++ b/target/release/deps/proc_macro_crate-445c3e7ca258deac.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro_crate-445c3e7ca258deac.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.2.1/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libproc_macro_crate-445c3e7ca258deac.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.2.1/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro_crate-445c3e7ca258deac.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.2.1/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.2.1/src/lib.rs: diff --git a/target/release/deps/proc_macro_crate-8aa7dcd4d8248eab.d b/target/release/deps/proc_macro_crate-8aa7dcd4d8248eab.d new file mode 100644 index 0000000..3cf357a --- /dev/null +++ b/target/release/deps/proc_macro_crate-8aa7dcd4d8248eab.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro_crate-8aa7dcd4d8248eab.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-0.1.5/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libproc_macro_crate-8aa7dcd4d8248eab.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-0.1.5/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/proc_macro_crate-8aa7dcd4d8248eab.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-0.1.5/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-0.1.5/src/lib.rs: diff --git a/target/release/deps/quote-d07f8260b626bf69.d b/target/release/deps/quote-d07f8260b626bf69.d new file mode 100644 index 0000000..286069c --- /dev/null +++ b/target/release/deps/quote-d07f8260b626bf69.d @@ -0,0 +1,13 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/quote-d07f8260b626bf69.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ident_fragment.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/to_tokens.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/runtime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/spanned.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libquote-d07f8260b626bf69.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ident_fragment.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/to_tokens.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/runtime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/spanned.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/quote-d07f8260b626bf69.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ident_fragment.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/to_tokens.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/runtime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/spanned.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ext.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/format.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/ident_fragment.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/to_tokens.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/runtime.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.23/src/spanned.rs: diff --git a/target/release/deps/regex-397ca5f7ff57d01d.d b/target/release/deps/regex-397ca5f7ff57d01d.d new file mode 100644 index 0000000..af4c94b --- /dev/null +++ b/target/release/deps/regex-397ca5f7ff57d01d.d @@ -0,0 +1,27 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/regex-397ca5f7ff57d01d.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/backtrack.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/compile.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/dfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/exec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/find_byte.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/input.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/imp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pikevm.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pool.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/prog.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_builder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_bytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_trait.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_unicode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/sparse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/utf8.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libregex-397ca5f7ff57d01d.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/backtrack.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/compile.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/dfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/exec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/find_byte.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/input.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/imp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pikevm.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pool.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/prog.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_builder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_bytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_trait.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_unicode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/sparse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/utf8.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/regex-397ca5f7ff57d01d.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/backtrack.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/compile.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/dfa.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/exec.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/find_byte.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/input.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/imp.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pikevm.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pool.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/prog.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_builder.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_bytes.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_set.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_trait.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_unicode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/sparse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/utf8.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/backtrack.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/compile.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/dfa.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/exec.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/expand.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/find_byte.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/input.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/literal/imp.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pikevm.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/pool.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/prog.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_builder.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_bytes.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_set.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_trait.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/re_unicode.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/sparse.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.7.0/src/utf8.rs: diff --git a/target/release/deps/regex_syntax-d29b704d8b2ef535.d b/target/release/deps/regex_syntax-d29b704d8b2ef535.d new file mode 100644 index 0000000..bb06975 --- /dev/null +++ b/target/release/deps/regex_syntax-d29b704d8b2ef535.d @@ -0,0 +1,35 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/regex_syntax-d29b704d8b2ef535.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/visitor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/either.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/interval.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/literal/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/translate.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/visitor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/parser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/age.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/case_folding_simple.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/general_category.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/grapheme_cluster_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/perl_word.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_bool.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_names.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_values.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script_extension.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/sentence_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/word_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/utf8.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libregex_syntax-d29b704d8b2ef535.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/visitor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/either.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/interval.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/literal/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/translate.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/visitor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/parser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/age.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/case_folding_simple.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/general_category.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/grapheme_cluster_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/perl_word.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_bool.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_names.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_values.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script_extension.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/sentence_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/word_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/utf8.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/regex_syntax-d29b704d8b2ef535.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/visitor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/either.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/interval.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/literal/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/translate.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/visitor.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/parser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/age.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/case_folding_simple.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/general_category.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/grapheme_cluster_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/perl_word.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_bool.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_names.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_values.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script_extension.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/sentence_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/word_break.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/utf8.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/parse.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/print.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/ast/visitor.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/either.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/interval.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/literal/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/print.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/translate.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/hir/visitor.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/parser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/age.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/case_folding_simple.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/general_category.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/grapheme_cluster_break.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/perl_word.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_bool.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_names.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/property_values.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/script_extension.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/sentence_break.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/unicode_tables/word_break.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.28/src/utf8.rs: diff --git a/target/release/deps/rustc_version-5aada85b829e4525.d b/target/release/deps/rustc_version-5aada85b829e4525.d new file mode 100644 index 0000000..eadb607 --- /dev/null +++ b/target/release/deps/rustc_version-5aada85b829e4525.d @@ -0,0 +1,7 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/rustc_version-5aada85b829e4525.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.4.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/librustc_version-5aada85b829e4525.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.4.0/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/rustc_version-5aada85b829e4525.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.4.0/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.4.0/src/lib.rs: diff --git a/target/release/deps/rustversion-6e839728fc312b72.d b/target/release/deps/rustversion-6e839728fc312b72.d new file mode 100644 index 0000000..b6d9ae8 --- /dev/null +++ b/target/release/deps/rustversion-6e839728fc312b72.d @@ -0,0 +1,20 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/librustversion-6e839728fc312b72.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/bound.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/constfn.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/date.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/expr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/release.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/time.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/version.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-f2fc1659aa1e8592/out/version.expr + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/rustversion-6e839728fc312b72.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/bound.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/constfn.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/date.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/expr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/release.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/time.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/version.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-f2fc1659aa1e8592/out/version.expr + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/attr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/bound.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/constfn.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/date.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/expand.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/expr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/iter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/release.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/time.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/token.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/rustversion-1.0.11/src/version.rs: +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-f2fc1659aa1e8592/out/version.expr: + +# env-dep:OUT_DIR=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/rustversion-f2fc1659aa1e8592/out diff --git a/target/release/deps/ryu-90cbcb62a44f9381.d b/target/release/deps/ryu-90cbcb62a44f9381.d new file mode 100644 index 0000000..3a513e1 --- /dev/null +++ b/target/release/deps/ryu-90cbcb62a44f9381.d @@ -0,0 +1,18 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/ryu-90cbcb62a44f9381.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/buffer/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_full_table.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_intrinsics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/digit_table.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s_intrinsics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/exponent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mantissa.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libryu-90cbcb62a44f9381.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/buffer/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_full_table.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_intrinsics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/digit_table.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s_intrinsics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/exponent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mantissa.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/ryu-90cbcb62a44f9381.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/buffer/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/common.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_full_table.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_intrinsics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/digit_table.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s_intrinsics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/exponent.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mantissa.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/buffer/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/common.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_full_table.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/d2s_intrinsics.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/digit_table.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/f2s_intrinsics.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/exponent.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.12/src/pretty/mantissa.rs: diff --git a/target/release/deps/semver-2f99c2ef04faf533.d b/target/release/deps/semver-2f99c2ef04faf533.d new file mode 100644 index 0000000..3a78266 --- /dev/null +++ b/target/release/deps/semver-2f99c2ef04faf533.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/semver-2f99c2ef04faf533.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/backport.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/display.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/eval.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/identifier.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/parse.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libsemver-2f99c2ef04faf533.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/backport.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/display.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/eval.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/identifier.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/parse.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/semver-2f99c2ef04faf533.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/backport.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/display.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/eval.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/identifier.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/parse.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/backport.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/display.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/eval.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/identifier.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.16/src/parse.rs: diff --git a/target/release/deps/serde-f15e66f08e5186fb.d b/target/release/deps/serde-f15e66f08e5186fb.d new file mode 100644 index 0000000..bb93086 --- /dev/null +++ b/target/release/deps/serde-f15e66f08e5186fb.d @@ -0,0 +1,25 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/serde-f15e66f08e5186fb.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libserde-f15e66f08e5186fb.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/serde-f15e66f08e5186fb.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/integer128.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/value.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/format.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/ignored_any.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/utf8.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/fmt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impls.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/ser/impossible.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/size_hint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/private/doc.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.151/src/de/seed.rs: diff --git a/target/release/deps/serde_derive-926ebfa801d42d40.d b/target/release/deps/serde_derive-926ebfa801d42d40.d new file mode 100644 index 0000000..2ab37cc --- /dev/null +++ b/target/release/deps/serde_derive-926ebfa801d42d40.d @@ -0,0 +1,22 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libserde_derive-926ebfa801d42d40.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/ast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/ctxt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/receiver.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/case.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/check.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/respan.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/symbol.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/bound.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/fragment.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/dummy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/pretend.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/this.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/try.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/serde_derive-926ebfa801d42d40.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/ast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/ctxt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/receiver.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/case.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/check.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/respan.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/symbol.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/bound.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/fragment.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/dummy.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/pretend.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/this.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/try.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/ast.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/attr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/ctxt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/receiver.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/case.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/check.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/respan.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/internals/symbol.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/bound.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/fragment.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/dummy.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/pretend.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/this.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.151/src/try.rs: diff --git a/target/release/deps/serde_json-53bd47283ff43d67.d b/target/release/deps/serde_json-53bd47283ff43d67.d new file mode 100644 index 0000000..160ce65 --- /dev/null +++ b/target/release/deps/serde_json-53bd47283ff43d67.d @@ -0,0 +1,23 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/serde_json-53bd47283ff43d67.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/from.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/index.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/partial_eq.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/features_check/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/io/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/number.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/read.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libserde_json-53bd47283ff43d67.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/from.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/index.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/partial_eq.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/features_check/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/io/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/number.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/read.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/serde_json-53bd47283ff43d67.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/from.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/index.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/partial_eq.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/features_check/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/io/mod.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/iter.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/number.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/read.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/map.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/from.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/index.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/partial_eq.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/value/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/features_check/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/io/mod.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/iter.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/number.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.91/src/read.rs: diff --git a/target/release/deps/sha2-6dbe6e1ccab5c877.d b/target/release/deps/sha2-6dbe6e1ccab5c877.d new file mode 100644 index 0000000..0ac33f7 --- /dev/null +++ b/target/release/deps/sha2-6dbe6e1ccab5c877.d @@ -0,0 +1,14 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/sha2-6dbe6e1ccab5c877.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/consts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/x86.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/x86.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libsha2-6dbe6e1ccab5c877.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/consts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/x86.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/x86.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/sha2-6dbe6e1ccab5c877.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/consts.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/x86.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/soft.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/x86.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/consts.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/soft.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha256/x86.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/soft.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/sha512/x86.rs: diff --git a/target/release/deps/solana_frozen_abi_macro-2310b0b1266f5cff.d b/target/release/deps/solana_frozen_abi_macro-2310b0b1266f5cff.d new file mode 100644 index 0000000..0341166 --- /dev/null +++ b/target/release/deps/solana_frozen_abi_macro-2310b0b1266f5cff.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libsolana_frozen_abi_macro-2310b0b1266f5cff.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-macro-1.10.41/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/solana_frozen_abi_macro-2310b0b1266f5cff.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-macro-1.10.41/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-frozen-abi-macro-1.10.41/src/lib.rs: diff --git a/target/release/deps/solana_sdk_macro-3989af0256a09b89.d b/target/release/deps/solana_sdk_macro-3989af0256a09b89.d new file mode 100644 index 0000000..5117af5 --- /dev/null +++ b/target/release/deps/solana_sdk_macro-3989af0256a09b89.d @@ -0,0 +1,5 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libsolana_sdk_macro-3989af0256a09b89.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-sdk-macro-1.10.41/src/lib.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/solana_sdk_macro-3989af0256a09b89.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-sdk-macro-1.10.41/src/lib.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/solana-sdk-macro-1.10.41/src/lib.rs: diff --git a/target/release/deps/syn-0ee9571ac1ded5fb.d b/target/release/deps/syn-0ee9571ac1ded5fb.d new file mode 100644 index 0000000..e9cc9fa --- /dev/null +++ b/target/release/deps/syn-0ee9571ac1ded5fb.d @@ -0,0 +1,57 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/syn-0ee9571ac1ded5fb.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/group.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ident.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/bigint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/data.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/expr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/generics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/item.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/file.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lifetime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/mac.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/derive.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/op.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/stmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ty.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/pat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/path.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/drops.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/punctuated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/tt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_quote.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_macro_input.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/spanned.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/whitespace.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/../gen_helper.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/export.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_keyword.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_punctuation.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/sealed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/span.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/thread.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lookahead.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/discouraged.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/reserved.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/verbatim.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/await.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/visit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/fold.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/clone.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/eq.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/debug.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libsyn-0ee9571ac1ded5fb.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/group.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ident.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/bigint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/data.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/expr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/generics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/item.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/file.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lifetime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/mac.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/derive.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/op.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/stmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ty.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/pat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/path.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/drops.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/punctuated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/tt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_quote.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_macro_input.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/spanned.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/whitespace.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/../gen_helper.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/export.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_keyword.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_punctuation.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/sealed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/span.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/thread.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lookahead.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/discouraged.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/reserved.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/verbatim.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/await.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/visit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/fold.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/clone.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/eq.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/debug.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/syn-0ee9571ac1ded5fb.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/group.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/token.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ident.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/bigint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/data.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/expr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/generics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/item.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/file.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lifetime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/mac.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/derive.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/op.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/stmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ty.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/pat.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/path.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/buffer.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/drops.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ext.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/punctuated.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/tt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_quote.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_macro_input.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/spanned.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/whitespace.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/../gen_helper.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/export.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_keyword.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_punctuation.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/sealed.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/span.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/thread.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lookahead.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/discouraged.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/reserved.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/verbatim.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/print.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/error.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/await.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/visit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/fold.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/clone.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/eq.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/hash.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/debug.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/group.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/token.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ident.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/attr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/bigint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/data.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/expr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/generics.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/item.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/file.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lifetime.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/mac.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/derive.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/op.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/stmt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ty.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/pat.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/path.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/buffer.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/drops.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/ext.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/punctuated.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/tt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_quote.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse_macro_input.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/spanned.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/whitespace.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/../gen_helper.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/export.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_keyword.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/custom_punctuation.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/sealed.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/span.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/thread.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/lookahead.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/parse.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/discouraged.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/reserved.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/verbatim.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/print.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/error.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/await.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/visit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/fold.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/clone.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/eq.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/hash.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.107/src/gen/debug.rs: diff --git a/target/release/deps/thiserror-13cc2d2a640f0e23.d b/target/release/deps/thiserror-13cc2d2a640f0e23.d new file mode 100644 index 0000000..3b19931 --- /dev/null +++ b/target/release/deps/thiserror-13cc2d2a640f0e23.d @@ -0,0 +1,9 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/thiserror-13cc2d2a640f0e23.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libthiserror-13cc2d2a640f0e23.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/thiserror-13cc2d2a640f0e23.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/aserror.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.38/src/display.rs: diff --git a/target/release/deps/thiserror_impl-9353bc8762229810.d b/target/release/deps/thiserror_impl-9353bc8762229810.d new file mode 100644 index 0000000..f5c4885 --- /dev/null +++ b/target/release/deps/thiserror_impl-9353bc8762229810.d @@ -0,0 +1,12 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libthiserror_impl-9353bc8762229810.dylib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/ast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/generics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/prop.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/valid.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/thiserror_impl-9353bc8762229810.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/ast.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/attr.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/expand.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/fmt.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/generics.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/prop.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/valid.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/ast.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/attr.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/expand.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/fmt.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/generics.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/prop.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.38/src/valid.rs: diff --git a/target/release/deps/toml-e2a863d5f35b0585.d b/target/release/deps/toml-e2a863d5f35b0585.d new file mode 100644 index 0000000..a2c0b1f --- /dev/null +++ b/target/release/deps/toml-e2a863d5f35b0585.d @@ -0,0 +1,15 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/toml-e2a863d5f35b0585.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/datetime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/tokens.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/spanned.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libtoml-e2a863d5f35b0585.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/datetime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/tokens.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/spanned.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/toml-e2a863d5f35b0585.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/map.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/value.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/datetime.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/ser.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/de.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/tokens.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/spanned.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/map.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/value.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/datetime.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/ser.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/de.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/tokens.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.5.10/src/spanned.rs: diff --git a/target/release/deps/typenum-0747cbf612ca4418.d b/target/release/deps/typenum-0747cbf612ca4418.d new file mode 100644 index 0000000..35d1334 --- /dev/null +++ b/target/release/deps/typenum-0747cbf612ca4418.d @@ -0,0 +1,20 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/typenum-0747cbf612ca4418.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/op.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libtypenum-0747cbf612ca4418.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/op.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/typenum-0747cbf612ca4418.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/op.rs /Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/bit.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/int.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/marker_traits.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/operator_aliases.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/private.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/type_operators.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/uint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/array.rs: +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/op.rs: +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs: + +# env-dep:TYPENUM_BUILD_CONSTS=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/consts.rs +# env-dep:TYPENUM_BUILD_OP=/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/build/typenum-d836ce8ae56b147f/out/op.rs diff --git a/target/release/deps/unicode_ident-97b695d212fdeaef.d b/target/release/deps/unicode_ident-97b695d212fdeaef.d new file mode 100644 index 0000000..2d9c054 --- /dev/null +++ b/target/release/deps/unicode_ident-97b695d212fdeaef.d @@ -0,0 +1,8 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/unicode_ident-97b695d212fdeaef.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/tables.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libunicode_ident-97b695d212fdeaef.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/tables.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/unicode_ident-97b695d212fdeaef.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/tables.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.6/src/tables.rs: diff --git a/target/release/deps/unicode_segmentation-4a075b29da6b3ebd.d b/target/release/deps/unicode_segmentation-4a075b29da6b3ebd.d new file mode 100644 index 0000000..1593486 --- /dev/null +++ b/target/release/deps/unicode_segmentation-4a075b29da6b3ebd.d @@ -0,0 +1,11 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/unicode_segmentation-4a075b29da6b3ebd.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/grapheme.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/sentence.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/word.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/tables.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libunicode_segmentation-4a075b29da6b3ebd.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/grapheme.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/sentence.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/word.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/tables.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/unicode_segmentation-4a075b29da6b3ebd.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/grapheme.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/sentence.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/word.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/tables.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/grapheme.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/sentence.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/word.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.10.0/src/tables.rs: diff --git a/target/release/deps/version_check-e84d4ac735eb4669.d b/target/release/deps/version_check-e84d4ac735eb4669.d new file mode 100644 index 0000000..2e3147f --- /dev/null +++ b/target/release/deps/version_check-e84d4ac735eb4669.d @@ -0,0 +1,10 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/version_check-e84d4ac735eb4669.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/version.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/channel.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/date.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libversion_check-e84d4ac735eb4669.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/version.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/channel.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/date.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/version_check-e84d4ac735eb4669.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/version.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/channel.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/date.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/version.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/channel.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/date.rs: diff --git a/target/release/deps/yansi-34bf9e888c25c67f.d b/target/release/deps/yansi-34bf9e888c25c67f.d new file mode 100644 index 0000000..bae0cf4 --- /dev/null +++ b/target/release/deps/yansi-34bf9e888c25c67f.d @@ -0,0 +1,12 @@ +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/yansi-34bf9e888c25c67f.rmeta: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/windows.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/paint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/style.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/color.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/libyansi-34bf9e888c25c67f.rlib: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/windows.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/paint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/style.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/color.rs + +/Users/quanghuy/Desktop/console-contract/superteam-dao-contract/target/release/deps/yansi-34bf9e888c25c67f.d: /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/lib.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/macros.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/windows.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/paint.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/style.rs /Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/color.rs + +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/lib.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/macros.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/windows.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/paint.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/style.rs: +/Users/quanghuy/.cargo/registry/src/github.com-1ecc6299db9ec823/yansi-0.5.1/src/color.rs: diff --git a/target/types/superteam_dao_contract.ts b/target/types/superteam_dao_contract.ts new file mode 100644 index 0000000..613a0d7 --- /dev/null +++ b/target/types/superteam_dao_contract.ts @@ -0,0 +1,671 @@ +export type SuperteamDaoContract = { + "version": "0.1.0", + "name": "superteam_dao_contract", + "instructions": [ + { + "name": "createIdentifier", + "accounts": [ + { + "name": "identifier", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "rent", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "createProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "identifier", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "rent", + "isMut": false, + "isSigner": false + } + ], + "args": [ + { + "name": "recipient", + "type": "publicKey" + }, + { + "name": "image", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "subtitle", + "type": "string" + }, + { + "name": "spl", + "type": "publicKey" + }, + { + "name": "tags", + "type": "string" + }, + { + "name": "amount", + "type": "u64" + }, + { + "name": "isOwner", + "type": "bool" + } + ] + }, + { + "name": "cancelProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "rejectProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "recipient", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "approveProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "recipient", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "tokenProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [ + { + "name": "transactionHash", + "type": { + "option": "string" + } + } + ] + }, + { + "name": "closeProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + } + ], + "accounts": [ + { + "name": "identifier", + "type": { + "kind": "struct", + "fields": [ + { + "name": "sender", + "type": "publicKey" + }, + { + "name": "count", + "type": "u64" + } + ] + } + }, + { + "name": "proposal", + "type": { + "kind": "struct", + "fields": [ + { + "name": "recipient", + "type": "publicKey" + }, + { + "name": "sender", + "type": "publicKey" + }, + { + "name": "status", + "type": "u8" + }, + { + "name": "owner", + "type": "bool" + }, + { + "name": "spl", + "type": "publicKey" + }, + { + "name": "amount", + "type": "u64" + }, + { + "name": "tags", + "type": "string" + }, + { + "name": "transaction", + "type": { + "option": "string" + } + }, + { + "name": "image", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "subtitle", + "type": "string" + }, + { + "name": "identifier", + "type": "u64" + } + ] + } + } + ], + "errors": [ + { + "code": 6000, + "name": "SenderInvalidStateAccount", + "msg": "Invalid sender" + }, + { + "code": 6001, + "name": "RecipientInvalidStateAccount", + "msg": "Invalid recipient" + }, + { + "code": 6002, + "name": "NotEnoughLamport", + "msg": "Not enough lamport" + }, + { + "code": 6003, + "name": "NotEnoughSplToken", + "msg": "Not enough spl token" + }, + { + "code": 6004, + "name": "OwnerInvalidTokenAccount", + "msg": "Invalid owner associated token account" + }, + { + "code": 6005, + "name": "StatusPendingInvalid", + "msg": "proposal is not pending" + }, + { + "code": 6006, + "name": "OwnerInvalidAccount", + "msg": "Invalid owner account" + }, + { + "code": 6007, + "name": "InvalidAccount", + "msg": "Account is invalid" + }, + { + "code": 6008, + "name": "InvalidMintAccount", + "msg": "Mint Account is invalid" + }, + { + "code": 6009, + "name": "TagsTooLong", + "msg": "The provided tags should be 256 characters long maximum." + }, + { + "code": 6010, + "name": "TitleTooLong", + "msg": "The provided content should be 256 characters long maximum." + }, + { + "code": 6011, + "name": "SubtitleTooLong", + "msg": "The provided subtitle should be 256 characters long maximum." + }, + { + "code": 6012, + "name": "ImageTooLong", + "msg": "The provided image should be 256 characters long maximum." + } + ] +}; + +export const IDL: SuperteamDaoContract = { + "version": "0.1.0", + "name": "superteam_dao_contract", + "instructions": [ + { + "name": "createIdentifier", + "accounts": [ + { + "name": "identifier", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "rent", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "createProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "identifier", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "rent", + "isMut": false, + "isSigner": false + } + ], + "args": [ + { + "name": "recipient", + "type": "publicKey" + }, + { + "name": "image", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "subtitle", + "type": "string" + }, + { + "name": "spl", + "type": "publicKey" + }, + { + "name": "tags", + "type": "string" + }, + { + "name": "amount", + "type": "u64" + }, + { + "name": "isOwner", + "type": "bool" + } + ] + }, + { + "name": "cancelProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "rejectProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "recipient", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + }, + { + "name": "approveProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "recipient", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + }, + { + "name": "tokenProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [ + { + "name": "transactionHash", + "type": { + "option": "string" + } + } + ] + }, + { + "name": "closeProposal", + "accounts": [ + { + "name": "proposal", + "isMut": true, + "isSigner": false + }, + { + "name": "sender", + "isMut": true, + "isSigner": true + }, + { + "name": "systemProgram", + "isMut": false, + "isSigner": false + } + ], + "args": [] + } + ], + "accounts": [ + { + "name": "identifier", + "type": { + "kind": "struct", + "fields": [ + { + "name": "sender", + "type": "publicKey" + }, + { + "name": "count", + "type": "u64" + } + ] + } + }, + { + "name": "proposal", + "type": { + "kind": "struct", + "fields": [ + { + "name": "recipient", + "type": "publicKey" + }, + { + "name": "sender", + "type": "publicKey" + }, + { + "name": "status", + "type": "u8" + }, + { + "name": "owner", + "type": "bool" + }, + { + "name": "spl", + "type": "publicKey" + }, + { + "name": "amount", + "type": "u64" + }, + { + "name": "tags", + "type": "string" + }, + { + "name": "transaction", + "type": { + "option": "string" + } + }, + { + "name": "image", + "type": "string" + }, + { + "name": "title", + "type": "string" + }, + { + "name": "subtitle", + "type": "string" + }, + { + "name": "identifier", + "type": "u64" + } + ] + } + } + ], + "errors": [ + { + "code": 6000, + "name": "SenderInvalidStateAccount", + "msg": "Invalid sender" + }, + { + "code": 6001, + "name": "RecipientInvalidStateAccount", + "msg": "Invalid recipient" + }, + { + "code": 6002, + "name": "NotEnoughLamport", + "msg": "Not enough lamport" + }, + { + "code": 6003, + "name": "NotEnoughSplToken", + "msg": "Not enough spl token" + }, + { + "code": 6004, + "name": "OwnerInvalidTokenAccount", + "msg": "Invalid owner associated token account" + }, + { + "code": 6005, + "name": "StatusPendingInvalid", + "msg": "proposal is not pending" + }, + { + "code": 6006, + "name": "OwnerInvalidAccount", + "msg": "Invalid owner account" + }, + { + "code": 6007, + "name": "InvalidAccount", + "msg": "Account is invalid" + }, + { + "code": 6008, + "name": "InvalidMintAccount", + "msg": "Mint Account is invalid" + }, + { + "code": 6009, + "name": "TagsTooLong", + "msg": "The provided tags should be 256 characters long maximum." + }, + { + "code": 6010, + "name": "TitleTooLong", + "msg": "The provided content should be 256 characters long maximum." + }, + { + "code": 6011, + "name": "SubtitleTooLong", + "msg": "The provided subtitle should be 256 characters long maximum." + }, + { + "code": 6012, + "name": "ImageTooLong", + "msg": "The provided image should be 256 characters long maximum." + } + ] +}; diff --git a/tests/superteam-dao-contract.ts b/tests/superteam-dao-contract.ts index a637ce9..6318836 100644 --- a/tests/superteam-dao-contract.ts +++ b/tests/superteam-dao-contract.ts @@ -77,7 +77,7 @@ describe("superteam-dao-contract", () => { [proposalAccount, proposalAccountBump] = await findPDAProposal(sender.publicKey, identifierData.count, program) await program.methods.createProposal(recipient.publicKey, "https://upload.wikimedia.org/wikipedia/en/b/b9/Solana_logo.png", - "Orca summer Winner", "", mintA.publicKey, "gamefi", new BN(100*(10**MINT_A_DECIMALS))) + "Orca summer Winner", "", mintA.publicKey, "gamefi", new BN(100*(10**MINT_A_DECIMALS)), true) .accounts({ proposal: proposalAccount, identifier: identifierAccount, @@ -96,7 +96,7 @@ describe("superteam-dao-contract", () => { [proposalAccount1, proposalAccountBump1] = await findPDAProposal(sender.publicKey, identifierData.count, program) await program.methods.createProposal(recipient.publicKey, "https://upload.wikimedia.org/wikipedia/en/b/b9/Solana_logo.png", - "Orca summer 2nd", "", mintA.publicKey, "defi", new BN(100*(10**MINT_A_DECIMALS))) + "Orca summer 2nd", "", mintA.publicKey, "defi", new BN(100*(10**MINT_A_DECIMALS)), true) .accounts({ proposal: proposalAccount1, identifier: identifierAccount, @@ -116,7 +116,7 @@ describe("superteam-dao-contract", () => { [proposalAccount2, proposalAccountBump2] = await findPDAProposal(sender.publicKey, identifierData.count, program) await program.methods.createProposal(recipient.publicKey, "https://upload.wikimedia.org/wikipedia/en/b/b9/Solana_logo.png", - "Orca summer 3rd", "", mintA.publicKey, "orca", new BN(100*(10**MINT_A_DECIMALS))) + "Orca summer 3rd", "", mintA.publicKey, "orca", new BN(100*(10**MINT_A_DECIMALS)), true) .accounts({ proposal: proposalAccount2, identifier: identifierAccount, @@ -267,19 +267,4 @@ describe("superteam-dao-contract", () => { }); - it("filter proposal by image ", async () => { - let status = new BN(1); - const proposalByImage = await program.account.proposal.all([ - { - memcmp: { - offset: 8 + 32 + 32 + 1 + 1 + 4, // Discriminator. - bytes: bs58.encode(Buffer.from("https://upload.wikimedia.org/wikipedia/en/b/b9/Solana_logo.png")), - } - } - ]); - - console.log(proposalByImage); - - }); - });