repo_id
stringclasses
279 values
file_path
stringlengths
43
179
content
stringlengths
1
4.18M
__index_level_0__
int64
0
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/mock_batched_forester.rs
use std::fmt::Error; use light_hasher::{Hasher, Poseidon}; use light_merkle_tree_reference::MerkleTree; use light_utils::bigint::bigint_to_be_bytes_array; use reqwest::Client; use crate::{ batch_append::calculate_hash_chain, batch_append_2::get_batch_append2_inputs, batch_update::get_batch_update_inputs, gnark::{ batch_append_2_json_formatter::BatchAppend2ProofInputsJson, batch_update_json_formatter::update_inputs_string, constants::{PROVE_PATH, SERVER_ADDRESS}, proof_helpers::{compress_proof, deserialize_gnark_proof_json, proof_from_json_struct}, }, }; // TODO: rename to MockBatchedForester pub struct MockBatchedForester<const HEIGHT: usize> { pub merkle_tree: MerkleTree<Poseidon>, pub input_queue_leaves: Vec<[u8; 32]>, /// Indices of leaves which in merkle tree which are active. pub output_queue_leaves: Vec<[u8; 32]>, pub active_leaves: Vec<[u8; 32]>, pub tx_events: Vec<MockTxEvent>, } #[derive(Debug, Clone)] pub struct MockTxEvent { pub tx_hash: [u8; 32], pub inputs: Vec<[u8; 32]>, pub outputs: Vec<[u8; 32]>, } impl<const HEIGHT: usize> Default for MockBatchedForester<HEIGHT> { fn default() -> Self { let merkle_tree = MerkleTree::<Poseidon>::new(HEIGHT, 0); let input_queue_leaves = vec![]; Self { merkle_tree, input_queue_leaves, output_queue_leaves: vec![], active_leaves: vec![], tx_events: vec![], } } } impl<const HEIGHT: usize> MockBatchedForester<HEIGHT> { pub async fn get_batched_append_proof( &mut self, account_next_index: usize, leaves: Vec<[u8; 32]>, num_zkp_updates: u32, batch_size: u32, ) -> Result<(CompressedProof, [u8; 32]), Error> { let start = num_zkp_updates as usize * batch_size as usize; let end = start + batch_size as usize; let leaves = leaves[start..end].to_vec(); // let sub_trees = self.merkle_tree.get_subtrees().try_into().unwrap(); let local_leaves_hashchain = calculate_hash_chain(&leaves); let old_root = self.merkle_tree.root(); let start_index = self.merkle_tree.get_next_index().saturating_sub(1); let mut old_leaves = vec![]; let mut merkle_proofs = vec![]; for i in account_next_index..account_next_index + batch_size as usize { if account_next_index > i { } else { self.merkle_tree.append(&[0u8; 32]).unwrap(); } let old_leaf = self.merkle_tree.get_leaf(i).unwrap(); old_leaves.push(old_leaf); let proof = self.merkle_tree.get_proof_of_leaf(i, true).unwrap(); merkle_proofs.push(proof.to_vec()); } // Insert new leaves into the merkle tree. Every leaf which is not [0u8; // 32] has already been nullified hence shouldn't be updated. for (i, leaf) in leaves.iter().enumerate() { if old_leaves[i] == [0u8; 32] { let index = account_next_index + i; self.merkle_tree.update(&leaf, index).unwrap(); } } let circuit_inputs = get_batch_append2_inputs::<HEIGHT>( old_root, start_index as u32, leaves, local_leaves_hashchain, old_leaves, merkle_proofs, batch_size, ); assert_eq!( bigint_to_be_bytes_array::<32>(&circuit_inputs.new_root.to_biguint().unwrap()).unwrap(), self.merkle_tree.root() ); let client = Client::new(); let inputs_json = BatchAppend2ProofInputsJson::from_inputs(&circuit_inputs).to_string(); let response_result = client .post(&format!("{}{}", SERVER_ADDRESS, PROVE_PATH)) .header("Content-Type", "text/plain; charset=utf-8") .body(inputs_json) .send() .await .expect("Failed to execute request."); if response_result.status().is_success() { let body = response_result.text().await.unwrap(); let proof_json = deserialize_gnark_proof_json(&body).unwrap(); let (proof_a, proof_b, proof_c) = proof_from_json_struct(proof_json); let (proof_a, proof_b, proof_c) = compress_proof(&proof_a, &proof_b, &proof_c); return Ok(( CompressedProof { a: proof_a, b: proof_b, c: proof_c, }, bigint_to_be_bytes_array::<32>(&circuit_inputs.new_root.to_biguint().unwrap()) .unwrap(), )); } Err(Error) } pub async fn get_batched_update_proof( &mut self, batch_size: u32, leaves_hashchain: [u8; 32], ) -> Result<(CompressedProof, [u8; 32]), Error> { let mut merkle_proofs = vec![]; let mut path_indices = vec![]; let leaves = self.input_queue_leaves[..batch_size as usize].to_vec(); let old_root = self.merkle_tree.root(); let mut nullifiers = Vec::new(); let mut tx_hashes = Vec::new(); let mut old_leaves = Vec::new(); for leaf in leaves.iter() { let index = self.merkle_tree.get_leaf_index(leaf).unwrap(); if self.merkle_tree.get_next_index() <= index { old_leaves.push([0u8; 32]); } else { old_leaves.push(leaf.clone()); } // Handle case that we nullify a leaf which has not been inserted yet. while self.merkle_tree.get_next_index() <= index { self.merkle_tree.append(&[0u8; 32]).unwrap(); } let proof = self.merkle_tree.get_proof_of_leaf(index, true).unwrap(); merkle_proofs.push(proof.to_vec()); path_indices.push(index as u32); self.input_queue_leaves.remove(0); let event = self .tx_events .iter() .find(|tx_event| tx_event.inputs.contains(leaf)) .expect("No event for leaf found."); let index_bytes = index.to_be_bytes(); let nullifier = Poseidon::hashv(&[leaf, &index_bytes, &event.tx_hash]).unwrap(); println!("leaf: {:?}", leaf); println!("index: {:?}", index); println!("index_bytes: {:?}", index_bytes); println!("tx_hash: {:?}", event.tx_hash); println!("nullifier: {:?}", nullifier); tx_hashes.push(event.tx_hash); nullifiers.push(nullifier); self.merkle_tree.update(&nullifier, index).unwrap(); } // local_leaves_hashchain is only used for a test assertion. let local_nullifier_hashchain = calculate_hash_chain(&nullifiers); assert_eq!(leaves_hashchain, local_nullifier_hashchain); // TODO: adapt update circuit to allow for non-zero updates let inputs = get_batch_update_inputs::<HEIGHT>( old_root, tx_hashes, leaves, leaves_hashchain, old_leaves, merkle_proofs, path_indices, batch_size, ); let client = Client::new(); let circuit_inputs_new_root = bigint_to_be_bytes_array::<32>(&inputs.new_root.to_biguint().unwrap()).unwrap(); let inputs = update_inputs_string(&inputs); let new_root = self.merkle_tree.root(); let response_result = client .post(&format!("{}{}", SERVER_ADDRESS, PROVE_PATH)) .header("Content-Type", "text/plain; charset=utf-8") .body(inputs) .send() .await .expect("Failed to execute request."); assert_eq!(circuit_inputs_new_root, new_root); if response_result.status().is_success() { let body = response_result.text().await.unwrap(); let proof_json = deserialize_gnark_proof_json(&body).unwrap(); let (proof_a, proof_b, proof_c) = proof_from_json_struct(proof_json); let (proof_a, proof_b, proof_c) = compress_proof(&proof_a, &proof_b, &proof_c); return Ok(( CompressedProof { a: proof_a, b: proof_b, c: proof_c, }, new_root, )); } Err(Error) } } pub struct CompressedProof { pub a: [u8; 32], pub b: [u8; 64], pub c: [u8; 32], }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/lib.rs
pub mod batch_address_append; pub mod batch_append_with_proofs; pub mod batch_append_with_subtrees; pub mod batch_update; pub mod combined; pub mod errors; #[cfg(feature = "gnark")] pub mod gnark; pub mod groth16_solana_verifier; pub mod helpers; pub mod inclusion; pub mod init_merkle_tree; pub mod non_inclusion; pub mod prove_utils;
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/batch_append_with_proofs.rs
use light_bounded_vec::BoundedVec; use light_concurrent_merkle_tree::changelog::ChangelogEntry; use num_bigint::{BigInt, Sign}; use serde::Serialize; use crate::helpers::compute_root_from_merkle_proof; use crate::{batch_append_with_subtrees::calculate_hash_chain, helpers::bigint_to_u8_32}; #[derive(Debug, Clone, Serialize)] pub struct BatchAppendWithProofsCircuitInputs { pub public_input_hash: BigInt, pub old_root: BigInt, pub new_root: BigInt, pub leaves_hashchain_hash: BigInt, pub start_index: u32, pub old_leaves: Vec<BigInt>, pub leaves: Vec<BigInt>, pub merkle_proofs: Vec<Vec<BigInt>>, pub height: u32, pub batch_size: u32, } impl BatchAppendWithProofsCircuitInputs { pub fn public_inputs_arr(&self) -> [u8; 32] { bigint_to_u8_32(&self.public_input_hash).unwrap() } } pub fn get_batch_append_with_proofs_inputs<const HEIGHT: usize>( // get this from Merkle tree account current_root: [u8; 32], // get this from Merkle tree account start_index: u32, // get this from output queue account leaves: Vec<[u8; 32]>, // get this from output queue account leaves_hashchain: [u8; 32], // get old_leaves and merkle_proofs from indexer by requesting Merkle proofs // by indices old_leaves: Vec<[u8; 32]>, merkle_proofs: Vec<Vec<[u8; 32]>>, batch_size: u32, ) -> BatchAppendWithProofsCircuitInputs { let mut new_root = [0u8; 32]; let mut changelog: Vec<ChangelogEntry<HEIGHT>> = Vec::new(); let mut circuit_merkle_proofs = Vec::with_capacity(batch_size as usize); for (i, (old_leaf, (new_leaf, merkle_proof))) in old_leaves .iter() .zip(leaves.iter().zip(merkle_proofs.iter())) .enumerate() { let mut bounded_vec_merkle_proof = BoundedVec::from_slice(merkle_proof.as_slice()); let current_index = start_index as usize + i; // Apply previous changes to keep proofs consistent. if i > 0 { for change_log_entry in changelog.iter() { change_log_entry .update_proof(current_index, &mut bounded_vec_merkle_proof) .unwrap(); } } let merkle_proof_array = bounded_vec_merkle_proof.to_array().unwrap(); // Determine if we use the old or new leaf based on whether the old leaf is nullified (zeroed). let is_old_leaf_zero = old_leaf.iter().all(|&byte| byte == 0); let final_leaf = if is_old_leaf_zero { *new_leaf } else { *old_leaf }; // Update the root based on the current proof and nullifier let (updated_root, changelog_entry) = compute_root_from_merkle_proof(final_leaf, &merkle_proof_array, start_index + i as u32); new_root = updated_root; changelog.push(changelog_entry); circuit_merkle_proofs.push( merkle_proof_array .iter() .map(|hash| BigInt::from_bytes_be(Sign::Plus, hash)) .collect(), ); } let mut start_index_bytes = [0u8; 32]; start_index_bytes[28..].copy_from_slice(start_index.to_be_bytes().as_slice()); // Calculate the public input hash chain with old root, new root, and leaves hash chain let public_input_hash = calculate_hash_chain(&[current_root, new_root, leaves_hashchain, start_index_bytes]); println!("public_input_hash: {:?}", public_input_hash); println!("current root {:?}", current_root); println!("new root {:?}", new_root); println!("leaves hashchain {:?}", leaves_hashchain); println!("start index {:?}", start_index_bytes); BatchAppendWithProofsCircuitInputs { public_input_hash: BigInt::from_bytes_be(Sign::Plus, &public_input_hash), old_root: BigInt::from_bytes_be(Sign::Plus, &current_root), new_root: BigInt::from_bytes_be(Sign::Plus, &new_root), leaves_hashchain_hash: BigInt::from_bytes_be(Sign::Plus, &leaves_hashchain), start_index, old_leaves: old_leaves .iter() .map(|leaf| BigInt::from_bytes_be(Sign::Plus, leaf)) .collect(), leaves: leaves .iter() .map(|leaf| BigInt::from_bytes_be(Sign::Plus, leaf)) .collect(), merkle_proofs: circuit_merkle_proofs, height: HEIGHT as u32, batch_size, } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/batch_update.rs
use crate::helpers::compute_root_from_merkle_proof; use crate::{batch_append_with_subtrees::calculate_hash_chain, helpers::bigint_to_u8_32}; use light_bounded_vec::BoundedVec; use light_concurrent_merkle_tree::changelog::ChangelogEntry; use light_hasher::{Hasher, Poseidon}; use num_bigint::{BigInt, Sign}; use num_traits::FromBytes; #[derive(Clone, Debug)] pub struct BatchUpdateCircuitInputs { pub public_input_hash: BigInt, pub old_root: BigInt, pub new_root: BigInt, pub tx_hashes: Vec<BigInt>, pub leaves_hashchain_hash: BigInt, pub leaves: Vec<BigInt>, pub old_leaves: Vec<BigInt>, pub merkle_proofs: Vec<Vec<BigInt>>, pub path_indices: Vec<u32>, pub height: u32, pub batch_size: u32, } impl BatchUpdateCircuitInputs { pub fn public_inputs_arr(&self) -> [u8; 32] { bigint_to_u8_32(&self.public_input_hash).unwrap() } } #[derive(Clone, Debug)] pub struct BatchUpdateInputs<'a>(pub &'a [BatchUpdateCircuitInputs]); impl BatchUpdateInputs<'_> { pub fn public_inputs(&self) -> Vec<[u8; 32]> { // Concatenate all public inputs into a single flat vector vec![self.0[0].public_inputs_arr()] } } #[allow(clippy::too_many_arguments)] pub fn get_batch_update_inputs<const HEIGHT: usize>( // get from photon current_root: [u8; 32], // get from photon tx_hashes: Vec<[u8; 32]>, // get from photon leaves: Vec<[u8; 32]>, // get from account leaves_hashchain: [u8; 32], // get from photon old_leaves: Vec<[u8; 32]>, // get from photon merkle_proofs: Vec<Vec<[u8; 32]>>, // get from photon path_indices: Vec<u32>, // get from account (every mt account has a hardcoded batch size) batch_size: u32, ) -> BatchUpdateCircuitInputs { let mut new_root = [0u8; 32]; let old_root = current_root; // We need a changelog because all subsequent proofs change after one update. // Hence, we patch the proofs with the changelog. let mut changelog: Vec<ChangelogEntry<HEIGHT>> = Vec::new(); let mut circuit_merkle_proofs = vec![]; let mut nullifiers = vec![]; for (i, (_leaf, (merkle_proof, index))) in leaves .iter() .zip(merkle_proofs.iter().zip(path_indices.iter())) .enumerate() { let mut bounded_vec_merkle_proof = BoundedVec::from_slice(merkle_proof.as_slice()); if i > 0 { for change_log_entry in changelog.iter() { change_log_entry .update_proof(*index as usize, &mut bounded_vec_merkle_proof) .unwrap(); } } let merkle_proof = bounded_vec_merkle_proof.to_array().unwrap(); let index_bytes = index.to_be_bytes(); let nullifier = Poseidon::hashv(&[&leaves[i], &index_bytes, &tx_hashes[i]]).unwrap(); nullifiers.push(nullifier); let (root, changelog_entry) = compute_root_from_merkle_proof(nullifier, &merkle_proof, *index); new_root = root; changelog.push(changelog_entry); circuit_merkle_proofs.push(merkle_proof); } let public_input_hash = calculate_hash_chain(&[old_root, new_root, leaves_hashchain]); BatchUpdateCircuitInputs { public_input_hash: BigInt::from_be_bytes(&public_input_hash), old_root: BigInt::from_be_bytes(&old_root), new_root: BigInt::from_be_bytes(&new_root), tx_hashes: tx_hashes .iter() .map(|tx_hash| BigInt::from_bytes_be(Sign::Plus, tx_hash)) .collect(), leaves_hashchain_hash: BigInt::from_be_bytes(&leaves_hashchain), leaves: leaves .iter() .map(|leaf| BigInt::from_bytes_be(Sign::Plus, leaf)) .collect(), old_leaves: old_leaves .iter() .map(|leaf| BigInt::from_bytes_be(Sign::Plus, leaf)) .collect(), merkle_proofs: circuit_merkle_proofs .iter() .map(|proof| { proof .iter() .map(|hash| BigInt::from_bytes_be(Sign::Plus, hash)) .collect() }) .collect(), path_indices, height: HEIGHT as u32, batch_size, } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/batch_append_with_subtrees.rs
use crate::helpers::bigint_to_u8_32; use light_hasher::{Hasher, Poseidon}; use light_merkle_tree_reference::sparse_merkle_tree::SparseMerkleTree; use light_utils::bigint::bigint_to_be_bytes_array; use num_bigint::{BigInt, BigUint, Sign}; use num_traits::FromPrimitive; #[derive(Clone, Debug, Default)] pub struct BatchAppendWithSubtreesCircuitInputs { pub public_input_hash: BigInt, pub old_sub_tree_hash_chain: BigInt, pub new_sub_tree_hash_chain: BigInt, pub new_root: BigInt, pub hashchain_hash: BigInt, pub start_index: BigInt, pub tree_height: BigInt, pub leaves: Vec<BigInt>, pub subtrees: Vec<BigInt>, } impl BatchAppendWithSubtreesCircuitInputs { pub fn public_inputs_arr(&self) -> [u8; 32] { bigint_to_u8_32(&self.public_input_hash).unwrap() } } #[derive(Clone, Debug)] pub struct BatchAppendInputs<'a>(pub &'a [BatchAppendWithSubtreesCircuitInputs]); impl BatchAppendInputs<'_> { pub fn public_inputs(&self) -> Vec<[u8; 32]> { // Concatenate all public inputs into a single flat vector vec![self.0[0].public_inputs_arr()] } } pub fn get_batch_append_with_subtrees_inputs<const HEIGHT: usize>( // get either from photon or mt account next_index: usize, // get from photon sub_trees: [[u8; 32]; HEIGHT], // get from queue leaves: Vec<[u8; 32]>, // get from queue leaves_hashchain: [u8; 32], ) -> BatchAppendWithSubtreesCircuitInputs { let mut bigint_leaves = vec![]; let old_subtrees = sub_trees; let old_subtree_hashchain = calculate_hash_chain(&old_subtrees); let mut merkle_tree = SparseMerkleTree::<Poseidon, HEIGHT>::new(sub_trees, next_index); let start_index = bigint_to_be_bytes_array::<32>(&BigUint::from_usize(next_index).unwrap()).unwrap(); for leaf in leaves.iter() { merkle_tree.append(*leaf); bigint_leaves.push(BigInt::from_bytes_be(Sign::Plus, leaf)); } let new_root = BigInt::from_signed_bytes_be(merkle_tree.root().as_slice()); let new_subtree_hashchain = calculate_hash_chain(&merkle_tree.get_subtrees()); let public_input_hash = calculate_hash_chain(&[ old_subtree_hashchain, new_subtree_hashchain, merkle_tree.root(), leaves_hashchain, start_index, ]); BatchAppendWithSubtreesCircuitInputs { subtrees: old_subtrees .iter() .map(|subtree| BigInt::from_bytes_be(Sign::Plus, subtree)) .collect(), old_sub_tree_hash_chain: BigInt::from_bytes_be(Sign::Plus, &old_subtree_hashchain), new_sub_tree_hash_chain: BigInt::from_bytes_be(Sign::Plus, &new_subtree_hashchain), leaves: bigint_leaves, new_root, public_input_hash: BigInt::from_bytes_be(Sign::Plus, &public_input_hash), start_index: BigInt::from_bytes_be(Sign::Plus, &start_index), hashchain_hash: BigInt::from_bytes_be(Sign::Plus, &leaves_hashchain), tree_height: BigInt::from_usize(merkle_tree.get_height()).unwrap(), } } pub fn calculate_hash_chain(hashes: &[[u8; 32]]) -> [u8; 32] { if hashes.is_empty() { return [0u8; 32]; } if hashes.len() == 1 { return hashes[0]; } let mut hash_chain = hashes[0]; for hash in hashes.iter().skip(1) { hash_chain = Poseidon::hashv(&[&hash_chain, hash]).unwrap(); } hash_chain }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/helpers.rs
use env_logger::Builder; use light_concurrent_merkle_tree::changelog::ChangelogEntry; use light_hasher::{Hasher, Poseidon}; use log::LevelFilter; use num_bigint::BigInt; pub fn change_endianness(bytes: &[u8]) -> Vec<u8> { let mut vec = Vec::new(); for b in bytes.chunks(32) { for byte in b.iter().rev() { vec.push(*byte); } } vec } pub fn convert_endianness_128(bytes: &[u8]) -> Vec<u8> { bytes .chunks(64) .flat_map(|b| b.iter().copied().rev().collect::<Vec<u8>>()) .collect::<Vec<u8>>() } pub fn init_logger() { let _ = Builder::new() .filter_module("light_prover_client", LevelFilter::Info) .try_init(); } pub fn bigint_to_u8_32(n: &BigInt) -> Result<[u8; 32], Box<dyn std::error::Error>> { let (_, bytes_be) = n.to_bytes_be(); if bytes_be.len() > 32 { Err("Number too large to fit in [u8; 32]")?; } let mut array = [0; 32]; let bytes = &bytes_be[..bytes_be.len()]; array[(32 - bytes.len())..].copy_from_slice(bytes); Ok(array) } pub fn hash_chain(hashes: &[[u8; 32]]) -> [u8; 32] { if hashes.is_empty() { return [0; 32]; } let mut current_hash = *hashes.first().unwrap(); for hash in hashes.iter().skip(1) { current_hash = Poseidon::hashv(&[&current_hash[..], &hash[..]]).unwrap(); } current_hash } pub fn compute_root_from_merkle_proof<const HEIGHT: usize>( leaf: [u8; 32], path_elements: &[[u8; 32]; HEIGHT], path_index: u32, ) -> ([u8; 32], ChangelogEntry<HEIGHT>) { let mut changelog_entry = ChangelogEntry::default_with_index(path_index as usize); let mut current_hash = leaf; let mut current_index = path_index; for (level, path_element) in path_elements.iter().enumerate() { changelog_entry.path[level] = Some(current_hash); if current_index % 2 == 0 { current_hash = Poseidon::hashv(&[&current_hash, path_element]).unwrap(); } else { current_hash = Poseidon::hashv(&[path_element, &current_hash]).unwrap(); } current_index /= 2; } (current_hash, changelog_entry) }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/errors.rs
use ark_relations::r1cs::SynthesisError; use ark_serialize::SerializationError; use color_eyre::Report; use groth16_solana::errors::Groth16Error; use thiserror::Error; #[derive(Debug, Error)] pub enum CircuitsError { #[error("Error: {0}")] GenericError(String), #[error("Arkworks prover error: {0}")] ArkworksProverError(String), #[error("Arkworks serialization error: {0}")] ArkworksSerializationError(String), #[error("Groth16-Solana Error: {0}")] Groth16SolanaError(Groth16Error), #[error("Cannot change endianness")] ChangeEndiannessError, #[error("Cannot parse inputs")] InputsParsingError, #[error("Wrong number of UTXO's")] WrongNumberOfUtxos, } impl From<SerializationError> for CircuitsError { fn from(error: SerializationError) -> Self { CircuitsError::ArkworksSerializationError(error.to_string()) } } impl From<SynthesisError> for CircuitsError { fn from(error: SynthesisError) -> Self { CircuitsError::ArkworksProverError(error.to_string()) } } impl From<Report> for CircuitsError { fn from(error: Report) -> Self { CircuitsError::GenericError(error.to_string()) } } impl From<Groth16Error> for CircuitsError { fn from(error: Groth16Error) -> Self { CircuitsError::Groth16SolanaError(error) } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/groth16_solana_verifier.rs
use groth16_solana::groth16::{Groth16Verifier, Groth16Verifyingkey}; use crate::{errors::CircuitsError, prove_utils::ProofCompressed}; // TODO: move to groth16_solana ? pub fn groth16_solana_verify<const NR_INPUTS: usize>( proof: &ProofCompressed, proof_inputs: &[[u8; 32]; NR_INPUTS], verifyingkey: Groth16Verifyingkey, ) -> Result<bool, CircuitsError> { let proof = proof.try_decompress()?; let mut verifier = Groth16Verifier::new(&proof.a, &proof.b, &proof.c, proof_inputs, &verifyingkey)?; let result = verifier.verify()?; Ok(result) }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/init_merkle_tree.rs
use std::sync::Mutex; use ark_std::Zero; use light_hasher::{Hasher, Poseidon}; use light_indexed_merkle_tree::{array::IndexedArray, reference::IndexedMerkleTree}; use light_merkle_tree_reference::MerkleTree; use log::info; use num_bigint::{BigInt, Sign, ToBigUint}; use once_cell::{self, sync::Lazy}; use crate::{ inclusion::{ merkle_inclusion_proof_inputs::InclusionMerkleProofInputs, merkle_tree_info::MerkleTreeInfo, }, non_inclusion::merkle_non_inclusion_proof_inputs::NonInclusionMerkleProofInputs, }; pub static MT_PROOF_INPUTS_26: Lazy<Mutex<InclusionMerkleProofInputs>> = Lazy::new(|| Mutex::new(inclusion_merkle_tree_inputs_26())); pub fn inclusion_merkle_tree_inputs(mt_height: MerkleTreeInfo) -> InclusionMerkleProofInputs { match mt_height { MerkleTreeInfo::H26 => (*MT_PROOF_INPUTS_26.lock().unwrap()).clone(), } } fn inclusion_merkle_tree_inputs_26() -> InclusionMerkleProofInputs { const HEIGHT: usize = 26; const CANOPY: usize = 0; info!("initializing merkle tree"); // SAFETY: Calling `unwrap()` when the Merkle tree parameters are corect // should not cause panic. Returning an error would not be compatible with // usafe of `once_cell::sync::Lazy` as a static variable. let mut merkle_tree = MerkleTree::<Poseidon>::new(HEIGHT, CANOPY); info!("merkle tree initialized"); info!("updating merkle tree"); let mut bn_1: [u8; 32] = [0; 32]; bn_1[31] = 1; let leaf: [u8; 32] = Poseidon::hash(&bn_1).unwrap(); merkle_tree.append(&leaf).unwrap(); let root1 = &merkle_tree.roots[1]; info!("merkle tree updated"); info!("getting proof of leaf"); // SAFETY: Calling `unwrap()` when the Merkle tree parameters are corect // should not cause panic. Returning an error would not be compatible with // unsafe of `once_cell::sync::Lazy` as a static variable. let path_elements = merkle_tree .get_proof_of_leaf(0, true) .unwrap() .iter() .map(|el| BigInt::from_bytes_be(Sign::Plus, el)) .collect::<Vec<_>>(); info!("proof of leaf calculated"); let leaf_bn = BigInt::from_bytes_be(Sign::Plus, &leaf); let root_bn = BigInt::from_bytes_be(Sign::Plus, root1); let path_index = BigInt::zero(); InclusionMerkleProofInputs { root: root_bn, leaf: leaf_bn, path_index, path_elements, } } pub fn non_inclusion_merkle_tree_inputs_26() -> NonInclusionMerkleProofInputs { const HEIGHT: usize = 26; const CANOPY: usize = 0; let mut indexed_tree = IndexedMerkleTree::<Poseidon, usize>::new(HEIGHT, CANOPY).unwrap(); let mut indexing_array = IndexedArray::<Poseidon, usize>::default(); let bundle1 = indexing_array.append(&1_u32.to_biguint().unwrap()).unwrap(); indexed_tree .update( &bundle1.new_low_element, &bundle1.new_element, &bundle1.new_element_next_value, ) .unwrap(); let bundle3 = indexing_array.append(&3_u32.to_biguint().unwrap()).unwrap(); indexed_tree .update( &bundle3.new_low_element, &bundle3.new_element, &bundle3.new_element_next_value, ) .unwrap(); let new_low_element = bundle3.new_low_element; let new_element = bundle3.new_element; let _new_element_next_value = bundle3.new_element_next_value; let root = indexed_tree.merkle_tree.roots.last().unwrap(); let mut non_included_value = [0u8; 32]; non_included_value[31] = 2; let leaf_lower_range_value = new_low_element.value.to_bytes_be(); let next_index = new_element.next_index; let leaf_higher_range_value = new_element.value.to_bytes_be(); let merkle_proof_hashed_indexed_element_leaf = indexed_tree .get_proof_of_leaf(new_low_element.index, true) .ok() .map(|bounded_vec| { bounded_vec .iter() .map(|item| BigInt::from_bytes_be(Sign::Plus, item)) .collect() }) .unwrap(); let index_hashed_indexed_element_leaf = new_low_element.index; NonInclusionMerkleProofInputs { root: BigInt::from_bytes_be(Sign::Plus, root), value: BigInt::from_bytes_be(Sign::Plus, &non_included_value), leaf_lower_range_value: BigInt::from_bytes_be(Sign::Plus, &leaf_lower_range_value), leaf_higher_range_value: BigInt::from_bytes_be(Sign::Plus, &leaf_higher_range_value), next_index: BigInt::from(next_index), merkle_proof_hashed_indexed_element_leaf, index_hashed_indexed_element_leaf: BigInt::from(index_hashed_indexed_element_leaf), } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/batch_address_append.rs
use crate::helpers::{compute_root_from_merkle_proof, hash_chain}; use light_bounded_vec::BoundedVec; use light_concurrent_merkle_tree::changelog::ChangelogEntry; use light_concurrent_merkle_tree::event::RawIndexedElement; use light_hasher::Poseidon; use light_indexed_merkle_tree::array::IndexedElement; use light_indexed_merkle_tree::changelog::IndexedChangelogEntry; use light_indexed_merkle_tree::errors::IndexedMerkleTreeError; use light_indexed_merkle_tree::{array::IndexedArray, reference::IndexedMerkleTree}; use light_merkle_tree_reference::sparse_merkle_tree::SparseMerkleTree; use light_utils::bigint::bigint_to_be_bytes_array; use num_bigint::BigUint; #[derive(Debug, Clone)] pub struct BatchAddressAppendInputs { pub batch_size: usize, pub hashchain_hash: BigUint, pub low_element_values: Vec<BigUint>, pub low_element_indices: Vec<BigUint>, pub low_element_next_indices: Vec<BigUint>, pub low_element_next_values: Vec<BigUint>, pub low_element_proofs: Vec<Vec<BigUint>>, pub new_element_values: Vec<BigUint>, pub new_element_proofs: Vec<Vec<BigUint>>, pub new_root: BigUint, pub old_root: BigUint, pub public_input_hash: BigUint, pub start_index: usize, pub tree_height: usize, } #[allow(clippy::too_many_arguments)] pub fn get_batch_address_append_inputs_from_tree<const HEIGHT: usize>( next_index: usize, current_root: [u8; 32], low_element_values: Vec<[u8; 32]>, low_element_next_values: Vec<[u8; 32]>, low_element_indices: Vec<usize>, low_element_next_indices: Vec<usize>, low_element_proofs: Vec<Vec<[u8; 32]>>, new_element_values: Vec<[u8; 32]>, subtrees: [[u8; 32]; HEIGHT], ) -> BatchAddressAppendInputs { let mut new_root = [0u8; 32]; let mut low_element_circuit_merkle_proofs = vec![]; let mut new_element_circuit_merkle_proofs = vec![]; let mut changelog: Vec<ChangelogEntry<HEIGHT>> = Vec::new(); let mut indexed_changelog: Vec<IndexedChangelogEntry<u16, HEIGHT>> = Vec::new(); let mut patched_low_element_next_values: Vec<[u8; 32]> = Vec::new(); let mut patched_low_element_next_indices: Vec<usize> = Vec::new(); let mut merkle_tree = SparseMerkleTree::<Poseidon, HEIGHT>::new(subtrees, next_index); for i in 0..low_element_values.len() { let mut changelog_index = 0; let new_element_index = next_index + i; let mut low_element: IndexedElement<u16> = IndexedElement { index: low_element_indices[i] as u16, value: BigUint::from_bytes_be(&low_element_values[i]), next_index: low_element_next_indices[i] as u16, }; let mut new_element: IndexedElement<u16> = IndexedElement { index: new_element_index as u16, value: BigUint::from_bytes_be(&new_element_values[i]), next_index: low_element_next_indices[i] as u16, }; let mut low_element_proof: BoundedVec<[u8; 32]> = BoundedVec::from_slice(low_element_proofs[i].as_slice()); let mut low_element_next_value = BigUint::from_bytes_be(&low_element_next_values[i]); if i > 0 { patch_indexed_changelogs( 0, &mut changelog_index, &mut indexed_changelog, &mut low_element, &mut new_element, &mut low_element_next_value, &mut low_element_proof, ) .unwrap(); } patched_low_element_next_values .push(bigint_to_be_bytes_array::<32>(&low_element_next_value).unwrap()); patched_low_element_next_indices.push(low_element.next_index as usize); let new_low_element: IndexedElement<u16> = IndexedElement { index: low_element.index, value: low_element.value, next_index: new_element_index as u16, }; let new_low_element_raw = RawIndexedElement { value: bigint_to_be_bytes_array::<32>(&new_low_element.value).unwrap(), next_index: new_low_element.next_index, next_value: bigint_to_be_bytes_array::<32>(&new_element.value).unwrap(), index: new_low_element.index, }; let low_element_changelog_entry = IndexedChangelogEntry { element: new_low_element_raw, proof: low_element_proof.as_slice()[..HEIGHT].try_into().unwrap(), changelog_index, }; indexed_changelog.push(low_element_changelog_entry); { if i > 0 { for change_log_entry in changelog.iter().skip(changelog_index + 1) { change_log_entry .update_proof(low_element_indices[i], &mut low_element_proof) .unwrap(); } } let merkle_proof = low_element_proof.to_array().unwrap(); let new_low_leaf_hash = new_low_element .hash::<Poseidon>(&new_element.value) .unwrap(); let (_, changelog_entry) = compute_root_from_merkle_proof( new_low_leaf_hash, &merkle_proof, new_low_element.index as u32, ); changelog.push(changelog_entry); low_element_circuit_merkle_proofs.push( merkle_proof .iter() .map(|hash| BigUint::from_bytes_be(hash)) .collect(), ); } { let new_element_value = low_element_next_value; let new_element_leaf_hash = new_element.hash::<Poseidon>(&new_element_value).unwrap(); let proof = merkle_tree.append(new_element_leaf_hash); let mut bounded_vec_merkle_proof = BoundedVec::from_slice(proof.as_slice()); let current_index = next_index + i; for change_log_entry in changelog.iter() { change_log_entry .update_proof(current_index, &mut bounded_vec_merkle_proof) .unwrap(); } let reference_root = compute_root_from_merkle_proof( new_element_leaf_hash, &proof, (next_index + i) as u32, ); assert_eq!(merkle_tree.root(), reference_root.0); let merkle_proof_array = bounded_vec_merkle_proof.to_array().unwrap(); let (updated_root, changelog_entry) = compute_root_from_merkle_proof( new_element_leaf_hash, &merkle_proof_array, (next_index + i) as u32, ); new_root = updated_root; changelog.push(changelog_entry); new_element_circuit_merkle_proofs.push( merkle_proof_array .iter() .map(|hash| BigUint::from_bytes_be(hash)) .collect(), ); let new_element_raw = RawIndexedElement { value: bigint_to_be_bytes_array::<32>(&new_element.value).unwrap(), next_index: new_element.next_index, next_value: bigint_to_be_bytes_array::<32>(&new_low_element.value).unwrap(), index: new_element.index, }; let new_element_changelog_entry = IndexedChangelogEntry { element: new_element_raw, proof: proof.as_slice()[..HEIGHT].try_into().unwrap(), changelog_index: 0, }; indexed_changelog.push(new_element_changelog_entry); } } let leaves_hashchain = hash_chain(&new_element_values); let hash_chain_inputs = vec![ current_root, new_root, leaves_hashchain, bigint_to_be_bytes_array::<32>(&next_index.into()).unwrap(), ]; let public_input_hash = hash_chain(hash_chain_inputs.as_slice()); BatchAddressAppendInputs { batch_size: new_element_values.len(), hashchain_hash: BigUint::from_bytes_be(&leaves_hashchain), low_element_values: low_element_values .iter() .map(|v| BigUint::from_bytes_be(v)) .collect(), low_element_indices: low_element_indices .iter() .map(|&i| BigUint::from(i)) .collect(), low_element_next_indices: patched_low_element_next_indices .iter() .map(|&i| BigUint::from(i)) .collect(), low_element_next_values: patched_low_element_next_values .iter() .map(|v| BigUint::from_bytes_be(v)) .collect(), low_element_proofs: low_element_circuit_merkle_proofs, new_element_values: new_element_values .iter() .map(|v| BigUint::from_bytes_be(v)) .collect(), new_element_proofs: new_element_circuit_merkle_proofs, new_root: BigUint::from_bytes_be(&new_root), old_root: BigUint::from_bytes_be(&current_root), public_input_hash: BigUint::from_bytes_be(&public_input_hash), start_index: next_index, tree_height: HEIGHT, } } // Keep this for testing purposes pub fn get_test_batch_address_append_inputs( addresses: Vec<BigUint>, start_index: usize, tree_height: usize, ) -> BatchAddressAppendInputs { let mut relayer_indexing_array = IndexedArray::<Poseidon, usize>::default(); relayer_indexing_array.init().unwrap(); let mut relayer_merkle_tree = IndexedMerkleTree::<Poseidon, usize>::new(tree_height, 0).unwrap(); relayer_merkle_tree.init().unwrap(); let old_root = relayer_merkle_tree.root(); let mut low_element_values = Vec::new(); let mut low_element_indices = Vec::new(); let mut low_element_next_indices = Vec::new(); let mut low_element_next_values = Vec::new(); let mut low_element_proofs = Vec::new(); let mut new_element_values = Vec::new(); let mut new_element_proofs = Vec::new(); for address in &addresses { let non_inclusion_proof = relayer_merkle_tree .get_non_inclusion_proof(address, &relayer_indexing_array) .unwrap(); relayer_merkle_tree .verify_non_inclusion_proof(&non_inclusion_proof) .unwrap(); low_element_values.push(BigUint::from_bytes_be( &non_inclusion_proof.leaf_lower_range_value, )); low_element_indices.push(non_inclusion_proof.leaf_index.into()); low_element_next_indices.push(non_inclusion_proof.next_index.into()); low_element_next_values.push(BigUint::from_bytes_be( &non_inclusion_proof.leaf_higher_range_value, )); let proof: Vec<BigUint> = non_inclusion_proof .merkle_proof .iter() .map(|proof| BigUint::from_bytes_be(proof)) .collect(); low_element_proofs.push(proof); relayer_merkle_tree .append(address, &mut relayer_indexing_array) .unwrap(); let new_proof = relayer_merkle_tree .get_proof_of_leaf(relayer_merkle_tree.merkle_tree.rightmost_index - 1, true) .unwrap(); let new_proof: Vec<BigUint> = new_proof .iter() .map(|proof| BigUint::from_bytes_be(proof)) .collect(); new_element_proofs.push(new_proof); new_element_values.push(address.clone()); } let new_root = relayer_merkle_tree.root(); // Create hashchain let addresses_bytes = addresses .iter() .map(|x| bigint_to_be_bytes_array::<32>(x).unwrap()) .collect::<Vec<_>>(); let leaves_hashchain = hash_chain(&addresses_bytes); let hash_chain_inputs = vec![ old_root, new_root, leaves_hashchain, bigint_to_be_bytes_array::<32>(&start_index.into()).unwrap(), ]; let public_input_hash = hash_chain(hash_chain_inputs.as_slice()); BatchAddressAppendInputs { batch_size: addresses.len(), hashchain_hash: BigUint::from_bytes_be(&leaves_hashchain), low_element_values, low_element_indices, low_element_next_indices, low_element_next_values, low_element_proofs, new_element_values, new_element_proofs, new_root: BigUint::from_bytes_be(&new_root), old_root: BigUint::from_bytes_be(&old_root), public_input_hash: BigUint::from_bytes_be(&public_input_hash), start_index, tree_height, } } pub fn patch_indexed_changelogs<const HEIGHT: usize>( indexed_changelog_index: usize, changelog_index: &mut usize, indexed_changelogs: &mut Vec<IndexedChangelogEntry<u16, HEIGHT>>, low_element: &mut IndexedElement<u16>, new_element: &mut IndexedElement<u16>, low_element_next_value: &mut BigUint, low_leaf_proof: &mut BoundedVec<[u8; 32]>, ) -> Result<(), IndexedMerkleTreeError> { let next_indexed_changelog_indices: Vec<usize> = (*indexed_changelogs) .iter() .enumerate() .filter_map(|(index, changelog_entry)| { if changelog_entry.element.index == low_element.index { Some((indexed_changelog_index + index) % indexed_changelogs.len()) } else { None } }) .collect(); let mut new_low_element = None; for next_indexed_changelog_index in next_indexed_changelog_indices { let changelog_entry = &mut indexed_changelogs[next_indexed_changelog_index]; let next_element_value = BigUint::from_bytes_be(&changelog_entry.element.next_value); if next_element_value < new_element.value { // If the next element is lower than the current element, it means // that it should become the low element. // // Save it and break the loop. new_low_element = Some(( (next_indexed_changelog_index + 1) % indexed_changelogs.len(), next_element_value, )); break; } // Patch the changelog index. *changelog_index = changelog_entry.changelog_index; // Patch the `next_index` of `new_element`. new_element.next_index = changelog_entry.element.next_index; // Patch the element. low_element.update_from_raw_element(&changelog_entry.element); // Patch the next value. *low_element_next_value = BigUint::from_bytes_be(&changelog_entry.element.next_value); // Patch the proof. for i in 0..low_leaf_proof.len() { low_leaf_proof[i] = changelog_entry.proof[i]; } } // If we found a new low element. if let Some((new_low_element_changelog_index, new_low_element)) = new_low_element { let new_low_element_changelog_entry = &indexed_changelogs[new_low_element_changelog_index]; *changelog_index = new_low_element_changelog_entry.changelog_index; *low_element = IndexedElement { index: new_low_element_changelog_entry.element.index, value: new_low_element.clone(), next_index: new_low_element_changelog_entry.element.next_index, }; for i in 0..low_leaf_proof.len() { low_leaf_proof[i] = new_low_element_changelog_entry.proof[i]; } new_element.next_index = low_element.next_index; // Start the patching process from scratch for the new low element. patch_indexed_changelogs( new_low_element_changelog_index, changelog_index, indexed_changelogs, new_element, low_element, low_element_next_value, low_leaf_proof, )? } Ok(()) }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/non_inclusion_json_formatter.rs
use crate::gnark::helpers::big_int_to_string; use crate::{ gnark::helpers::create_json_from_struct, init_merkle_tree::non_inclusion_merkle_tree_inputs_26, non_inclusion::merkle_non_inclusion_proof_inputs::{ NonInclusionMerkleProofInputs, NonInclusionProofInputs, }, }; use num_traits::ToPrimitive; use serde::Serialize; #[derive(Serialize, Debug)] pub struct BatchNonInclusionJsonStruct { #[serde(rename(serialize = "new-addresses"))] pub inputs: Vec<NonInclusionJsonStruct>, } #[derive(Serialize, Clone, Debug)] pub struct NonInclusionJsonStruct { root: String, value: String, #[serde(rename(serialize = "pathIndex"))] path_index: u32, #[serde(rename(serialize = "pathElements"))] path_elements: Vec<String>, #[serde(rename(serialize = "leafLowerRangeValue"))] leaf_lower_range_value: String, #[serde(rename(serialize = "leafHigherRangeValue"))] leaf_higher_range_value: String, #[serde(rename(serialize = "nextIndex"))] next_index: u32, } impl BatchNonInclusionJsonStruct { fn new_with_public_inputs(number_of_utxos: usize) -> (Self, NonInclusionMerkleProofInputs) { let merkle_inputs = non_inclusion_merkle_tree_inputs_26(); let input = NonInclusionJsonStruct { root: big_int_to_string(&merkle_inputs.root), value: big_int_to_string(&merkle_inputs.value), path_elements: merkle_inputs .merkle_proof_hashed_indexed_element_leaf .iter() .map(big_int_to_string) .collect(), path_index: merkle_inputs .index_hashed_indexed_element_leaf .to_u32() .unwrap(), next_index: merkle_inputs.next_index.to_u32().unwrap(), leaf_lower_range_value: big_int_to_string(&merkle_inputs.leaf_lower_range_value), leaf_higher_range_value: big_int_to_string(&merkle_inputs.leaf_higher_range_value), }; let inputs = vec![input; number_of_utxos]; (Self { inputs }, merkle_inputs) } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } pub fn from_non_inclusion_proof_inputs(inputs: &NonInclusionProofInputs) -> Self { let mut proof_inputs: Vec<NonInclusionJsonStruct> = Vec::new(); for input in inputs.0 { let prof_input = NonInclusionJsonStruct { root: big_int_to_string(&input.root), value: big_int_to_string(&input.value), path_index: input.index_hashed_indexed_element_leaf.to_u32().unwrap(), path_elements: input .merkle_proof_hashed_indexed_element_leaf .iter() .map(big_int_to_string) .collect(), next_index: input.next_index.to_u32().unwrap(), leaf_lower_range_value: big_int_to_string(&input.leaf_lower_range_value), leaf_higher_range_value: big_int_to_string(&input.leaf_higher_range_value), }; proof_inputs.push(prof_input); } Self { inputs: proof_inputs, } } } pub fn inclusion_inputs_string(number_of_utxos: usize) -> (String, NonInclusionMerkleProofInputs) { let (json_struct, public_inputs) = BatchNonInclusionJsonStruct::new_with_public_inputs(number_of_utxos); (json_struct.to_string(), public_inputs) }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/combined_json_formatter.rs
use serde::Serialize; use crate::combined::merkle_combined_proof_inputs::CombinedProofInputs; use crate::gnark::inclusion_json_formatter::BatchInclusionJsonStruct; use crate::gnark::non_inclusion_json_formatter::BatchNonInclusionJsonStruct; use super::{ helpers::create_json_from_struct, inclusion_json_formatter::InclusionJsonStruct, non_inclusion_json_formatter::NonInclusionJsonStruct, }; #[derive(Serialize, Debug)] pub struct CombinedJsonStruct { #[serde(rename(serialize = "input-compressed-accounts"))] pub inclusion: Vec<InclusionJsonStruct>, #[serde(rename(serialize = "new-addresses"))] pub non_inclusion: Vec<NonInclusionJsonStruct>, } impl CombinedJsonStruct { pub fn from_combined_inputs(inputs: &CombinedProofInputs) -> Self { let inclusion_parameters = BatchInclusionJsonStruct::from_inclusion_proof_inputs(&inputs.inclusion_parameters); let non_inclusion_parameters = BatchNonInclusionJsonStruct::from_non_inclusion_proof_inputs( &inputs.non_inclusion_parameters, ); Self { inclusion: inclusion_parameters.inputs, non_inclusion: non_inclusion_parameters.inputs, } } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/constants.rs
pub const SERVER_ADDRESS: &str = "http://localhost:3001"; pub const HEALTH_CHECK: &str = "/health"; pub const PROVE_PATH: &str = "/prove";
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/proof_helpers.rs
use serde::{Deserialize, Serialize}; type G1 = ark_bn254::g1::G1Affine; use std::ops::Neg; use ark_serialize::{CanonicalDeserialize, CanonicalSerialize, Compress, Validate}; use num_traits::Num; use solana_program::alt_bn128::compression::prelude::{ alt_bn128_g1_compress, alt_bn128_g2_compress, convert_endianness, }; #[derive(Serialize, Deserialize, Debug)] pub struct GnarkProofJson { pub ar: Vec<String>, pub bs: Vec<Vec<String>>, pub krs: Vec<String>, } pub fn deserialize_gnark_proof_json(json_data: &str) -> serde_json::Result<GnarkProofJson> { let deserialized_data: GnarkProofJson = serde_json::from_str(json_data)?; Ok(deserialized_data) } pub fn deserialize_hex_string_to_be_bytes(hex_str: &str) -> [u8; 32] { let trimmed_str = hex_str.trim_start_matches("0x"); let big_int = num_bigint::BigInt::from_str_radix(trimmed_str, 16).unwrap(); let big_int_bytes = big_int.to_bytes_be().1; if big_int_bytes.len() < 32 { let mut result = [0u8; 32]; result[32 - big_int_bytes.len()..].copy_from_slice(&big_int_bytes); result } else { big_int_bytes.try_into().unwrap() } } pub fn compress_proof( proof_a: &[u8; 64], proof_b: &[u8; 128], proof_c: &[u8; 64], ) -> ([u8; 32], [u8; 64], [u8; 32]) { let proof_a = alt_bn128_g1_compress(proof_a).unwrap(); let proof_b = alt_bn128_g2_compress(proof_b).unwrap(); let proof_c = alt_bn128_g1_compress(proof_c).unwrap(); (proof_a, proof_b, proof_c) } pub fn proof_from_json_struct(json: GnarkProofJson) -> ([u8; 64], [u8; 128], [u8; 64]) { let proof_a_x = deserialize_hex_string_to_be_bytes(&json.ar[0]); let proof_a_y = deserialize_hex_string_to_be_bytes(&json.ar[1]); let proof_a: [u8; 64] = [proof_a_x, proof_a_y].concat().try_into().unwrap(); let proof_a = negate_g1(&proof_a); let proof_b_x_0 = deserialize_hex_string_to_be_bytes(&json.bs[0][0]); let proof_b_x_1 = deserialize_hex_string_to_be_bytes(&json.bs[0][1]); let proof_b_y_0 = deserialize_hex_string_to_be_bytes(&json.bs[1][0]); let proof_b_y_1 = deserialize_hex_string_to_be_bytes(&json.bs[1][1]); let proof_b: [u8; 128] = [proof_b_x_0, proof_b_x_1, proof_b_y_0, proof_b_y_1] .concat() .try_into() .unwrap(); let proof_c_x = deserialize_hex_string_to_be_bytes(&json.krs[0]); let proof_c_y = deserialize_hex_string_to_be_bytes(&json.krs[1]); let proof_c: [u8; 64] = [proof_c_x, proof_c_y].concat().try_into().unwrap(); (proof_a, proof_b, proof_c) } pub fn negate_g1(g1_be: &[u8; 64]) -> [u8; 64] { let g1_le = convert_endianness::<32, 64>(g1_be); let g1: G1 = G1::deserialize_with_mode(g1_le.as_slice(), Compress::No, Validate::No).unwrap(); let g1_neg = g1.neg(); let mut g1_neg_be = [0u8; 64]; g1_neg .x .serialize_with_mode(&mut g1_neg_be[..32], Compress::No) .unwrap(); g1_neg .y .serialize_with_mode(&mut g1_neg_be[32..], Compress::No) .unwrap(); let g1_neg_be: [u8; 64] = convert_endianness::<32, 64>(&g1_neg_be); g1_neg_be }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/batch_address_append_json_formatter.rs
use crate::batch_address_append::BatchAddressAppendInputs; use crate::gnark::helpers::{big_uint_to_string, create_json_from_struct}; use serde::Serialize; #[derive(Debug, Clone, Serialize)] pub struct BatchAddressAppendInputsJson { #[serde(rename = "BatchSize")] pub batch_size: usize, #[serde(rename = "HashchainHash")] pub hashchain_hash: String, #[serde(rename = "LowElementValues")] pub low_element_values: Vec<String>, #[serde(rename = "LowElementIndices")] pub low_element_indices: Vec<String>, #[serde(rename = "LowElementNextIndices")] pub low_element_next_indices: Vec<String>, #[serde(rename = "LowElementNextValues")] pub low_element_next_values: Vec<String>, #[serde(rename = "LowElementProofs")] pub low_element_proofs: Vec<Vec<String>>, #[serde(rename = "NewElementValues")] pub new_element_values: Vec<String>, #[serde(rename = "NewElementProofs")] pub new_element_proofs: Vec<Vec<String>>, #[serde(rename = "NewRoot")] pub new_root: String, #[serde(rename = "OldRoot")] pub old_root: String, #[serde(rename = "PublicInputHash")] pub public_input_hash: String, #[serde(rename = "StartIndex")] pub start_index: usize, #[serde(rename = "TreeHeight")] pub tree_height: usize, } impl BatchAddressAppendInputsJson { pub fn from_inputs(inputs: &BatchAddressAppendInputs) -> Self { Self { batch_size: inputs.batch_size, hashchain_hash: big_uint_to_string(&inputs.hashchain_hash), low_element_values: inputs .low_element_values .iter() .map(big_uint_to_string) .collect(), low_element_indices: inputs .low_element_indices .iter() .map(big_uint_to_string) .collect(), low_element_next_indices: inputs .low_element_next_indices .iter() .map(big_uint_to_string) .collect(), low_element_next_values: inputs .low_element_next_values .iter() .map(big_uint_to_string) .collect(), low_element_proofs: inputs .low_element_proofs .iter() .map(|proof| proof.iter().map(big_uint_to_string).collect()) .collect(), new_element_values: inputs .new_element_values .iter() .map(big_uint_to_string) .collect(), new_element_proofs: inputs .new_element_proofs .iter() .map(|proof| proof.iter().map(big_uint_to_string).collect()) .collect(), new_root: big_uint_to_string(&inputs.new_root), old_root: big_uint_to_string(&inputs.old_root), public_input_hash: big_uint_to_string(&inputs.public_input_hash), start_index: inputs.start_index, tree_height: inputs.tree_height, } } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } } pub fn to_json(inputs: &BatchAddressAppendInputs) -> String { let json_struct = BatchAddressAppendInputsJson::from_inputs(inputs); json_struct.to_string() }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/batch_append_with_subtrees_json_formatter.rs
use crate::batch_append_with_subtrees::BatchAppendWithSubtreesCircuitInputs; use crate::gnark::helpers::{big_int_to_string, create_json_from_struct}; use num_traits::ToPrimitive; use serde::Serialize; #[derive(Serialize, Debug)] pub struct BatchAppendWithSubtreesJsonStruct { #[serde(rename(serialize = "publicInputHash"))] pub public_input_hash: String, #[serde(rename(serialize = "oldSubTreeHashChain"))] pub old_sub_tree_hash_chain: String, #[serde(rename(serialize = "newSubTreeHashChain"))] pub new_sub_tree_hash_chain: String, #[serde(rename(serialize = "newRoot"))] pub new_root: String, #[serde(rename(serialize = "hashchainHash"))] pub hashchain_hash: String, #[serde(rename(serialize = "startIndex"))] pub start_index: u32, #[serde(rename(serialize = "treeHeight"))] pub tree_height: u32, #[serde(rename(serialize = "leaves"))] pub leaves: Vec<String>, #[serde(rename(serialize = "subtrees"))] pub subtrees: Vec<String>, } impl BatchAppendWithSubtreesJsonStruct { pub fn from_append_inputs(inputs: &BatchAppendWithSubtreesCircuitInputs) -> Self { let public_input_hash = big_int_to_string(&inputs.public_input_hash); let old_sub_tree_hash_chain = big_int_to_string(&inputs.old_sub_tree_hash_chain); let new_sub_tree_hash_chain = big_int_to_string(&inputs.new_sub_tree_hash_chain); let new_root = big_int_to_string(&inputs.new_root); let hashchain_hash = big_int_to_string(&inputs.hashchain_hash); let start_index = inputs.start_index.to_u32().unwrap(); let tree_height = inputs.tree_height.to_u32().unwrap(); let leaves = inputs .leaves .iter() .map(big_int_to_string) .collect::<Vec<String>>(); let subtrees = inputs .subtrees .iter() .map(big_int_to_string) .collect::<Vec<String>>(); Self { public_input_hash, old_sub_tree_hash_chain, new_sub_tree_hash_chain, new_root, hashchain_hash, start_index, tree_height, leaves, subtrees, } } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } } pub fn append_inputs_string(inputs: &BatchAppendWithSubtreesCircuitInputs) -> String { let json_struct = BatchAppendWithSubtreesJsonStruct::from_append_inputs(inputs); json_struct.to_string() } pub fn new_with_append_inputs() -> ( BatchAppendWithSubtreesJsonStruct, BatchAppendWithSubtreesCircuitInputs, ) { let append_inputs = BatchAppendWithSubtreesCircuitInputs::default(); let json_struct = BatchAppendWithSubtreesJsonStruct { public_input_hash: big_int_to_string(&append_inputs.public_input_hash), old_sub_tree_hash_chain: big_int_to_string(&append_inputs.old_sub_tree_hash_chain), new_sub_tree_hash_chain: big_int_to_string(&append_inputs.new_sub_tree_hash_chain), new_root: big_int_to_string(&append_inputs.new_root), hashchain_hash: big_int_to_string(&append_inputs.hashchain_hash), start_index: append_inputs.start_index.to_u32().unwrap(), tree_height: append_inputs.tree_height.to_u32().unwrap(), leaves: append_inputs .leaves .iter() .map(big_int_to_string) .collect::<Vec<String>>(), subtrees: append_inputs .subtrees .iter() .map(big_int_to_string) .collect::<Vec<String>>(), }; (json_struct, append_inputs) }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/batch_append_with_proofs_json_formatter.rs
use serde::Serialize; use crate::batch_append_with_proofs::BatchAppendWithProofsCircuitInputs; use super::helpers::{big_int_to_string, create_json_from_struct}; #[derive(Debug, Clone, Serialize)] pub struct BatchAppendWithProofsInputsJson { #[serde(rename = "publicInputHash")] public_input_hash: String, #[serde(rename = "oldRoot")] old_root: String, #[serde(rename = "newRoot")] new_root: String, #[serde(rename = "leavesHashchainHash")] leaves_hashchain_hash: String, #[serde(rename = "startIndex")] start_index: u32, #[serde(rename = "oldLeaves")] old_leaves: Vec<String>, #[serde(rename = "leaves")] leaves: Vec<String>, #[serde(rename = "merkleProofs")] merkle_proofs: Vec<Vec<String>>, #[serde(rename = "height")] height: u32, #[serde(rename = "batchSize")] batch_size: u32, } impl BatchAppendWithProofsInputsJson { pub fn from_inputs(inputs: &BatchAppendWithProofsCircuitInputs) -> Self { Self { public_input_hash: big_int_to_string(&inputs.public_input_hash), old_root: big_int_to_string(&inputs.old_root), new_root: big_int_to_string(&inputs.new_root), leaves_hashchain_hash: big_int_to_string(&inputs.leaves_hashchain_hash), start_index: inputs.start_index, old_leaves: inputs.old_leaves.iter().map(big_int_to_string).collect(), leaves: inputs.leaves.iter().map(big_int_to_string).collect(), merkle_proofs: inputs .merkle_proofs .iter() .map(|proof| proof.iter().map(big_int_to_string).collect()) .collect(), height: inputs.height, batch_size: inputs.batch_size, } } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/inclusion_json_formatter.rs
use crate::gnark::helpers::{big_int_to_string, create_json_from_struct}; use crate::{ inclusion::{ merkle_inclusion_proof_inputs::{InclusionMerkleProofInputs, InclusionProofInputs}, merkle_tree_info::MerkleTreeInfo, }, init_merkle_tree::inclusion_merkle_tree_inputs, }; use num_traits::ToPrimitive; use serde::Serialize; #[derive(Serialize, Debug)] pub struct BatchInclusionJsonStruct { #[serde(rename(serialize = "input-compressed-accounts"))] pub inputs: Vec<InclusionJsonStruct>, } #[allow(non_snake_case)] #[derive(Serialize, Clone, Debug)] pub struct InclusionJsonStruct { root: String, leaf: String, pathIndex: u32, pathElements: Vec<String>, } impl BatchInclusionJsonStruct { fn new_with_public_inputs(number_of_utxos: usize) -> (Self, InclusionMerkleProofInputs) { let merkle_inputs = inclusion_merkle_tree_inputs(MerkleTreeInfo::H26); let input = InclusionJsonStruct { root: big_int_to_string(&merkle_inputs.root), leaf: big_int_to_string(&merkle_inputs.leaf), pathElements: merkle_inputs .path_elements .iter() .map(big_int_to_string) .collect(), pathIndex: merkle_inputs.path_index.to_u32().unwrap(), }; let inputs = vec![input; number_of_utxos]; (Self { inputs }, merkle_inputs) } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } pub fn from_inclusion_proof_inputs(inputs: &InclusionProofInputs) -> Self { let mut proof_inputs: Vec<InclusionJsonStruct> = Vec::new(); for input in inputs.0 { let prof_input = InclusionJsonStruct { root: big_int_to_string(&input.root), leaf: big_int_to_string(&input.leaf), pathIndex: input.path_index.to_u32().unwrap(), pathElements: input.path_elements.iter().map(big_int_to_string).collect(), }; proof_inputs.push(prof_input); } Self { inputs: proof_inputs, } } } pub fn inclusion_inputs_string(number_of_utxos: usize) -> (String, InclusionMerkleProofInputs) { let (json_struct, public_inputs) = BatchInclusionJsonStruct::new_with_public_inputs(number_of_utxos); (json_struct.to_string(), public_inputs) }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/helpers.rs
use log::info; use std::{ ffi::OsStr, fmt::{Display, Formatter}, process::Command, sync::atomic::{AtomicBool, Ordering}, time::Duration, }; use crate::gnark::constants::{HEALTH_CHECK, SERVER_ADDRESS}; use num_bigint::{BigInt, BigUint}; use num_traits::ToPrimitive; use serde::Serialize; use serde_json::json; use sysinfo::{Signal, System}; static IS_LOADING: AtomicBool = AtomicBool::new(false); #[derive(Debug, Clone, Copy, PartialEq)] pub enum ProverMode { Rpc, Forester, ForesterTest, Full, FullTest, } impl Display for ProverMode { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { write!( f, "{}", match self { ProverMode::Rpc => "rpc", ProverMode::Forester => "forester", ProverMode::ForesterTest => "forester-test", ProverMode::Full => "full", ProverMode::FullTest => "full-test", } ) } } #[derive(Debug, Clone, Copy, PartialEq)] pub enum ProofType { Inclusion, NonInclusion, Combined, BatchAppend, BatchUpdate, BatchAddressAppend, BatchAppendWithSubtreesTest, BatchUpdateTest, BatchAppendWithProofsTest, BatchAddressAppendTest, } impl Display for ProofType { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { write!( f, "{}", match self { ProofType::Inclusion => "inclusion", ProofType::NonInclusion => "non-inclusion", ProofType::Combined => "combined", ProofType::BatchAppend => "append", ProofType::BatchUpdate => "update", ProofType::BatchAppendWithSubtreesTest => "append-with-subtrees-test", ProofType::BatchUpdateTest => "update-test", ProofType::BatchAppendWithProofsTest => "append-with-proofs-test", ProofType::BatchAddressAppend => "address-append", ProofType::BatchAddressAppendTest => "address-append-test", } ) } } #[derive(Debug, Clone)] pub struct ProverConfig { pub run_mode: Option<ProverMode>, pub circuits: Vec<ProofType>, } pub async fn spawn_prover(restart: bool, config: ProverConfig) { if let Some(_project_root) = get_project_root() { let prover_path: &str = { #[cfg(feature = "devenv")] { &format!("{}/{}", _project_root.trim(), "cli/test_bin/run") } #[cfg(not(feature = "devenv"))] { "light" } }; if restart { println!("Killing prover..."); kill_prover(); } if !health_check(1, 3).await && !IS_LOADING.load(Ordering::Relaxed) { IS_LOADING.store(true, Ordering::Relaxed); let mut command = Command::new(prover_path); command.arg("start-prover"); if let Some(ref mode) = config.run_mode { command.arg("--run-mode").arg(mode.to_string()); } for circuit in config.circuits.clone() { command.arg("--circuit").arg(circuit.to_string()); } println!("Starting prover with command: {:?}", command); let _ = command.spawn().expect("Failed to start prover process"); let health_result = health_check(20, 5).await; if health_result { info!("Prover started successfully"); } else { panic!("Prover failed to start"); } IS_LOADING.store(false, Ordering::Relaxed); } } else { panic!("Failed to determine the project root directory"); } } pub fn kill_process(process_name: &str) { let mut system = System::new_all(); system.refresh_all(); for process in system.processes().values() { let process_name_str = process.name().to_string_lossy(); let process_cmd = process.cmd().join(OsStr::new(" ")); let process_cmd_str = process_cmd.to_string_lossy(); // Match the exact process name if process_name_str.contains(process_name) { println!( "Attempting to kill process: PID={}, Name={}, Cmd={}", process.pid(), process_name_str, process_cmd_str ); if process.kill_with(Signal::Kill).is_some() { println!("Successfully killed process: PID={}", process.pid()); } else { eprintln!("Failed to kill process: PID={}", process.pid()); } } } // Double-check if processes are still running system.refresh_all(); let remaining_processes: Vec<_> = system .processes() .values() .filter(|process| { let process_name_str = process.name().to_string_lossy(); process_name_str == process_name }) .collect(); if !remaining_processes.is_empty() { eprintln!( "Warning: {} processes still running after kill attempt", remaining_processes.len() ); for process in remaining_processes { eprintln!( "Remaining process: PID={}, Name={}, Cmd={}", process.pid(), process.name().to_string_lossy(), process.cmd().join(OsStr::new(" ")).to_string_lossy() ); } } } pub fn kill_prover() { kill_process("prover"); } pub async fn health_check(retries: usize, timeout: usize) -> bool { let client = reqwest::Client::new(); let mut result = false; for _ in 0..retries { match client .get(&format!("{}{}", SERVER_ADDRESS, HEALTH_CHECK)) .send() .await { Ok(_) => { result = true; break; } Err(_) => { tokio::time::sleep(Duration::from_secs(timeout as u64)).await; } } } result } pub fn get_project_root() -> Option<String> { let output = Command::new("git") .args(["rev-parse", "--show-toplevel"]) .output() .ok()?; if output.status.success() { String::from_utf8(output.stdout).ok() } else { None } } pub fn big_uint_to_string(big_uint: &BigUint) -> String { format!("0x{}", big_uint.to_str_radix(16)) } pub fn big_int_to_string(big_int: &BigInt) -> String { format!("0x{}", big_int.to_str_radix(16)) } pub fn create_vec_of_string(number_of_utxos: usize, element: &BigInt) -> Vec<String> { vec![big_int_to_string(element); number_of_utxos] } pub fn create_vec_of_u32(number_of_utxos: usize, element: &BigInt) -> Vec<u32> { vec![element.to_u32().unwrap(); number_of_utxos] } pub fn create_vec_of_vec_of_string( number_of_utxos: usize, elements: &[BigInt], ) -> Vec<Vec<String>> { let vec: Vec<String> = elements .iter() .map(|e| format!("0x{}", e.to_str_radix(16))) .collect(); vec![vec; number_of_utxos] } pub fn create_json_from_struct<T>(json_struct: &T) -> String where T: Serialize, { let json = json!(json_struct); match serde_json::to_string_pretty(&json) { Ok(json) => json, Err(_) => panic!("Merkle tree data invalid"), } } #[derive(Debug)] pub struct LightValidatorConfig { pub enable_indexer: bool, pub prover_config: Option<ProverConfig>, pub wait_time: u64, } impl Default for LightValidatorConfig { fn default() -> Self { Self { enable_indexer: false, prover_config: None, wait_time: 35, } } } pub async fn spawn_validator(config: LightValidatorConfig) { if let Some(project_root) = get_project_root() { let path = "cli/test_bin/run test-validator"; let mut path = format!("{}/{}", project_root.trim(), path); if !config.enable_indexer { path.push_str(" --skip-indexer"); } if let Some(prover_config) = config.prover_config { prover_config.circuits.iter().for_each(|circuit| { path.push_str(&format!(" --circuit {}", circuit)); }); if let Some(prover_mode) = prover_config.run_mode { path.push_str(&format!(" --prover-run-mode {}", prover_mode)); } } else { path.push_str(" --skip-prover"); } println!("Starting validator with command: {}", path); Command::new("sh") .arg("-c") .arg(path) .spawn() .expect("Failed to start server process"); tokio::time::sleep(tokio::time::Duration::from_secs(config.wait_time)).await; } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/mod.rs
pub mod batch_address_append_json_formatter; pub mod batch_append_with_proofs_json_formatter; pub mod batch_append_with_subtrees_json_formatter; pub mod batch_update_json_formatter; pub mod combined_json_formatter; pub mod constants; pub mod helpers; pub mod inclusion_json_formatter; pub mod non_inclusion_json_formatter; pub mod proof_helpers;
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/gnark/batch_update_json_formatter.rs
use crate::{ batch_update::BatchUpdateCircuitInputs, gnark::helpers::{big_int_to_string, create_json_from_struct}, }; use serde::Serialize; #[derive(Serialize, Debug)] pub struct BatchUpdateProofInputsJson { #[serde(rename(serialize = "publicInputHash"))] pub public_input_hash: String, #[serde(rename(serialize = "oldRoot"))] pub old_root: String, #[serde(rename(serialize = "newRoot"))] pub new_root: String, #[serde(rename(serialize = "leavesHashchainHash"))] pub leaves_hashchain_hash: String, #[serde(rename(serialize = "leaves"))] pub leaves: Vec<String>, #[serde(rename(serialize = "oldLeaves"))] pub old_leaves: Vec<String>, #[serde(rename(serialize = "newMerkleProofs"))] pub merkle_proofs: Vec<Vec<String>>, #[serde(rename(serialize = "pathIndices"))] pub path_indices: Vec<u32>, #[serde(rename(serialize = "height"))] pub height: u32, #[serde(rename(serialize = "batchSize"))] pub batch_size: u32, #[serde(rename(serialize = "txHashes"))] pub tx_hashes: Vec<String>, } #[derive(Serialize, Debug)] pub struct BatchUpdateParametersJson { #[serde(rename(serialize = "batch-update-inputs"))] pub inputs: BatchUpdateProofInputsJson, } impl BatchUpdateProofInputsJson { pub fn from_update_inputs(inputs: &BatchUpdateCircuitInputs) -> Self { let public_input_hash = big_int_to_string(&inputs.public_input_hash); let old_root = big_int_to_string(&inputs.old_root); let new_root = big_int_to_string(&inputs.new_root); let leaves_hashchain_hash = big_int_to_string(&inputs.leaves_hashchain_hash); let leaves = inputs .leaves .iter() .map(big_int_to_string) .collect::<Vec<String>>(); let old_leaves = inputs.old_leaves.iter().map(big_int_to_string).collect(); let merkle_proofs = inputs .merkle_proofs .iter() .map(|proof| proof.iter().map(big_int_to_string).collect()) .collect(); let path_indices = inputs.path_indices.clone(); let height = inputs.height; let batch_size = inputs.batch_size; let tx_hashes = inputs .tx_hashes .iter() .map(big_int_to_string) .collect::<Vec<String>>(); Self { public_input_hash, old_root, new_root, leaves_hashchain_hash, leaves, old_leaves, merkle_proofs, path_indices, height, batch_size, tx_hashes, } } #[allow(clippy::inherent_to_string)] pub fn to_string(&self) -> String { create_json_from_struct(&self) } } pub fn update_inputs_string(inputs: &BatchUpdateCircuitInputs) -> String { let json_struct = BatchUpdateProofInputsJson::from_update_inputs(inputs); json_struct.to_string() }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/inclusion/merkle_inclusion_proof_inputs.rs
use crate::helpers::bigint_to_u8_32; use num_bigint::BigInt; #[derive(Clone, Debug)] pub struct InclusionMerkleProofInputs { pub root: BigInt, pub leaf: BigInt, pub path_index: BigInt, pub path_elements: Vec<BigInt>, } impl InclusionMerkleProofInputs { pub fn public_inputs_arr(&self) -> [[u8; 32]; 2] { let root = bigint_to_u8_32(&self.root).unwrap(); let leaf = bigint_to_u8_32(&self.leaf).unwrap(); [root, leaf] } } #[derive(Clone, Debug)] pub struct InclusionProofInputs<'a>(pub &'a [InclusionMerkleProofInputs]); impl InclusionProofInputs<'_> { pub fn public_inputs(&self) -> Vec<[u8; 32]> { let mut roots = Vec::new(); let mut leaves = Vec::new(); for input in self.0 { let input_arr = input.public_inputs_arr(); roots.push(input_arr[0]); leaves.push(input_arr[1]); } [roots, leaves].concat() } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/inclusion/mod.rs
pub mod merkle_inclusion_proof_inputs; pub mod merkle_tree_info;
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/inclusion/merkle_tree_info.rs
use std::fmt; #[derive(Clone, Debug)] pub enum MerkleTreeInfo { H26, } impl MerkleTreeInfo { pub fn height(&self) -> u8 { match self { MerkleTreeInfo::H26 => 26, } } pub fn test_zk_path(&self, num_of_utxos: usize) -> String { format!( "test-data/i_{}_{}/i_{}_{}.zkey", self.height(), num_of_utxos, self.height(), num_of_utxos ) } pub fn test_wasm_path(&self, num_of_utxos: usize) -> String { format!( "test-data/i_{}_{}/i_{}_{}.wasm", self.height(), num_of_utxos, self.height(), num_of_utxos ) } } impl fmt::Display for MerkleTreeInfo { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "{}", self.height()) } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/non_inclusion/mod.rs
pub mod merkle_non_inclusion_proof_inputs;
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/non_inclusion/merkle_non_inclusion_proof_inputs.rs
use crate::helpers::bigint_to_u8_32; use light_indexed_merkle_tree::array::IndexedArray; use num_bigint::{BigInt, BigUint}; use num_traits::ops::bytes::FromBytes; #[derive(Clone, Debug)] pub struct NonInclusionMerkleProofInputs { pub root: BigInt, pub value: BigInt, pub leaf_lower_range_value: BigInt, pub leaf_higher_range_value: BigInt, pub next_index: BigInt, pub merkle_proof_hashed_indexed_element_leaf: Vec<BigInt>, pub index_hashed_indexed_element_leaf: BigInt, } impl NonInclusionMerkleProofInputs { pub fn public_inputs_arr(&self) -> [[u8; 32]; 2] { let root = bigint_to_u8_32(&self.root).unwrap(); let value = bigint_to_u8_32(&self.value).unwrap(); [root, value] } } #[derive(Clone, Debug)] pub struct NonInclusionProofInputs<'a>(pub &'a [NonInclusionMerkleProofInputs]); // TODO: eliminate use of BigInt in favor of BigUint pub fn get_non_inclusion_proof_inputs( value: &[u8; 32], merkle_tree: &light_indexed_merkle_tree::reference::IndexedMerkleTree< light_hasher::Poseidon, usize, >, indexed_array: &IndexedArray<light_hasher::Poseidon, usize>, ) -> NonInclusionMerkleProofInputs { let non_inclusion_proof = merkle_tree .get_non_inclusion_proof(&BigUint::from_be_bytes(value), indexed_array) .unwrap(); let proof = non_inclusion_proof .merkle_proof .iter() .map(|x| BigInt::from_be_bytes(x)) .collect(); NonInclusionMerkleProofInputs { root: BigInt::from_be_bytes(merkle_tree.root().as_slice()), value: BigInt::from_be_bytes(value), leaf_lower_range_value: BigInt::from_be_bytes(&non_inclusion_proof.leaf_lower_range_value), leaf_higher_range_value: BigInt::from_be_bytes( &non_inclusion_proof.leaf_higher_range_value, ), next_index: BigInt::from(non_inclusion_proof.next_index), merkle_proof_hashed_indexed_element_leaf: proof, index_hashed_indexed_element_leaf: BigInt::from(non_inclusion_proof.leaf_index), } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/combined/merkle_combined_proof_inputs.rs
use crate::{ inclusion::merkle_inclusion_proof_inputs::InclusionProofInputs, non_inclusion::merkle_non_inclusion_proof_inputs::NonInclusionProofInputs, }; #[derive(Clone, Debug)] pub struct CombinedProofInputs<'a> { pub inclusion_parameters: InclusionProofInputs<'a>, pub non_inclusion_parameters: NonInclusionProofInputs<'a>, }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/light-prover-client/src/combined/mod.rs
pub mod merkle_combined_proof_inputs;
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/Cargo.toml
[package] name = "light-verifier" version = "1.1.0" description = "ZKP proof verifier used in Light Protocol" repository = "https://github.com/Lightprotocol/light-protocol" license = "Apache-2.0" edition = "2021" [features] solana = ["solana-program"] [dependencies] groth16-solana = "0.0.3" thiserror = "1.0" borsh = "0.10" solana-program = { workspace = true, optional = true } [dev-dependencies] tokio = { workspace = true } reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] } light-prover-client = { path = "../light-prover-client", version = "1.2.0" } serial_test = "3.2.0"
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/tests/test.rs
#[cfg(test)] mod test { use light_prover_client::gnark::helpers::{ProofType, ProverConfig}; use light_prover_client::{ gnark::{ constants::{PROVE_PATH, SERVER_ADDRESS}, helpers::{kill_prover, spawn_prover}, inclusion_json_formatter::inclusion_inputs_string, proof_helpers::{compress_proof, deserialize_gnark_proof_json, proof_from_json_struct}, }, helpers::init_logger, }; use light_verifier::{verify_merkle_proof_zkp, CompressedProof}; use reqwest::Client; use serial_test::serial; #[serial] #[tokio::test] async fn prove_inclusion() { init_logger(); spawn_prover( true, ProverConfig { run_mode: None, circuits: vec![ProofType::Inclusion], }, ) .await; let client = Client::new(); for number_of_compressed_accounts in &[1usize, 2, 3] { let (inputs, big_int_inputs) = inclusion_inputs_string(*number_of_compressed_accounts); let response_result = client .post(&format!("{}{}", SERVER_ADDRESS, PROVE_PATH)) .header("Content-Type", "text/plain; charset=utf-8") .body(inputs) .send() .await .expect("Failed to execute request."); assert!(response_result.status().is_success()); let body = response_result.text().await.unwrap(); let proof_json = deserialize_gnark_proof_json(&body).unwrap(); let (proof_a, proof_b, proof_c) = proof_from_json_struct(proof_json); let (proof_a, proof_b, proof_c) = compress_proof(&proof_a, &proof_b, &proof_c); let mut roots = Vec::<[u8; 32]>::new(); let mut leaves = Vec::<[u8; 32]>::new(); for _ in 0..*number_of_compressed_accounts { roots.push(big_int_inputs.root.to_bytes_be().1.try_into().unwrap()); leaves.push(big_int_inputs.leaf.to_bytes_be().1.try_into().unwrap()); } verify_merkle_proof_zkp( &roots, &leaves, &CompressedProof { a: proof_a, b: proof_b, c: proof_c, }, ) .unwrap(); } kill_prover(); } #[tokio::test] #[ignore] async fn prove_inclusion_full() { init_logger(); spawn_prover( false, ProverConfig { run_mode: None, circuits: vec![ProofType::Inclusion], }, ) .await; let client = Client::new(); for number_of_compressed_accounts in &[1usize, 2, 3, 4, 8] { let (inputs, big_int_inputs) = inclusion_inputs_string(*number_of_compressed_accounts); let response_result = client .post(&format!("{}{}", SERVER_ADDRESS, PROVE_PATH)) .header("Content-Type", "text/plain; charset=utf-8") .body(inputs) .send() .await .expect("Failed to execute request."); assert!(response_result.status().is_success()); let body = response_result.text().await.unwrap(); let proof_json = deserialize_gnark_proof_json(&body).unwrap(); let (proof_a, proof_b, proof_c) = proof_from_json_struct(proof_json); let (proof_a, proof_b, proof_c) = compress_proof(&proof_a, &proof_b, &proof_c); let mut roots = Vec::<[u8; 32]>::new(); let mut leaves = Vec::<[u8; 32]>::new(); for _ in 0..*number_of_compressed_accounts { roots.push(big_int_inputs.root.to_bytes_be().1.try_into().unwrap()); leaves.push(big_int_inputs.leaf.to_bytes_be().1.try_into().unwrap()); } verify_merkle_proof_zkp( &roots, &leaves, &CompressedProof { a: proof_a, b: proof_b, c: proof_c, }, ) .unwrap(); } kill_prover(); } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/lib.rs
use borsh::{BorshDeserialize, BorshSerialize}; use groth16_solana::decompression::{decompress_g1, decompress_g2}; use groth16_solana::groth16::{Groth16Verifier, Groth16Verifyingkey}; use thiserror::Error; pub mod verifying_keys; #[derive(Debug, Error)] pub enum VerifierError { #[error("PublicInputsTryIntoFailed")] PublicInputsTryIntoFailed, #[error("DecompressG1Failed")] DecompressG1Failed, #[error("DecompressG2Failed")] DecompressG2Failed, #[error("InvalidPublicInputsLength")] InvalidPublicInputsLength, #[error("CreateGroth16VerifierFailed")] CreateGroth16VerifierFailed, #[error("ProofVerificationFailed")] ProofVerificationFailed, } #[cfg(feature = "solana")] impl From<VerifierError> for u32 { fn from(e: VerifierError) -> u32 { match e { VerifierError::PublicInputsTryIntoFailed => 13001, VerifierError::DecompressG1Failed => 13002, VerifierError::DecompressG2Failed => 13003, VerifierError::InvalidPublicInputsLength => 13004, VerifierError::CreateGroth16VerifierFailed => 13005, VerifierError::ProofVerificationFailed => 13006, } } } #[cfg(feature = "solana")] impl From<VerifierError> for solana_program::program_error::ProgramError { fn from(e: VerifierError) -> Self { solana_program::program_error::ProgramError::Custom(e.into()) } } use VerifierError::*; #[derive(Debug, Clone, PartialEq, Eq, BorshSerialize, BorshDeserialize)] pub struct CompressedProof { pub a: [u8; 32], pub b: [u8; 64], pub c: [u8; 32], } impl Default for CompressedProof { fn default() -> Self { Self { a: [0; 32], b: [0; 64], c: [0; 32], } } } pub fn verify_create_addresses_zkp( address_roots: &[[u8; 32]], addresses: &[[u8; 32]], compressed_proof: &CompressedProof, ) -> Result<(), VerifierError> { let public_inputs = [address_roots, addresses].concat(); match addresses.len() { 1 => verify::<2>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::non_inclusion_26_1::VERIFYINGKEY, ), 2 => verify::<4>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::non_inclusion_26_2::VERIFYINGKEY, ), _ => Err(InvalidPublicInputsLength), } } #[inline(never)] pub fn verify_create_addresses_and_merkle_proof_zkp( roots: &[[u8; 32]], leaves: &[[u8; 32]], address_roots: &[[u8; 32]], addresses: &[[u8; 32]], compressed_proof: &CompressedProof, ) -> Result<(), VerifierError> { let public_inputs = [roots, leaves, address_roots, addresses].concat(); // The public inputs are expected to be a multiple of 2 // 4 inputs means 1 inclusion proof (1 root, 1 leaf, 1 address root, 1 created address) // 6 inputs means 1 inclusion proof (1 root, 1 leaf, 2 address roots, 2 created address) or // 6 inputs means 2 inclusion proofs (2 roots and 2 leaves, 1 address root, 1 created address) // 8 inputs means 2 inclusion proofs (2 roots and 2 leaves, 2 address roots, 2 created address) or // 8 inputs means 3 inclusion proofs (3 roots and 3 leaves, 1 address root, 1 created address) // 10 inputs means 3 inclusion proofs (3 roots and 3 leaves, 2 address roots, 2 created address) or // 10 inputs means 4 inclusion proofs (4 roots and 4 leaves, 1 address root, 1 created address) // 12 inputs means 4 inclusion proofs (4 roots and 4 leaves, 2 address roots, 2 created address) match public_inputs.len() { 4 => verify::<4>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::combined_26_1_1::VERIFYINGKEY, ), 6 => { let verifying_key = if address_roots.len() == 1 { &crate::verifying_keys::combined_26_2_1::VERIFYINGKEY } else { &crate::verifying_keys::combined_26_1_2::VERIFYINGKEY }; verify::<6>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, verifying_key, ) } 8 => { let verifying_key = if address_roots.len() == 1 { &crate::verifying_keys::combined_26_3_1::VERIFYINGKEY } else { &crate::verifying_keys::combined_26_2_2::VERIFYINGKEY }; verify::<8>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, verifying_key, ) } 10 => { let verifying_key = if address_roots.len() == 1 { &crate::verifying_keys::combined_26_4_1::VERIFYINGKEY } else { &crate::verifying_keys::combined_26_3_2::VERIFYINGKEY }; verify::<10>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, verifying_key, ) } 12 => verify::<12>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::combined_26_4_2::VERIFYINGKEY, ), _ => Err(crate::InvalidPublicInputsLength), } } #[inline(never)] pub fn verify_merkle_proof_zkp( roots: &[[u8; 32]], leaves: &[[u8; 32]], compressed_proof: &CompressedProof, ) -> Result<(), VerifierError> { let public_inputs = [roots, leaves].concat(); // The public inputs are expected to be a multiple of 2 // 2 inputs means 1 inclusion proof (1 root and 1 leaf) // 4 inputs means 2 inclusion proofs (2 roots and 2 leaves) // 6 inputs means 3 inclusion proofs (3 roots and 3 leaves) // 8 inputs means 4 inclusion proofs (4 roots and 4 leaves) // 16 inputs means 8 inclusion proofs (8 roots and 8 leaves) match public_inputs.len() { 2 => verify::<2>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::inclusion_26_1::VERIFYINGKEY, ), 4 => verify::<4>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::inclusion_26_2::VERIFYINGKEY, ), 6 => verify::<6>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::inclusion_26_3::VERIFYINGKEY, ), 8 => verify::<8>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::inclusion_26_4::VERIFYINGKEY, ), 16 => verify::<16>( &public_inputs .try_into() .map_err(|_| PublicInputsTryIntoFailed)?, compressed_proof, &crate::verifying_keys::inclusion_26_8::VERIFYINGKEY, ), _ => Err(crate::InvalidPublicInputsLength), } } #[inline(never)] fn verify<const N: usize>( public_inputs: &[[u8; 32]; N], proof: &CompressedProof, vk: &Groth16Verifyingkey, ) -> Result<(), VerifierError> { let proof_a = decompress_g1(&proof.a).map_err(|_| crate::DecompressG1Failed)?; let proof_b = decompress_g2(&proof.b).map_err(|_| crate::DecompressG2Failed)?; let proof_c = decompress_g1(&proof.c).map_err(|_| crate::DecompressG1Failed)?; let mut verifier = Groth16Verifier::new(&proof_a, &proof_b, &proof_c, public_inputs, vk) .map_err(|_| CreateGroth16VerifierFailed)?; verifier.verify().map_err(|_| { #[cfg(target_os = "solana")] { use solana_program::msg; msg!("Proof verification failed"); msg!("Public inputs: {:?}", public_inputs); msg!("Proof A: {:?}", proof_a); msg!("Proof B: {:?}", proof_b); msg!("Proof C: {:?}", proof_c); } ProofVerificationFailed })?; Ok(()) } #[inline(never)] pub fn verify_batch_append( batch_size: usize, public_input_hash: [u8; 32], compressed_proof: &CompressedProof, ) -> Result<(), VerifierError> { match batch_size { 1 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_subtrees_26_1::VERIFYINGKEY, ), 10 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_subtrees_26_10::VERIFYINGKEY, ), 100 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_subtrees_26_100::VERIFYINGKEY, ), 500 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_subtrees_26_500::VERIFYINGKEY, ), 1000 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_subtrees_26_1000::VERIFYINGKEY, ), _ => Err(crate::InvalidPublicInputsLength), } } #[inline(never)] pub fn verify_batch_append2( batch_size: usize, public_input_hash: [u8; 32], compressed_proof: &CompressedProof, ) -> Result<(), VerifierError> { match batch_size { 1 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_proofs_26_1::VERIFYINGKEY, ), 10 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_proofs_26_10::VERIFYINGKEY, ), 100 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_proofs_26_100::VERIFYINGKEY, ), 500 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_proofs_26_500::VERIFYINGKEY, ), 1000 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::append_with_proofs_26_1000::VERIFYINGKEY, ), _ => Err(crate::InvalidPublicInputsLength), } } #[inline(never)] pub fn verify_batch_update( batch_size: usize, public_input_hash: [u8; 32], compressed_proof: &CompressedProof, ) -> Result<(), VerifierError> { match batch_size { 1 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::update_26_1::VERIFYINGKEY, ), 10 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::update_26_10::VERIFYINGKEY, ), 100 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::update_26_100::VERIFYINGKEY, ), 500 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::update_26_500::VERIFYINGKEY, ), 1000 => verify::<1>( &[public_input_hash], compressed_proof, &crate::verifying_keys::update_26_1000::VERIFYINGKEY, ), _ => Err(crate::InvalidPublicInputsLength), } }
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_26_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 6u8, 11u8, 13u8, 147u8, 169u8, 154u8, 25u8, 26u8, 169u8, 97u8, 199u8, 74u8, 47u8, 169u8, 168u8, 176u8, 198u8, 109u8, 216u8, 248u8, 208u8, 21u8, 44u8, 131u8, 119u8, 133u8, 97u8, 225u8, 87u8, 21u8, 104u8, 96u8, 29u8, 169u8, 99u8, 31u8, 69u8, 166u8, 27u8, 47u8, 69u8, 96u8, 72u8, 78u8, 232u8, 204u8, 189u8, 114u8, 182u8, 21u8, 143u8, 202u8, 120u8, 54u8, 84u8, 34u8, 92u8, 244u8, 98u8, 94u8, 222u8, 236u8, 106u8, 214u8, ], vk_beta_g2: [ 19u8, 96u8, 125u8, 156u8, 68u8, 219u8, 220u8, 138u8, 249u8, 236u8, 56u8, 181u8, 204u8, 102u8, 232u8, 36u8, 97u8, 174u8, 238u8, 246u8, 219u8, 40u8, 255u8, 246u8, 214u8, 133u8, 117u8, 111u8, 233u8, 140u8, 200u8, 7u8, 40u8, 242u8, 215u8, 111u8, 229u8, 12u8, 236u8, 113u8, 9u8, 192u8, 106u8, 64u8, 170u8, 122u8, 136u8, 215u8, 80u8, 27u8, 125u8, 250u8, 101u8, 126u8, 47u8, 75u8, 244u8, 248u8, 153u8, 129u8, 82u8, 181u8, 176u8, 56u8, 35u8, 136u8, 36u8, 174u8, 13u8, 67u8, 176u8, 115u8, 50u8, 24u8, 30u8, 156u8, 123u8, 169u8, 63u8, 208u8, 194u8, 121u8, 61u8, 20u8, 120u8, 123u8, 148u8, 30u8, 104u8, 241u8, 37u8, 178u8, 114u8, 9u8, 217u8, 223u8, 44u8, 117u8, 53u8, 61u8, 148u8, 201u8, 176u8, 15u8, 136u8, 196u8, 204u8, 29u8, 243u8, 202u8, 34u8, 164u8, 121u8, 154u8, 174u8, 18u8, 98u8, 94u8, 179u8, 255u8, 169u8, 27u8, 203u8, 184u8, 185u8, 107u8, 72u8, 198u8, ], vk_gamme_g2: [ 29u8, 87u8, 152u8, 38u8, 120u8, 30u8, 152u8, 25u8, 184u8, 80u8, 234u8, 56u8, 96u8, 235u8, 95u8, 206u8, 63u8, 134u8, 38u8, 44u8, 66u8, 76u8, 100u8, 26u8, 47u8, 101u8, 200u8, 63u8, 59u8, 146u8, 119u8, 209u8, 42u8, 78u8, 203u8, 135u8, 13u8, 72u8, 20u8, 200u8, 151u8, 183u8, 112u8, 21u8, 6u8, 107u8, 100u8, 127u8, 59u8, 64u8, 56u8, 76u8, 40u8, 219u8, 193u8, 68u8, 144u8, 87u8, 149u8, 17u8, 53u8, 233u8, 161u8, 203u8, 10u8, 98u8, 68u8, 125u8, 22u8, 21u8, 97u8, 22u8, 129u8, 183u8, 118u8, 128u8, 177u8, 203u8, 165u8, 45u8, 97u8, 100u8, 222u8, 131u8, 1u8, 72u8, 96u8, 152u8, 157u8, 45u8, 127u8, 232u8, 21u8, 109u8, 132u8, 55u8, 18u8, 26u8, 215u8, 5u8, 197u8, 76u8, 125u8, 218u8, 162u8, 235u8, 182u8, 149u8, 97u8, 142u8, 238u8, 213u8, 121u8, 211u8, 19u8, 230u8, 72u8, 43u8, 23u8, 12u8, 59u8, 52u8, 255u8, 53u8, 179u8, 30u8, 46u8, 120u8, ], vk_delta_g2: [ 13u8, 137u8, 193u8, 187u8, 249u8, 206u8, 34u8, 204u8, 224u8, 126u8, 161u8, 1u8, 253u8, 90u8, 32u8, 170u8, 115u8, 41u8, 194u8, 173u8, 72u8, 174u8, 180u8, 236u8, 155u8, 14u8, 236u8, 42u8, 186u8, 117u8, 83u8, 13u8, 36u8, 227u8, 248u8, 176u8, 223u8, 174u8, 69u8, 118u8, 102u8, 224u8, 154u8, 5u8, 103u8, 172u8, 110u8, 227u8, 227u8, 103u8, 13u8, 170u8, 130u8, 36u8, 70u8, 254u8, 99u8, 69u8, 102u8, 26u8, 63u8, 179u8, 125u8, 207u8, 33u8, 127u8, 179u8, 133u8, 104u8, 0u8, 236u8, 49u8, 92u8, 51u8, 149u8, 193u8, 87u8, 62u8, 214u8, 206u8, 45u8, 242u8, 191u8, 35u8, 209u8, 32u8, 131u8, 150u8, 105u8, 194u8, 187u8, 138u8, 92u8, 228u8, 23u8, 162u8, 30u8, 225u8, 66u8, 110u8, 53u8, 199u8, 225u8, 254u8, 33u8, 25u8, 18u8, 184u8, 97u8, 82u8, 96u8, 25u8, 57u8, 79u8, 104u8, 3u8, 32u8, 103u8, 82u8, 35u8, 98u8, 191u8, 173u8, 152u8, 28u8, 5u8, 91u8, 230u8, ], vk_ic: &[ [ 2u8, 86u8, 48u8, 197u8, 63u8, 189u8, 160u8, 216u8, 183u8, 53u8, 8u8, 119u8, 93u8, 147u8, 124u8, 162u8, 166u8, 59u8, 175u8, 146u8, 87u8, 210u8, 234u8, 111u8, 52u8, 210u8, 245u8, 0u8, 106u8, 90u8, 9u8, 144u8, 30u8, 36u8, 234u8, 77u8, 221u8, 162u8, 86u8, 141u8, 62u8, 250u8, 236u8, 39u8, 57u8, 201u8, 238u8, 135u8, 94u8, 18u8, 95u8, 234u8, 126u8, 168u8, 172u8, 233u8, 81u8, 131u8, 133u8, 214u8, 48u8, 174u8, 82u8, 163u8, ], [ 10u8, 57u8, 105u8, 46u8, 216u8, 140u8, 24u8, 3u8, 193u8, 168u8, 201u8, 63u8, 29u8, 169u8, 124u8, 28u8, 247u8, 242u8, 187u8, 211u8, 146u8, 64u8, 2u8, 141u8, 182u8, 109u8, 87u8, 127u8, 139u8, 184u8, 182u8, 140u8, 7u8, 204u8, 12u8, 144u8, 8u8, 242u8, 95u8, 193u8, 230u8, 105u8, 95u8, 178u8, 43u8, 3u8, 197u8, 128u8, 133u8, 235u8, 240u8, 243u8, 170u8, 81u8, 22u8, 251u8, 168u8, 251u8, 7u8, 162u8, 42u8, 106u8, 235u8, 125u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_proofs_26_10.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 45u8, 48u8, 253u8, 51u8, 251u8, 66u8, 133u8, 85u8, 0u8, 102u8, 246u8, 219u8, 118u8, 107u8, 239u8, 10u8, 74u8, 252u8, 127u8, 162u8, 247u8, 116u8, 105u8, 17u8, 167u8, 2u8, 200u8, 12u8, 215u8, 86u8, 203u8, 54u8, 31u8, 204u8, 64u8, 107u8, 141u8, 173u8, 16u8, 158u8, 94u8, 69u8, 97u8, 253u8, 86u8, 210u8, 132u8, 18u8, 0u8, 232u8, 119u8, 58u8, 185u8, 188u8, 120u8, 105u8, 8u8, 82u8, 98u8, 102u8, 56u8, 17u8, 74u8, 91u8, ], vk_beta_g2: [ 46u8, 237u8, 55u8, 238u8, 243u8, 233u8, 182u8, 120u8, 120u8, 109u8, 216u8, 233u8, 20u8, 218u8, 150u8, 12u8, 237u8, 78u8, 237u8, 207u8, 232u8, 57u8, 185u8, 84u8, 224u8, 25u8, 52u8, 3u8, 232u8, 254u8, 175u8, 127u8, 18u8, 149u8, 225u8, 241u8, 225u8, 64u8, 86u8, 103u8, 24u8, 196u8, 159u8, 227u8, 132u8, 136u8, 119u8, 175u8, 111u8, 123u8, 116u8, 24u8, 200u8, 237u8, 151u8, 221u8, 176u8, 38u8, 55u8, 14u8, 204u8, 185u8, 176u8, 42u8, 30u8, 84u8, 77u8, 5u8, 203u8, 111u8, 97u8, 200u8, 229u8, 6u8, 150u8, 199u8, 137u8, 249u8, 105u8, 239u8, 55u8, 239u8, 6u8, 220u8, 33u8, 0u8, 13u8, 152u8, 174u8, 231u8, 119u8, 249u8, 233u8, 45u8, 14u8, 0u8, 11u8, 48u8, 55u8, 204u8, 186u8, 60u8, 160u8, 126u8, 192u8, 8u8, 86u8, 119u8, 235u8, 34u8, 178u8, 111u8, 120u8, 161u8, 12u8, 36u8, 203u8, 34u8, 23u8, 196u8, 76u8, 20u8, 211u8, 129u8, 50u8, 13u8, 195u8, 34u8, ], vk_gamme_g2: [ 37u8, 182u8, 104u8, 117u8, 107u8, 87u8, 15u8, 242u8, 199u8, 217u8, 45u8, 187u8, 94u8, 231u8, 107u8, 49u8, 44u8, 69u8, 254u8, 202u8, 43u8, 180u8, 32u8, 196u8, 80u8, 5u8, 152u8, 25u8, 82u8, 8u8, 36u8, 224u8, 16u8, 195u8, 204u8, 193u8, 208u8, 108u8, 41u8, 1u8, 136u8, 239u8, 168u8, 231u8, 29u8, 46u8, 179u8, 68u8, 210u8, 235u8, 233u8, 47u8, 75u8, 182u8, 45u8, 75u8, 117u8, 163u8, 14u8, 139u8, 94u8, 3u8, 99u8, 15u8, 14u8, 218u8, 183u8, 42u8, 83u8, 38u8, 140u8, 82u8, 218u8, 156u8, 140u8, 65u8, 64u8, 213u8, 136u8, 231u8, 94u8, 114u8, 12u8, 204u8, 77u8, 14u8, 128u8, 245u8, 238u8, 165u8, 215u8, 224u8, 218u8, 142u8, 104u8, 58u8, 2u8, 15u8, 239u8, 78u8, 75u8, 28u8, 220u8, 104u8, 145u8, 252u8, 7u8, 14u8, 254u8, 57u8, 113u8, 174u8, 11u8, 156u8, 190u8, 139u8, 90u8, 186u8, 203u8, 103u8, 32u8, 191u8, 199u8, 114u8, 247u8, 70u8, 92u8, 20u8, ], vk_delta_g2: [ 25u8, 249u8, 90u8, 181u8, 209u8, 214u8, 230u8, 176u8, 125u8, 63u8, 185u8, 223u8, 106u8, 177u8, 38u8, 249u8, 120u8, 34u8, 238u8, 122u8, 30u8, 183u8, 114u8, 115u8, 6u8, 60u8, 136u8, 52u8, 237u8, 90u8, 50u8, 216u8, 19u8, 111u8, 156u8, 60u8, 70u8, 17u8, 203u8, 135u8, 61u8, 76u8, 241u8, 235u8, 54u8, 131u8, 198u8, 103u8, 48u8, 172u8, 151u8, 69u8, 82u8, 202u8, 135u8, 195u8, 0u8, 76u8, 88u8, 3u8, 87u8, 62u8, 94u8, 177u8, 32u8, 183u8, 194u8, 244u8, 127u8, 4u8, 52u8, 189u8, 75u8, 59u8, 161u8, 167u8, 57u8, 45u8, 42u8, 144u8, 114u8, 37u8, 122u8, 137u8, 192u8, 32u8, 253u8, 249u8, 247u8, 163u8, 80u8, 133u8, 15u8, 194u8, 70u8, 50u8, 47u8, 69u8, 7u8, 181u8, 16u8, 197u8, 109u8, 150u8, 59u8, 250u8, 138u8, 121u8, 148u8, 239u8, 23u8, 27u8, 232u8, 140u8, 27u8, 153u8, 193u8, 56u8, 250u8, 183u8, 143u8, 75u8, 232u8, 43u8, 88u8, 244u8, 188u8, 20u8, ], vk_ic: &[ [ 25u8, 195u8, 12u8, 208u8, 208u8, 175u8, 57u8, 45u8, 250u8, 131u8, 79u8, 162u8, 146u8, 240u8, 103u8, 194u8, 114u8, 197u8, 230u8, 101u8, 70u8, 209u8, 35u8, 84u8, 224u8, 240u8, 30u8, 243u8, 158u8, 173u8, 64u8, 20u8, 12u8, 242u8, 243u8, 49u8, 118u8, 57u8, 138u8, 26u8, 221u8, 227u8, 150u8, 216u8, 186u8, 169u8, 132u8, 154u8, 203u8, 153u8, 201u8, 182u8, 188u8, 61u8, 41u8, 127u8, 152u8, 32u8, 82u8, 235u8, 110u8, 79u8, 67u8, 246u8, ], [ 39u8, 69u8, 180u8, 195u8, 168u8, 241u8, 73u8, 98u8, 144u8, 34u8, 44u8, 43u8, 150u8, 218u8, 220u8, 210u8, 224u8, 71u8, 59u8, 13u8, 177u8, 88u8, 64u8, 185u8, 128u8, 101u8, 61u8, 252u8, 236u8, 235u8, 82u8, 108u8, 43u8, 199u8, 104u8, 139u8, 49u8, 253u8, 224u8, 207u8, 133u8, 240u8, 249u8, 216u8, 3u8, 237u8, 61u8, 213u8, 91u8, 52u8, 4u8, 17u8, 229u8, 252u8, 117u8, 132u8, 100u8, 82u8, 108u8, 23u8, 171u8, 160u8, 54u8, 136u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/update_26_10.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 27u8, 56u8, 202u8, 199u8, 115u8, 62u8, 110u8, 106u8, 51u8, 137u8, 156u8, 16u8, 221u8, 177u8, 156u8, 130u8, 15u8, 148u8, 111u8, 6u8, 170u8, 62u8, 50u8, 127u8, 43u8, 233u8, 225u8, 149u8, 5u8, 45u8, 15u8, 45u8, 35u8, 63u8, 96u8, 165u8, 191u8, 198u8, 252u8, 142u8, 66u8, 141u8, 8u8, 85u8, 129u8, 105u8, 13u8, 253u8, 236u8, 171u8, 179u8, 130u8, 62u8, 192u8, 148u8, 97u8, 161u8, 124u8, 237u8, 189u8, 61u8, 136u8, 238u8, 2u8, ], vk_beta_g2: [ 26u8, 169u8, 183u8, 132u8, 67u8, 71u8, 200u8, 175u8, 153u8, 247u8, 130u8, 241u8, 36u8, 14u8, 125u8, 205u8, 142u8, 185u8, 246u8, 220u8, 91u8, 240u8, 239u8, 203u8, 84u8, 114u8, 162u8, 172u8, 253u8, 174u8, 20u8, 231u8, 29u8, 120u8, 162u8, 202u8, 180u8, 180u8, 149u8, 150u8, 210u8, 232u8, 27u8, 72u8, 10u8, 113u8, 123u8, 174u8, 66u8, 94u8, 238u8, 11u8, 203u8, 202u8, 191u8, 133u8, 35u8, 179u8, 66u8, 78u8, 22u8, 7u8, 209u8, 109u8, 33u8, 190u8, 119u8, 70u8, 132u8, 201u8, 150u8, 162u8, 68u8, 188u8, 18u8, 128u8, 36u8, 253u8, 73u8, 87u8, 12u8, 68u8, 254u8, 156u8, 47u8, 116u8, 137u8, 229u8, 142u8, 139u8, 194u8, 47u8, 33u8, 183u8, 221u8, 237u8, 42u8, 71u8, 50u8, 177u8, 184u8, 74u8, 34u8, 104u8, 229u8, 195u8, 205u8, 248u8, 31u8, 122u8, 46u8, 232u8, 214u8, 226u8, 153u8, 133u8, 141u8, 212u8, 233u8, 96u8, 224u8, 71u8, 194u8, 179u8, 23u8, 55u8, 102u8, 4u8, ], vk_gamme_g2: [ 32u8, 184u8, 237u8, 192u8, 115u8, 16u8, 128u8, 115u8, 158u8, 250u8, 157u8, 191u8, 176u8, 102u8, 250u8, 33u8, 203u8, 158u8, 216u8, 86u8, 28u8, 230u8, 213u8, 132u8, 1u8, 168u8, 190u8, 8u8, 98u8, 61u8, 233u8, 135u8, 26u8, 204u8, 253u8, 45u8, 32u8, 73u8, 62u8, 180u8, 52u8, 11u8, 30u8, 21u8, 6u8, 100u8, 86u8, 20u8, 59u8, 172u8, 195u8, 172u8, 99u8, 216u8, 133u8, 235u8, 128u8, 214u8, 36u8, 22u8, 2u8, 113u8, 137u8, 246u8, 32u8, 154u8, 227u8, 246u8, 83u8, 157u8, 222u8, 82u8, 163u8, 9u8, 96u8, 100u8, 60u8, 241u8, 164u8, 17u8, 1u8, 203u8, 2u8, 218u8, 197u8, 223u8, 241u8, 140u8, 39u8, 29u8, 229u8, 106u8, 237u8, 201u8, 188u8, 82u8, 33u8, 84u8, 182u8, 202u8, 130u8, 177u8, 225u8, 60u8, 251u8, 77u8, 199u8, 136u8, 186u8, 12u8, 76u8, 223u8, 7u8, 145u8, 252u8, 61u8, 27u8, 124u8, 123u8, 118u8, 44u8, 148u8, 29u8, 217u8, 103u8, 93u8, 30u8, 26u8, ], vk_delta_g2: [ 44u8, 222u8, 101u8, 97u8, 25u8, 174u8, 75u8, 109u8, 243u8, 125u8, 181u8, 95u8, 82u8, 97u8, 21u8, 221u8, 98u8, 85u8, 37u8, 145u8, 233u8, 161u8, 201u8, 221u8, 215u8, 85u8, 89u8, 34u8, 50u8, 165u8, 34u8, 122u8, 30u8, 94u8, 104u8, 139u8, 37u8, 128u8, 3u8, 53u8, 45u8, 80u8, 208u8, 110u8, 152u8, 193u8, 216u8, 57u8, 154u8, 105u8, 84u8, 118u8, 187u8, 242u8, 120u8, 105u8, 88u8, 235u8, 110u8, 208u8, 17u8, 172u8, 59u8, 151u8, 44u8, 218u8, 208u8, 50u8, 115u8, 195u8, 51u8, 174u8, 130u8, 172u8, 103u8, 207u8, 219u8, 173u8, 57u8, 86u8, 171u8, 248u8, 87u8, 67u8, 6u8, 177u8, 17u8, 255u8, 218u8, 243u8, 107u8, 45u8, 178u8, 107u8, 60u8, 49u8, 29u8, 0u8, 130u8, 51u8, 31u8, 56u8, 123u8, 104u8, 30u8, 109u8, 12u8, 95u8, 225u8, 11u8, 21u8, 185u8, 243u8, 252u8, 49u8, 147u8, 185u8, 248u8, 161u8, 154u8, 109u8, 22u8, 237u8, 224u8, 205u8, 58u8, 2u8, 227u8, ], vk_ic: &[ [ 10u8, 94u8, 5u8, 61u8, 65u8, 247u8, 208u8, 142u8, 13u8, 125u8, 151u8, 236u8, 213u8, 33u8, 57u8, 165u8, 102u8, 240u8, 105u8, 233u8, 164u8, 129u8, 249u8, 170u8, 119u8, 136u8, 25u8, 193u8, 83u8, 2u8, 55u8, 176u8, 43u8, 111u8, 196u8, 26u8, 74u8, 213u8, 23u8, 107u8, 173u8, 119u8, 18u8, 234u8, 30u8, 194u8, 84u8, 7u8, 128u8, 185u8, 247u8, 31u8, 24u8, 75u8, 155u8, 186u8, 59u8, 41u8, 138u8, 160u8, 63u8, 116u8, 175u8, 174u8, ], [ 7u8, 141u8, 252u8, 76u8, 163u8, 143u8, 105u8, 149u8, 229u8, 152u8, 167u8, 93u8, 111u8, 216u8, 181u8, 89u8, 204u8, 88u8, 75u8, 196u8, 149u8, 33u8, 34u8, 177u8, 134u8, 232u8, 157u8, 98u8, 160u8, 220u8, 82u8, 182u8, 32u8, 190u8, 145u8, 174u8, 195u8, 102u8, 77u8, 22u8, 98u8, 133u8, 92u8, 40u8, 185u8, 151u8, 137u8, 195u8, 163u8, 3u8, 157u8, 236u8, 238u8, 118u8, 74u8, 255u8, 19u8, 49u8, 216u8, 138u8, 171u8, 167u8, 1u8, 134u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_40_1000.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 4u8, 67u8, 20u8, 95u8, 45u8, 234u8, 124u8, 192u8, 255u8, 67u8, 186u8, 52u8, 124u8, 241u8, 2u8, 115u8, 26u8, 148u8, 204u8, 198u8, 115u8, 51u8, 62u8, 134u8, 246u8, 135u8, 166u8, 142u8, 192u8, 126u8, 139u8, 17u8, 11u8, 49u8, 134u8, 171u8, 227u8, 199u8, 173u8, 102u8, 116u8, 73u8, 133u8, 194u8, 139u8, 19u8, 49u8, 156u8, 136u8, 155u8, 1u8, 189u8, 47u8, 124u8, 191u8, 223u8, 58u8, 249u8, 137u8, 244u8, 169u8, 81u8, 84u8, 202u8, ], vk_beta_g2: [ 45u8, 187u8, 244u8, 42u8, 75u8, 107u8, 62u8, 89u8, 170u8, 5u8, 146u8, 62u8, 190u8, 103u8, 110u8, 87u8, 4u8, 18u8, 187u8, 204u8, 208u8, 12u8, 164u8, 207u8, 15u8, 199u8, 109u8, 76u8, 161u8, 104u8, 97u8, 27u8, 34u8, 22u8, 77u8, 68u8, 178u8, 106u8, 77u8, 251u8, 164u8, 136u8, 49u8, 250u8, 51u8, 13u8, 84u8, 162u8, 13u8, 170u8, 222u8, 129u8, 216u8, 178u8, 75u8, 22u8, 36u8, 82u8, 251u8, 201u8, 12u8, 6u8, 99u8, 93u8, 45u8, 188u8, 150u8, 35u8, 2u8, 154u8, 216u8, 203u8, 120u8, 14u8, 213u8, 217u8, 62u8, 221u8, 2u8, 163u8, 218u8, 138u8, 182u8, 192u8, 137u8, 22u8, 12u8, 112u8, 27u8, 103u8, 239u8, 3u8, 56u8, 109u8, 135u8, 163u8, 17u8, 123u8, 0u8, 177u8, 171u8, 86u8, 201u8, 154u8, 81u8, 71u8, 107u8, 154u8, 123u8, 4u8, 227u8, 248u8, 18u8, 57u8, 223u8, 146u8, 219u8, 190u8, 202u8, 158u8, 215u8, 46u8, 167u8, 51u8, 3u8, 155u8, 102u8, 253u8, ], vk_gamme_g2: [ 23u8, 116u8, 100u8, 249u8, 78u8, 37u8, 177u8, 152u8, 118u8, 92u8, 129u8, 118u8, 42u8, 14u8, 217u8, 12u8, 15u8, 130u8, 163u8, 252u8, 142u8, 12u8, 151u8, 17u8, 185u8, 49u8, 252u8, 99u8, 93u8, 104u8, 239u8, 72u8, 20u8, 150u8, 148u8, 111u8, 90u8, 102u8, 58u8, 143u8, 136u8, 17u8, 14u8, 154u8, 191u8, 154u8, 168u8, 73u8, 57u8, 5u8, 88u8, 20u8, 40u8, 126u8, 153u8, 228u8, 189u8, 46u8, 222u8, 230u8, 184u8, 72u8, 211u8, 249u8, 6u8, 140u8, 147u8, 108u8, 138u8, 233u8, 93u8, 73u8, 11u8, 25u8, 147u8, 167u8, 197u8, 43u8, 103u8, 157u8, 122u8, 14u8, 39u8, 251u8, 80u8, 30u8, 47u8, 99u8, 142u8, 115u8, 251u8, 172u8, 105u8, 36u8, 52u8, 197u8, 19u8, 183u8, 111u8, 72u8, 181u8, 47u8, 26u8, 152u8, 241u8, 28u8, 198u8, 234u8, 242u8, 235u8, 82u8, 32u8, 116u8, 83u8, 36u8, 113u8, 38u8, 144u8, 39u8, 42u8, 240u8, 131u8, 39u8, 104u8, 36u8, 238u8, 161u8, 232u8, ], vk_delta_g2: [ 40u8, 44u8, 36u8, 221u8, 8u8, 125u8, 64u8, 191u8, 70u8, 149u8, 120u8, 35u8, 149u8, 149u8, 231u8, 18u8, 152u8, 146u8, 204u8, 235u8, 57u8, 9u8, 159u8, 164u8, 137u8, 49u8, 72u8, 234u8, 43u8, 74u8, 72u8, 136u8, 20u8, 54u8, 157u8, 52u8, 207u8, 19u8, 4u8, 206u8, 115u8, 157u8, 72u8, 60u8, 212u8, 84u8, 48u8, 244u8, 237u8, 31u8, 60u8, 139u8, 12u8, 243u8, 185u8, 104u8, 0u8, 13u8, 125u8, 31u8, 85u8, 1u8, 146u8, 242u8, 19u8, 239u8, 90u8, 233u8, 171u8, 219u8, 161u8, 19u8, 187u8, 64u8, 42u8, 134u8, 255u8, 165u8, 170u8, 219u8, 1u8, 132u8, 67u8, 118u8, 244u8, 216u8, 95u8, 212u8, 17u8, 201u8, 74u8, 227u8, 24u8, 66u8, 28u8, 58u8, 19u8, 243u8, 46u8, 221u8, 182u8, 130u8, 13u8, 230u8, 13u8, 14u8, 200u8, 190u8, 76u8, 250u8, 108u8, 60u8, 140u8, 22u8, 142u8, 50u8, 186u8, 142u8, 94u8, 72u8, 1u8, 81u8, 28u8, 81u8, 16u8, 214u8, 186u8, 83u8, ], vk_ic: &[ [ 32u8, 221u8, 189u8, 240u8, 100u8, 116u8, 10u8, 18u8, 219u8, 51u8, 201u8, 191u8, 147u8, 49u8, 43u8, 208u8, 213u8, 213u8, 63u8, 8u8, 17u8, 69u8, 208u8, 164u8, 76u8, 14u8, 64u8, 68u8, 112u8, 227u8, 188u8, 185u8, 0u8, 40u8, 127u8, 133u8, 7u8, 86u8, 182u8, 170u8, 32u8, 92u8, 89u8, 213u8, 144u8, 94u8, 211u8, 88u8, 56u8, 16u8, 65u8, 230u8, 101u8, 64u8, 46u8, 216u8, 180u8, 159u8, 85u8, 24u8, 89u8, 65u8, 215u8, 152u8, ], [ 12u8, 26u8, 235u8, 151u8, 63u8, 186u8, 45u8, 10u8, 106u8, 133u8, 175u8, 179u8, 70u8, 250u8, 252u8, 200u8, 221u8, 19u8, 143u8, 165u8, 234u8, 165u8, 17u8, 24u8, 30u8, 105u8, 250u8, 201u8, 227u8, 92u8, 198u8, 66u8, 0u8, 19u8, 61u8, 176u8, 168u8, 79u8, 118u8, 81u8, 7u8, 213u8, 122u8, 243u8, 185u8, 253u8, 253u8, 29u8, 167u8, 73u8, 91u8, 186u8, 5u8, 92u8, 196u8, 50u8, 193u8, 91u8, 156u8, 3u8, 26u8, 53u8, 42u8, 1u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_40_100.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 11u8, 179u8, 191u8, 18u8, 84u8, 83u8, 208u8, 56u8, 44u8, 223u8, 176u8, 136u8, 5u8, 209u8, 26u8, 40u8, 152u8, 171u8, 133u8, 154u8, 141u8, 20u8, 101u8, 155u8, 76u8, 253u8, 148u8, 79u8, 22u8, 128u8, 8u8, 196u8, 21u8, 122u8, 44u8, 241u8, 225u8, 194u8, 189u8, 61u8, 31u8, 26u8, 37u8, 25u8, 212u8, 159u8, 182u8, 47u8, 200u8, 48u8, 49u8, 83u8, 140u8, 186u8, 111u8, 231u8, 213u8, 21u8, 247u8, 239u8, 243u8, 147u8, 6u8, 115u8, ], vk_beta_g2: [ 30u8, 8u8, 18u8, 250u8, 61u8, 116u8, 97u8, 0u8, 43u8, 237u8, 192u8, 83u8, 242u8, 54u8, 199u8, 216u8, 236u8, 98u8, 239u8, 60u8, 236u8, 69u8, 158u8, 56u8, 84u8, 70u8, 48u8, 15u8, 101u8, 162u8, 137u8, 51u8, 36u8, 44u8, 28u8, 122u8, 148u8, 143u8, 152u8, 8u8, 82u8, 65u8, 65u8, 58u8, 177u8, 255u8, 61u8, 227u8, 80u8, 123u8, 176u8, 142u8, 191u8, 92u8, 181u8, 241u8, 207u8, 116u8, 172u8, 34u8, 201u8, 96u8, 198u8, 185u8, 39u8, 208u8, 85u8, 215u8, 245u8, 244u8, 109u8, 89u8, 58u8, 181u8, 188u8, 154u8, 119u8, 249u8, 238u8, 104u8, 135u8, 241u8, 66u8, 153u8, 128u8, 167u8, 84u8, 30u8, 170u8, 229u8, 76u8, 253u8, 212u8, 58u8, 162u8, 252u8, 4u8, 149u8, 197u8, 141u8, 249u8, 49u8, 229u8, 61u8, 193u8, 45u8, 197u8, 187u8, 154u8, 139u8, 186u8, 175u8, 68u8, 104u8, 101u8, 26u8, 230u8, 237u8, 5u8, 224u8, 222u8, 129u8, 119u8, 105u8, 124u8, 21u8, 164u8, 196u8, ], vk_gamme_g2: [ 42u8, 15u8, 180u8, 234u8, 209u8, 47u8, 61u8, 82u8, 47u8, 66u8, 250u8, 79u8, 92u8, 111u8, 199u8, 250u8, 253u8, 69u8, 160u8, 172u8, 218u8, 103u8, 215u8, 117u8, 255u8, 50u8, 158u8, 184u8, 168u8, 15u8, 149u8, 67u8, 37u8, 107u8, 194u8, 127u8, 228u8, 191u8, 91u8, 3u8, 102u8, 11u8, 115u8, 88u8, 101u8, 195u8, 43u8, 155u8, 104u8, 145u8, 158u8, 166u8, 223u8, 91u8, 202u8, 233u8, 242u8, 147u8, 208u8, 246u8, 100u8, 32u8, 253u8, 74u8, 43u8, 244u8, 34u8, 94u8, 74u8, 144u8, 137u8, 82u8, 169u8, 33u8, 156u8, 113u8, 170u8, 241u8, 239u8, 169u8, 90u8, 244u8, 72u8, 0u8, 221u8, 152u8, 168u8, 85u8, 45u8, 0u8, 112u8, 154u8, 37u8, 232u8, 113u8, 8u8, 3u8, 190u8, 240u8, 169u8, 126u8, 110u8, 13u8, 148u8, 29u8, 172u8, 180u8, 176u8, 56u8, 129u8, 238u8, 234u8, 158u8, 13u8, 2u8, 75u8, 30u8, 15u8, 91u8, 188u8, 111u8, 205u8, 255u8, 164u8, 169u8, 63u8, 193u8, 244u8, ], vk_delta_g2: [ 4u8, 187u8, 169u8, 163u8, 91u8, 82u8, 87u8, 16u8, 99u8, 33u8, 44u8, 165u8, 179u8, 88u8, 2u8, 188u8, 70u8, 124u8, 128u8, 209u8, 6u8, 159u8, 209u8, 41u8, 220u8, 129u8, 215u8, 209u8, 48u8, 236u8, 71u8, 128u8, 31u8, 52u8, 170u8, 17u8, 250u8, 54u8, 253u8, 81u8, 231u8, 66u8, 151u8, 207u8, 169u8, 152u8, 88u8, 202u8, 76u8, 189u8, 205u8, 59u8, 109u8, 106u8, 208u8, 53u8, 175u8, 149u8, 190u8, 0u8, 125u8, 28u8, 248u8, 52u8, 16u8, 47u8, 20u8, 128u8, 217u8, 242u8, 184u8, 204u8, 90u8, 117u8, 78u8, 94u8, 10u8, 201u8, 76u8, 168u8, 223u8, 204u8, 127u8, 169u8, 221u8, 195u8, 107u8, 141u8, 66u8, 135u8, 142u8, 31u8, 230u8, 74u8, 113u8, 60u8, 13u8, 122u8, 4u8, 145u8, 185u8, 74u8, 55u8, 172u8, 185u8, 249u8, 15u8, 241u8, 216u8, 111u8, 146u8, 128u8, 8u8, 134u8, 61u8, 142u8, 138u8, 241u8, 147u8, 51u8, 42u8, 70u8, 1u8, 127u8, 203u8, 74u8, 58u8, 95u8, ], vk_ic: &[ [ 21u8, 254u8, 60u8, 58u8, 72u8, 129u8, 181u8, 137u8, 183u8, 44u8, 111u8, 0u8, 211u8, 177u8, 105u8, 37u8, 22u8, 2u8, 53u8, 127u8, 97u8, 146u8, 249u8, 71u8, 7u8, 201u8, 232u8, 131u8, 33u8, 235u8, 70u8, 194u8, 12u8, 113u8, 89u8, 148u8, 44u8, 67u8, 219u8, 241u8, 100u8, 221u8, 91u8, 122u8, 103u8, 108u8, 153u8, 81u8, 147u8, 206u8, 140u8, 97u8, 13u8, 191u8, 229u8, 113u8, 35u8, 72u8, 1u8, 8u8, 103u8, 83u8, 41u8, 1u8, ], [ 26u8, 8u8, 23u8, 193u8, 246u8, 101u8, 126u8, 139u8, 160u8, 9u8, 16u8, 147u8, 102u8, 241u8, 154u8, 162u8, 154u8, 165u8, 25u8, 178u8, 65u8, 170u8, 203u8, 29u8, 190u8, 14u8, 57u8, 243u8, 173u8, 120u8, 7u8, 84u8, 20u8, 157u8, 135u8, 230u8, 57u8, 243u8, 41u8, 180u8, 70u8, 180u8, 47u8, 242u8, 101u8, 78u8, 119u8, 74u8, 215u8, 157u8, 220u8, 52u8, 202u8, 197u8, 214u8, 166u8, 108u8, 63u8, 155u8, 197u8, 240u8, 46u8, 40u8, 71u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/inclusion_26_8.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 16usize, vk_alpha_g1: [ 21u8, 70u8, 109u8, 120u8, 120u8, 101u8, 224u8, 33u8, 35u8, 112u8, 134u8, 152u8, 227u8, 97u8, 154u8, 16u8, 214u8, 223u8, 178u8, 81u8, 190u8, 106u8, 151u8, 218u8, 128u8, 145u8, 159u8, 226u8, 86u8, 95u8, 216u8, 158u8, 16u8, 42u8, 159u8, 215u8, 214u8, 229u8, 66u8, 202u8, 244u8, 17u8, 166u8, 241u8, 108u8, 239u8, 143u8, 35u8, 107u8, 30u8, 236u8, 127u8, 245u8, 55u8, 51u8, 213u8, 215u8, 216u8, 82u8, 82u8, 94u8, 28u8, 30u8, 66u8, ], vk_beta_g2: [ 27u8, 134u8, 207u8, 54u8, 222u8, 116u8, 108u8, 26u8, 117u8, 125u8, 196u8, 208u8, 136u8, 30u8, 72u8, 191u8, 202u8, 56u8, 48u8, 21u8, 228u8, 73u8, 139u8, 6u8, 153u8, 128u8, 45u8, 55u8, 228u8, 196u8, 162u8, 133u8, 7u8, 129u8, 183u8, 133u8, 240u8, 100u8, 222u8, 25u8, 253u8, 86u8, 243u8, 153u8, 73u8, 46u8, 69u8, 86u8, 251u8, 110u8, 134u8, 121u8, 58u8, 113u8, 110u8, 124u8, 38u8, 232u8, 209u8, 45u8, 201u8, 210u8, 83u8, 69u8, 0u8, 169u8, 230u8, 107u8, 218u8, 20u8, 9u8, 98u8, 97u8, 171u8, 64u8, 49u8, 37u8, 93u8, 98u8, 201u8, 114u8, 238u8, 61u8, 174u8, 175u8, 230u8, 62u8, 234u8, 35u8, 255u8, 202u8, 93u8, 85u8, 168u8, 151u8, 218u8, 13u8, 178u8, 33u8, 66u8, 198u8, 32u8, 59u8, 25u8, 225u8, 166u8, 66u8, 79u8, 76u8, 34u8, 211u8, 98u8, 249u8, 69u8, 236u8, 186u8, 27u8, 250u8, 26u8, 110u8, 243u8, 55u8, 198u8, 161u8, 179u8, 15u8, 114u8, 178u8, ], vk_gamme_g2: [ 4u8, 132u8, 100u8, 232u8, 41u8, 32u8, 57u8, 28u8, 250u8, 14u8, 104u8, 209u8, 71u8, 70u8, 156u8, 80u8, 150u8, 54u8, 248u8, 44u8, 86u8, 126u8, 25u8, 101u8, 97u8, 19u8, 133u8, 63u8, 177u8, 8u8, 208u8, 239u8, 19u8, 252u8, 6u8, 1u8, 40u8, 156u8, 236u8, 88u8, 172u8, 17u8, 242u8, 103u8, 22u8, 69u8, 62u8, 158u8, 250u8, 24u8, 227u8, 65u8, 101u8, 219u8, 252u8, 149u8, 92u8, 42u8, 181u8, 175u8, 168u8, 88u8, 194u8, 129u8, 34u8, 136u8, 10u8, 141u8, 200u8, 198u8, 50u8, 128u8, 128u8, 40u8, 32u8, 72u8, 35u8, 21u8, 67u8, 134u8, 190u8, 179u8, 192u8, 226u8, 156u8, 195u8, 185u8, 73u8, 182u8, 126u8, 129u8, 40u8, 184u8, 46u8, 53u8, 7u8, 29u8, 233u8, 91u8, 139u8, 37u8, 122u8, 251u8, 168u8, 126u8, 47u8, 207u8, 26u8, 57u8, 34u8, 84u8, 75u8, 182u8, 102u8, 252u8, 174u8, 40u8, 87u8, 102u8, 88u8, 249u8, 29u8, 10u8, 205u8, 69u8, 100u8, 135u8, 86u8, ], vk_delta_g2: [ 5u8, 172u8, 77u8, 57u8, 15u8, 122u8, 35u8, 190u8, 193u8, 31u8, 159u8, 101u8, 11u8, 8u8, 208u8, 186u8, 7u8, 8u8, 71u8, 82u8, 164u8, 98u8, 234u8, 189u8, 0u8, 209u8, 25u8, 30u8, 40u8, 124u8, 69u8, 145u8, 1u8, 103u8, 212u8, 141u8, 15u8, 203u8, 46u8, 70u8, 59u8, 86u8, 31u8, 188u8, 225u8, 74u8, 199u8, 73u8, 34u8, 1u8, 180u8, 226u8, 250u8, 99u8, 146u8, 63u8, 78u8, 148u8, 81u8, 36u8, 46u8, 252u8, 62u8, 0u8, 25u8, 50u8, 17u8, 168u8, 59u8, 114u8, 29u8, 90u8, 29u8, 37u8, 197u8, 106u8, 131u8, 201u8, 34u8, 119u8, 249u8, 29u8, 79u8, 72u8, 40u8, 51u8, 50u8, 80u8, 27u8, 125u8, 18u8, 74u8, 49u8, 184u8, 115u8, 72u8, 4u8, 241u8, 190u8, 111u8, 214u8, 10u8, 6u8, 112u8, 34u8, 241u8, 217u8, 171u8, 117u8, 207u8, 236u8, 190u8, 36u8, 206u8, 32u8, 13u8, 48u8, 76u8, 43u8, 203u8, 219u8, 162u8, 14u8, 50u8, 39u8, 180u8, 220u8, 81u8, ], vk_ic: &[ [ 0u8, 58u8, 162u8, 187u8, 200u8, 44u8, 229u8, 70u8, 99u8, 53u8, 146u8, 9u8, 94u8, 165u8, 52u8, 153u8, 121u8, 151u8, 228u8, 227u8, 3u8, 184u8, 162u8, 253u8, 233u8, 235u8, 233u8, 96u8, 177u8, 0u8, 138u8, 69u8, 27u8, 56u8, 9u8, 219u8, 174u8, 220u8, 237u8, 249u8, 126u8, 218u8, 208u8, 132u8, 108u8, 193u8, 24u8, 53u8, 92u8, 66u8, 65u8, 128u8, 87u8, 140u8, 128u8, 255u8, 253u8, 144u8, 29u8, 75u8, 99u8, 141u8, 138u8, 58u8, ], [ 38u8, 239u8, 242u8, 219u8, 130u8, 231u8, 12u8, 139u8, 88u8, 13u8, 20u8, 165u8, 102u8, 83u8, 82u8, 85u8, 139u8, 31u8, 187u8, 131u8, 148u8, 164u8, 234u8, 166u8, 188u8, 21u8, 0u8, 221u8, 10u8, 104u8, 18u8, 44u8, 9u8, 135u8, 166u8, 107u8, 87u8, 16u8, 122u8, 248u8, 34u8, 77u8, 141u8, 152u8, 104u8, 246u8, 51u8, 31u8, 71u8, 108u8, 131u8, 84u8, 195u8, 79u8, 215u8, 176u8, 215u8, 29u8, 31u8, 190u8, 135u8, 12u8, 40u8, 149u8, ], [ 3u8, 30u8, 211u8, 30u8, 242u8, 193u8, 224u8, 254u8, 202u8, 208u8, 113u8, 142u8, 222u8, 81u8, 169u8, 150u8, 251u8, 248u8, 116u8, 81u8, 229u8, 9u8, 184u8, 249u8, 35u8, 84u8, 22u8, 112u8, 147u8, 41u8, 117u8, 43u8, 38u8, 211u8, 222u8, 15u8, 10u8, 111u8, 41u8, 4u8, 193u8, 170u8, 119u8, 239u8, 144u8, 213u8, 170u8, 208u8, 235u8, 232u8, 4u8, 51u8, 69u8, 87u8, 28u8, 217u8, 181u8, 231u8, 197u8, 144u8, 26u8, 40u8, 219u8, 74u8, ], [ 18u8, 43u8, 225u8, 107u8, 220u8, 139u8, 112u8, 12u8, 66u8, 30u8, 14u8, 6u8, 113u8, 89u8, 51u8, 108u8, 77u8, 16u8, 136u8, 111u8, 191u8, 26u8, 14u8, 63u8, 43u8, 201u8, 79u8, 85u8, 255u8, 228u8, 99u8, 248u8, 0u8, 113u8, 9u8, 190u8, 64u8, 59u8, 153u8, 227u8, 238u8, 80u8, 1u8, 41u8, 196u8, 65u8, 3u8, 17u8, 165u8, 87u8, 224u8, 4u8, 158u8, 211u8, 1u8, 235u8, 81u8, 117u8, 193u8, 116u8, 140u8, 178u8, 232u8, 81u8, ], [ 42u8, 72u8, 250u8, 32u8, 167u8, 236u8, 205u8, 122u8, 188u8, 227u8, 18u8, 233u8, 22u8, 192u8, 169u8, 100u8, 22u8, 136u8, 194u8, 246u8, 30u8, 239u8, 233u8, 95u8, 91u8, 101u8, 157u8, 97u8, 147u8, 137u8, 1u8, 199u8, 30u8, 39u8, 14u8, 107u8, 66u8, 172u8, 54u8, 199u8, 36u8, 179u8, 96u8, 64u8, 116u8, 111u8, 194u8, 7u8, 69u8, 210u8, 236u8, 73u8, 136u8, 78u8, 80u8, 174u8, 145u8, 71u8, 123u8, 6u8, 108u8, 25u8, 75u8, 228u8, ], [ 29u8, 246u8, 151u8, 128u8, 130u8, 110u8, 93u8, 232u8, 251u8, 202u8, 209u8, 212u8, 32u8, 28u8, 132u8, 3u8, 50u8, 100u8, 205u8, 100u8, 67u8, 123u8, 248u8, 39u8, 17u8, 85u8, 44u8, 31u8, 154u8, 62u8, 247u8, 195u8, 39u8, 93u8, 211u8, 68u8, 189u8, 148u8, 107u8, 148u8, 158u8, 81u8, 238u8, 229u8, 76u8, 149u8, 43u8, 82u8, 153u8, 188u8, 111u8, 151u8, 143u8, 239u8, 30u8, 124u8, 93u8, 78u8, 167u8, 176u8, 238u8, 220u8, 14u8, 255u8, ], [ 11u8, 65u8, 93u8, 142u8, 58u8, 30u8, 150u8, 51u8, 230u8, 133u8, 35u8, 174u8, 107u8, 127u8, 50u8, 169u8, 106u8, 59u8, 130u8, 234u8, 98u8, 232u8, 122u8, 138u8, 13u8, 36u8, 138u8, 214u8, 30u8, 234u8, 4u8, 171u8, 30u8, 63u8, 170u8, 73u8, 147u8, 42u8, 255u8, 79u8, 122u8, 133u8, 254u8, 195u8, 17u8, 203u8, 170u8, 29u8, 62u8, 171u8, 248u8, 170u8, 238u8, 91u8, 176u8, 250u8, 48u8, 187u8, 64u8, 158u8, 160u8, 82u8, 234u8, 129u8, ], [ 37u8, 64u8, 234u8, 21u8, 171u8, 159u8, 22u8, 25u8, 157u8, 133u8, 243u8, 171u8, 247u8, 174u8, 124u8, 50u8, 218u8, 242u8, 252u8, 242u8, 214u8, 189u8, 75u8, 12u8, 1u8, 195u8, 232u8, 36u8, 28u8, 5u8, 10u8, 41u8, 22u8, 205u8, 251u8, 167u8, 104u8, 220u8, 42u8, 101u8, 125u8, 91u8, 177u8, 82u8, 120u8, 142u8, 154u8, 5u8, 148u8, 99u8, 153u8, 157u8, 143u8, 146u8, 47u8, 144u8, 73u8, 166u8, 246u8, 112u8, 151u8, 83u8, 128u8, 76u8, ], [ 43u8, 117u8, 116u8, 180u8, 197u8, 58u8, 111u8, 157u8, 195u8, 39u8, 10u8, 185u8, 104u8, 83u8, 181u8, 185u8, 77u8, 175u8, 42u8, 67u8, 238u8, 18u8, 99u8, 186u8, 45u8, 194u8, 215u8, 80u8, 21u8, 49u8, 184u8, 141u8, 22u8, 245u8, 55u8, 94u8, 24u8, 45u8, 230u8, 15u8, 14u8, 163u8, 194u8, 219u8, 33u8, 207u8, 114u8, 128u8, 73u8, 12u8, 159u8, 46u8, 133u8, 139u8, 117u8, 76u8, 1u8, 76u8, 251u8, 135u8, 24u8, 119u8, 231u8, 146u8, ], [ 47u8, 108u8, 212u8, 203u8, 105u8, 109u8, 87u8, 207u8, 227u8, 216u8, 95u8, 246u8, 58u8, 253u8, 74u8, 227u8, 212u8, 137u8, 98u8, 87u8, 145u8, 195u8, 76u8, 65u8, 244u8, 247u8, 234u8, 119u8, 212u8, 217u8, 192u8, 45u8, 36u8, 74u8, 169u8, 88u8, 145u8, 137u8, 149u8, 91u8, 203u8, 8u8, 77u8, 158u8, 232u8, 189u8, 39u8, 24u8, 248u8, 93u8, 27u8, 116u8, 2u8, 200u8, 27u8, 163u8, 155u8, 25u8, 174u8, 134u8, 31u8, 188u8, 203u8, 194u8, ], [ 40u8, 128u8, 221u8, 83u8, 188u8, 86u8, 138u8, 165u8, 189u8, 248u8, 160u8, 186u8, 69u8, 1u8, 223u8, 49u8, 11u8, 53u8, 251u8, 175u8, 207u8, 236u8, 102u8, 184u8, 206u8, 70u8, 191u8, 124u8, 26u8, 134u8, 131u8, 65u8, 13u8, 248u8, 86u8, 229u8, 55u8, 233u8, 2u8, 208u8, 169u8, 205u8, 212u8, 113u8, 42u8, 47u8, 13u8, 84u8, 33u8, 106u8, 105u8, 218u8, 112u8, 204u8, 47u8, 194u8, 181u8, 18u8, 102u8, 77u8, 135u8, 26u8, 242u8, 84u8, ], [ 3u8, 57u8, 169u8, 71u8, 141u8, 108u8, 243u8, 69u8, 33u8, 122u8, 122u8, 123u8, 56u8, 207u8, 234u8, 100u8, 148u8, 51u8, 47u8, 211u8, 105u8, 87u8, 107u8, 171u8, 18u8, 70u8, 247u8, 94u8, 184u8, 96u8, 35u8, 85u8, 15u8, 231u8, 245u8, 98u8, 115u8, 205u8, 54u8, 42u8, 46u8, 17u8, 236u8, 67u8, 42u8, 134u8, 224u8, 24u8, 86u8, 123u8, 159u8, 236u8, 85u8, 139u8, 183u8, 36u8, 169u8, 255u8, 91u8, 237u8, 136u8, 14u8, 25u8, 247u8, ], [ 7u8, 79u8, 1u8, 76u8, 172u8, 88u8, 49u8, 102u8, 238u8, 82u8, 61u8, 174u8, 170u8, 26u8, 120u8, 188u8, 14u8, 174u8, 255u8, 95u8, 69u8, 84u8, 211u8, 240u8, 184u8, 24u8, 30u8, 237u8, 143u8, 254u8, 163u8, 240u8, 48u8, 67u8, 157u8, 159u8, 65u8, 53u8, 127u8, 28u8, 26u8, 137u8, 153u8, 147u8, 219u8, 221u8, 172u8, 122u8, 174u8, 62u8, 201u8, 132u8, 29u8, 218u8, 5u8, 167u8, 124u8, 114u8, 79u8, 252u8, 219u8, 196u8, 115u8, 248u8, ], [ 31u8, 223u8, 58u8, 132u8, 102u8, 122u8, 165u8, 104u8, 74u8, 8u8, 40u8, 147u8, 39u8, 123u8, 99u8, 219u8, 129u8, 67u8, 207u8, 34u8, 235u8, 28u8, 87u8, 62u8, 226u8, 40u8, 72u8, 103u8, 209u8, 234u8, 149u8, 127u8, 44u8, 242u8, 27u8, 226u8, 4u8, 255u8, 19u8, 199u8, 201u8, 35u8, 246u8, 39u8, 220u8, 70u8, 119u8, 204u8, 10u8, 45u8, 179u8, 184u8, 206u8, 150u8, 110u8, 15u8, 153u8, 169u8, 119u8, 165u8, 52u8, 73u8, 231u8, 220u8, ], [ 18u8, 166u8, 146u8, 255u8, 62u8, 23u8, 253u8, 73u8, 209u8, 80u8, 50u8, 212u8, 114u8, 157u8, 51u8, 245u8, 41u8, 59u8, 161u8, 135u8, 230u8, 22u8, 66u8, 220u8, 151u8, 170u8, 135u8, 160u8, 92u8, 174u8, 187u8, 123u8, 34u8, 3u8, 215u8, 239u8, 150u8, 249u8, 234u8, 232u8, 117u8, 52u8, 163u8, 160u8, 200u8, 204u8, 117u8, 11u8, 13u8, 136u8, 69u8, 239u8, 136u8, 150u8, 213u8, 32u8, 185u8, 143u8, 214u8, 166u8, 154u8, 150u8, 157u8, 186u8, ], [ 3u8, 28u8, 49u8, 50u8, 62u8, 38u8, 35u8, 119u8, 183u8, 183u8, 80u8, 220u8, 24u8, 140u8, 221u8, 119u8, 243u8, 37u8, 31u8, 169u8, 215u8, 81u8, 19u8, 99u8, 126u8, 242u8, 178u8, 48u8, 50u8, 204u8, 98u8, 3u8, 30u8, 175u8, 132u8, 121u8, 60u8, 229u8, 96u8, 51u8, 228u8, 2u8, 115u8, 40u8, 202u8, 127u8, 78u8, 203u8, 5u8, 248u8, 156u8, 212u8, 199u8, 18u8, 241u8, 97u8, 12u8, 25u8, 88u8, 62u8, 179u8, 207u8, 190u8, 113u8, ], [ 17u8, 25u8, 73u8, 73u8, 212u8, 80u8, 200u8, 153u8, 13u8, 124u8, 184u8, 59u8, 140u8, 220u8, 220u8, 76u8, 150u8, 203u8, 7u8, 116u8, 50u8, 251u8, 180u8, 16u8, 164u8, 224u8, 235u8, 244u8, 48u8, 235u8, 2u8, 2u8, 27u8, 50u8, 186u8, 66u8, 160u8, 116u8, 236u8, 58u8, 244u8, 57u8, 27u8, 177u8, 3u8, 94u8, 166u8, 238u8, 11u8, 37u8, 131u8, 218u8, 167u8, 247u8, 182u8, 117u8, 9u8, 186u8, 94u8, 214u8, 233u8, 19u8, 147u8, 130u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_4_2.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 12usize, vk_alpha_g1: [ 46u8, 167u8, 147u8, 13u8, 86u8, 190u8, 253u8, 18u8, 82u8, 63u8, 56u8, 133u8, 115u8, 222u8, 233u8, 131u8, 123u8, 74u8, 33u8, 88u8, 79u8, 168u8, 167u8, 53u8, 194u8, 211u8, 65u8, 79u8, 94u8, 153u8, 233u8, 236u8, 25u8, 101u8, 78u8, 66u8, 226u8, 82u8, 177u8, 133u8, 133u8, 48u8, 98u8, 44u8, 54u8, 235u8, 176u8, 14u8, 210u8, 134u8, 21u8, 71u8, 232u8, 48u8, 224u8, 24u8, 146u8, 3u8, 234u8, 162u8, 179u8, 225u8, 60u8, 79u8, ], vk_beta_g2: [ 11u8, 142u8, 202u8, 7u8, 96u8, 27u8, 57u8, 8u8, 171u8, 63u8, 128u8, 118u8, 12u8, 108u8, 190u8, 65u8, 58u8, 179u8, 165u8, 83u8, 12u8, 81u8, 29u8, 80u8, 88u8, 35u8, 17u8, 229u8, 4u8, 128u8, 168u8, 164u8, 19u8, 234u8, 81u8, 202u8, 85u8, 248u8, 98u8, 138u8, 206u8, 38u8, 253u8, 151u8, 231u8, 242u8, 18u8, 192u8, 103u8, 213u8, 45u8, 14u8, 154u8, 190u8, 151u8, 76u8, 180u8, 144u8, 1u8, 156u8, 212u8, 195u8, 82u8, 135u8, 18u8, 142u8, 73u8, 168u8, 13u8, 219u8, 214u8, 130u8, 237u8, 44u8, 209u8, 42u8, 168u8, 252u8, 231u8, 168u8, 159u8, 176u8, 44u8, 16u8, 205u8, 175u8, 56u8, 167u8, 97u8, 186u8, 28u8, 202u8, 150u8, 201u8, 14u8, 221u8, 45u8, 93u8, 138u8, 221u8, 10u8, 108u8, 97u8, 1u8, 160u8, 247u8, 237u8, 206u8, 77u8, 88u8, 87u8, 231u8, 212u8, 64u8, 62u8, 181u8, 225u8, 68u8, 114u8, 219u8, 171u8, 141u8, 115u8, 223u8, 154u8, 125u8, 200u8, 255u8, ], vk_gamme_g2: [ 8u8, 123u8, 219u8, 205u8, 144u8, 129u8, 180u8, 246u8, 204u8, 170u8, 224u8, 209u8, 24u8, 222u8, 64u8, 234u8, 121u8, 85u8, 52u8, 141u8, 84u8, 119u8, 36u8, 104u8, 203u8, 17u8, 157u8, 2u8, 36u8, 94u8, 109u8, 126u8, 5u8, 227u8, 69u8, 116u8, 53u8, 69u8, 154u8, 176u8, 161u8, 10u8, 67u8, 35u8, 164u8, 141u8, 108u8, 236u8, 210u8, 74u8, 179u8, 140u8, 235u8, 96u8, 211u8, 154u8, 69u8, 117u8, 244u8, 182u8, 165u8, 77u8, 43u8, 70u8, 24u8, 171u8, 63u8, 233u8, 1u8, 18u8, 153u8, 163u8, 169u8, 198u8, 36u8, 80u8, 46u8, 158u8, 241u8, 226u8, 154u8, 234u8, 200u8, 68u8, 214u8, 106u8, 74u8, 183u8, 31u8, 213u8, 172u8, 244u8, 181u8, 9u8, 135u8, 197u8, 9u8, 83u8, 61u8, 157u8, 68u8, 194u8, 61u8, 227u8, 5u8, 208u8, 76u8, 32u8, 54u8, 225u8, 248u8, 154u8, 11u8, 147u8, 7u8, 252u8, 143u8, 183u8, 33u8, 59u8, 78u8, 4u8, 39u8, 24u8, 21u8, 168u8, 112u8, 246u8, ], vk_delta_g2: [ 34u8, 43u8, 0u8, 89u8, 137u8, 232u8, 128u8, 36u8, 158u8, 80u8, 138u8, 190u8, 119u8, 147u8, 50u8, 179u8, 76u8, 27u8, 24u8, 169u8, 180u8, 9u8, 73u8, 159u8, 129u8, 43u8, 102u8, 165u8, 240u8, 190u8, 107u8, 207u8, 35u8, 36u8, 240u8, 251u8, 252u8, 44u8, 223u8, 157u8, 13u8, 248u8, 83u8, 130u8, 200u8, 49u8, 131u8, 218u8, 109u8, 114u8, 126u8, 155u8, 191u8, 156u8, 132u8, 207u8, 73u8, 139u8, 240u8, 131u8, 16u8, 243u8, 111u8, 77u8, 39u8, 171u8, 146u8, 160u8, 94u8, 97u8, 139u8, 35u8, 92u8, 175u8, 236u8, 148u8, 232u8, 233u8, 75u8, 188u8, 83u8, 69u8, 178u8, 181u8, 250u8, 1u8, 46u8, 53u8, 92u8, 144u8, 246u8, 52u8, 135u8, 199u8, 229u8, 187u8, 26u8, 200u8, 89u8, 228u8, 90u8, 237u8, 153u8, 242u8, 29u8, 14u8, 253u8, 196u8, 166u8, 159u8, 206u8, 146u8, 231u8, 91u8, 107u8, 251u8, 236u8, 81u8, 233u8, 48u8, 242u8, 22u8, 224u8, 215u8, 56u8, 165u8, 87u8, 41u8, ], vk_ic: &[ [ 39u8, 105u8, 235u8, 75u8, 16u8, 159u8, 82u8, 149u8, 157u8, 36u8, 145u8, 83u8, 210u8, 136u8, 167u8, 6u8, 12u8, 21u8, 113u8, 123u8, 12u8, 37u8, 36u8, 76u8, 93u8, 172u8, 150u8, 26u8, 28u8, 38u8, 173u8, 209u8, 18u8, 145u8, 195u8, 106u8, 177u8, 161u8, 233u8, 76u8, 70u8, 124u8, 100u8, 72u8, 232u8, 150u8, 252u8, 16u8, 45u8, 217u8, 90u8, 133u8, 219u8, 27u8, 59u8, 71u8, 151u8, 107u8, 77u8, 7u8, 199u8, 183u8, 88u8, 26u8, ], [ 41u8, 154u8, 157u8, 212u8, 67u8, 76u8, 167u8, 42u8, 155u8, 157u8, 150u8, 162u8, 8u8, 56u8, 76u8, 29u8, 70u8, 160u8, 213u8, 80u8, 64u8, 41u8, 165u8, 167u8, 207u8, 219u8, 66u8, 127u8, 211u8, 92u8, 208u8, 112u8, 12u8, 136u8, 133u8, 48u8, 56u8, 40u8, 43u8, 78u8, 158u8, 26u8, 31u8, 17u8, 139u8, 17u8, 248u8, 94u8, 69u8, 237u8, 47u8, 90u8, 73u8, 184u8, 85u8, 144u8, 176u8, 156u8, 123u8, 158u8, 176u8, 19u8, 92u8, 86u8, ], [ 5u8, 240u8, 14u8, 173u8, 44u8, 114u8, 82u8, 100u8, 152u8, 24u8, 104u8, 156u8, 77u8, 160u8, 251u8, 143u8, 83u8, 80u8, 89u8, 179u8, 179u8, 192u8, 41u8, 140u8, 152u8, 69u8, 202u8, 136u8, 153u8, 234u8, 55u8, 108u8, 6u8, 150u8, 35u8, 143u8, 141u8, 250u8, 71u8, 55u8, 43u8, 211u8, 33u8, 76u8, 55u8, 108u8, 189u8, 39u8, 62u8, 210u8, 35u8, 245u8, 148u8, 115u8, 15u8, 231u8, 32u8, 101u8, 149u8, 80u8, 45u8, 208u8, 246u8, 126u8, ], [ 1u8, 75u8, 68u8, 37u8, 60u8, 231u8, 235u8, 131u8, 160u8, 46u8, 49u8, 205u8, 32u8, 210u8, 42u8, 26u8, 227u8, 183u8, 80u8, 162u8, 61u8, 104u8, 74u8, 217u8, 36u8, 208u8, 88u8, 157u8, 29u8, 96u8, 181u8, 93u8, 24u8, 249u8, 0u8, 3u8, 236u8, 41u8, 97u8, 201u8, 86u8, 165u8, 211u8, 7u8, 66u8, 83u8, 90u8, 93u8, 141u8, 111u8, 131u8, 160u8, 111u8, 26u8, 72u8, 10u8, 166u8, 198u8, 107u8, 197u8, 4u8, 24u8, 39u8, 158u8, ], [ 24u8, 161u8, 41u8, 115u8, 48u8, 119u8, 182u8, 133u8, 54u8, 212u8, 112u8, 75u8, 119u8, 208u8, 13u8, 131u8, 74u8, 255u8, 253u8, 230u8, 208u8, 224u8, 111u8, 219u8, 226u8, 101u8, 119u8, 238u8, 147u8, 114u8, 185u8, 162u8, 8u8, 25u8, 250u8, 30u8, 45u8, 4u8, 11u8, 8u8, 190u8, 216u8, 59u8, 51u8, 160u8, 73u8, 3u8, 32u8, 23u8, 248u8, 100u8, 166u8, 201u8, 179u8, 145u8, 152u8, 12u8, 194u8, 17u8, 185u8, 231u8, 87u8, 197u8, 46u8, ], [ 14u8, 103u8, 139u8, 148u8, 85u8, 68u8, 46u8, 229u8, 52u8, 42u8, 40u8, 158u8, 247u8, 6u8, 122u8, 123u8, 213u8, 13u8, 137u8, 160u8, 233u8, 218u8, 229u8, 146u8, 246u8, 83u8, 108u8, 162u8, 249u8, 85u8, 226u8, 160u8, 12u8, 245u8, 51u8, 247u8, 2u8, 242u8, 58u8, 115u8, 155u8, 96u8, 170u8, 99u8, 139u8, 238u8, 5u8, 86u8, 1u8, 17u8, 128u8, 89u8, 242u8, 120u8, 32u8, 82u8, 55u8, 14u8, 10u8, 43u8, 210u8, 255u8, 19u8, 73u8, ], [ 18u8, 164u8, 196u8, 50u8, 88u8, 211u8, 74u8, 193u8, 59u8, 94u8, 85u8, 20u8, 98u8, 189u8, 171u8, 61u8, 188u8, 131u8, 37u8, 50u8, 64u8, 14u8, 73u8, 176u8, 128u8, 94u8, 117u8, 37u8, 208u8, 184u8, 36u8, 119u8, 2u8, 197u8, 46u8, 56u8, 247u8, 108u8, 86u8, 15u8, 207u8, 142u8, 156u8, 21u8, 9u8, 33u8, 135u8, 154u8, 236u8, 248u8, 118u8, 157u8, 14u8, 204u8, 211u8, 187u8, 25u8, 83u8, 210u8, 32u8, 207u8, 188u8, 9u8, 155u8, ], [ 35u8, 37u8, 0u8, 42u8, 82u8, 40u8, 61u8, 26u8, 172u8, 201u8, 132u8, 106u8, 121u8, 177u8, 75u8, 78u8, 13u8, 105u8, 178u8, 163u8, 12u8, 220u8, 213u8, 165u8, 15u8, 187u8, 70u8, 37u8, 36u8, 2u8, 106u8, 168u8, 12u8, 154u8, 245u8, 7u8, 226u8, 76u8, 207u8, 89u8, 91u8, 248u8, 193u8, 253u8, 199u8, 184u8, 80u8, 200u8, 196u8, 165u8, 251u8, 172u8, 211u8, 132u8, 163u8, 10u8, 143u8, 198u8, 131u8, 29u8, 26u8, 65u8, 192u8, 222u8, ], [ 17u8, 59u8, 37u8, 235u8, 232u8, 241u8, 125u8, 33u8, 167u8, 210u8, 70u8, 247u8, 46u8, 9u8, 27u8, 77u8, 57u8, 255u8, 215u8, 82u8, 59u8, 143u8, 192u8, 110u8, 206u8, 83u8, 190u8, 41u8, 187u8, 120u8, 37u8, 14u8, 2u8, 237u8, 52u8, 120u8, 200u8, 70u8, 75u8, 250u8, 195u8, 131u8, 30u8, 85u8, 86u8, 106u8, 63u8, 218u8, 247u8, 113u8, 58u8, 225u8, 162u8, 18u8, 92u8, 76u8, 1u8, 171u8, 48u8, 24u8, 53u8, 215u8, 137u8, 63u8, ], [ 41u8, 93u8, 204u8, 160u8, 109u8, 250u8, 100u8, 216u8, 238u8, 240u8, 93u8, 170u8, 84u8, 118u8, 3u8, 197u8, 43u8, 91u8, 229u8, 220u8, 68u8, 180u8, 193u8, 179u8, 202u8, 169u8, 39u8, 61u8, 130u8, 102u8, 5u8, 5u8, 7u8, 20u8, 184u8, 185u8, 133u8, 215u8, 244u8, 149u8, 119u8, 245u8, 172u8, 211u8, 68u8, 63u8, 29u8, 21u8, 65u8, 127u8, 163u8, 189u8, 12u8, 224u8, 179u8, 165u8, 161u8, 143u8, 71u8, 158u8, 81u8, 188u8, 197u8, 191u8, ], [ 30u8, 227u8, 148u8, 125u8, 167u8, 119u8, 126u8, 183u8, 39u8, 182u8, 158u8, 4u8, 55u8, 84u8, 178u8, 175u8, 162u8, 199u8, 50u8, 36u8, 191u8, 146u8, 84u8, 240u8, 225u8, 95u8, 243u8, 114u8, 191u8, 245u8, 61u8, 52u8, 31u8, 125u8, 108u8, 21u8, 66u8, 178u8, 252u8, 159u8, 229u8, 238u8, 57u8, 15u8, 36u8, 144u8, 0u8, 156u8, 105u8, 50u8, 53u8, 217u8, 86u8, 144u8, 209u8, 54u8, 33u8, 209u8, 89u8, 206u8, 160u8, 214u8, 107u8, 88u8, ], [ 25u8, 85u8, 187u8, 137u8, 31u8, 217u8, 80u8, 96u8, 206u8, 53u8, 56u8, 57u8, 254u8, 228u8, 178u8, 36u8, 91u8, 98u8, 187u8, 66u8, 211u8, 46u8, 186u8, 127u8, 6u8, 151u8, 7u8, 73u8, 180u8, 73u8, 23u8, 15u8, 39u8, 218u8, 200u8, 86u8, 120u8, 227u8, 197u8, 143u8, 49u8, 83u8, 20u8, 223u8, 145u8, 119u8, 40u8, 114u8, 17u8, 96u8, 205u8, 18u8, 210u8, 178u8, 118u8, 39u8, 65u8, 150u8, 48u8, 253u8, 18u8, 135u8, 252u8, 201u8, ], [ 38u8, 139u8, 48u8, 83u8, 115u8, 250u8, 22u8, 30u8, 228u8, 248u8, 212u8, 49u8, 92u8, 52u8, 120u8, 143u8, 201u8, 145u8, 201u8, 211u8, 226u8, 209u8, 4u8, 177u8, 249u8, 117u8, 89u8, 171u8, 218u8, 244u8, 158u8, 135u8, 6u8, 71u8, 113u8, 134u8, 246u8, 56u8, 182u8, 38u8, 240u8, 187u8, 36u8, 158u8, 167u8, 246u8, 120u8, 203u8, 111u8, 192u8, 178u8, 188u8, 79u8, 74u8, 68u8, 39u8, 62u8, 134u8, 206u8, 149u8, 215u8, 251u8, 113u8, 60u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_subtrees_26_100.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 13u8, 125u8, 112u8, 105u8, 97u8, 112u8, 181u8, 170u8, 70u8, 59u8, 221u8, 160u8, 141u8, 124u8, 68u8, 23u8, 228u8, 115u8, 84u8, 221u8, 102u8, 61u8, 216u8, 185u8, 166u8, 192u8, 186u8, 199u8, 102u8, 108u8, 153u8, 63u8, 23u8, 120u8, 6u8, 46u8, 130u8, 104u8, 24u8, 28u8, 87u8, 53u8, 116u8, 112u8, 39u8, 154u8, 222u8, 221u8, 43u8, 62u8, 171u8, 35u8, 55u8, 137u8, 30u8, 17u8, 165u8, 190u8, 130u8, 222u8, 21u8, 243u8, 98u8, 147u8, ], vk_beta_g2: [ 34u8, 9u8, 159u8, 38u8, 22u8, 9u8, 183u8, 56u8, 159u8, 17u8, 6u8, 50u8, 72u8, 53u8, 103u8, 21u8, 6u8, 31u8, 104u8, 5u8, 203u8, 134u8, 71u8, 231u8, 215u8, 222u8, 46u8, 73u8, 76u8, 250u8, 108u8, 84u8, 26u8, 80u8, 5u8, 186u8, 182u8, 170u8, 92u8, 132u8, 13u8, 175u8, 32u8, 105u8, 93u8, 212u8, 236u8, 0u8, 186u8, 8u8, 8u8, 82u8, 161u8, 19u8, 249u8, 243u8, 199u8, 61u8, 129u8, 16u8, 211u8, 247u8, 173u8, 78u8, 12u8, 74u8, 24u8, 178u8, 233u8, 217u8, 92u8, 79u8, 223u8, 61u8, 61u8, 25u8, 107u8, 21u8, 120u8, 18u8, 134u8, 198u8, 122u8, 151u8, 32u8, 152u8, 107u8, 169u8, 39u8, 222u8, 252u8, 1u8, 99u8, 63u8, 171u8, 17u8, 2u8, 143u8, 195u8, 170u8, 158u8, 89u8, 67u8, 112u8, 223u8, 23u8, 131u8, 219u8, 38u8, 31u8, 173u8, 63u8, 226u8, 203u8, 185u8, 136u8, 44u8, 58u8, 7u8, 1u8, 152u8, 208u8, 198u8, 198u8, 34u8, 177u8, 88u8, 57u8, ], vk_gamme_g2: [ 38u8, 150u8, 47u8, 56u8, 44u8, 141u8, 12u8, 144u8, 221u8, 115u8, 88u8, 57u8, 231u8, 230u8, 112u8, 165u8, 216u8, 12u8, 136u8, 153u8, 123u8, 35u8, 54u8, 95u8, 82u8, 27u8, 185u8, 115u8, 236u8, 156u8, 139u8, 150u8, 20u8, 187u8, 161u8, 156u8, 49u8, 146u8, 14u8, 48u8, 143u8, 131u8, 109u8, 98u8, 53u8, 204u8, 94u8, 54u8, 215u8, 178u8, 42u8, 146u8, 125u8, 62u8, 65u8, 11u8, 159u8, 30u8, 54u8, 95u8, 42u8, 56u8, 175u8, 154u8, 48u8, 75u8, 8u8, 88u8, 113u8, 203u8, 185u8, 122u8, 98u8, 197u8, 153u8, 245u8, 12u8, 154u8, 167u8, 68u8, 155u8, 191u8, 42u8, 81u8, 87u8, 44u8, 173u8, 81u8, 160u8, 81u8, 219u8, 95u8, 85u8, 85u8, 234u8, 66u8, 29u8, 74u8, 203u8, 14u8, 250u8, 222u8, 61u8, 209u8, 243u8, 238u8, 54u8, 235u8, 107u8, 139u8, 158u8, 204u8, 75u8, 199u8, 45u8, 76u8, 212u8, 253u8, 179u8, 19u8, 146u8, 202u8, 93u8, 39u8, 55u8, 222u8, 137u8, 229u8, ], vk_delta_g2: [ 6u8, 206u8, 171u8, 251u8, 197u8, 122u8, 91u8, 24u8, 124u8, 47u8, 90u8, 68u8, 246u8, 108u8, 120u8, 41u8, 143u8, 7u8, 144u8, 146u8, 158u8, 119u8, 116u8, 44u8, 213u8, 149u8, 178u8, 51u8, 10u8, 152u8, 56u8, 180u8, 19u8, 251u8, 130u8, 110u8, 137u8, 94u8, 15u8, 65u8, 181u8, 192u8, 124u8, 250u8, 94u8, 132u8, 162u8, 212u8, 93u8, 188u8, 215u8, 62u8, 254u8, 177u8, 252u8, 174u8, 196u8, 145u8, 183u8, 222u8, 209u8, 34u8, 138u8, 249u8, 2u8, 244u8, 134u8, 224u8, 52u8, 234u8, 71u8, 5u8, 27u8, 145u8, 101u8, 189u8, 56u8, 162u8, 211u8, 135u8, 158u8, 53u8, 81u8, 122u8, 109u8, 182u8, 105u8, 101u8, 77u8, 58u8, 191u8, 68u8, 112u8, 172u8, 135u8, 93u8, 12u8, 61u8, 90u8, 137u8, 31u8, 149u8, 63u8, 125u8, 60u8, 179u8, 216u8, 237u8, 103u8, 252u8, 156u8, 234u8, 196u8, 209u8, 88u8, 232u8, 231u8, 133u8, 61u8, 95u8, 105u8, 243u8, 103u8, 238u8, 74u8, 91u8, 23u8, 182u8, ], vk_ic: &[ [ 30u8, 212u8, 253u8, 203u8, 57u8, 27u8, 39u8, 210u8, 97u8, 148u8, 225u8, 47u8, 125u8, 55u8, 214u8, 90u8, 246u8, 43u8, 246u8, 13u8, 5u8, 50u8, 221u8, 149u8, 150u8, 247u8, 26u8, 64u8, 3u8, 46u8, 69u8, 40u8, 1u8, 41u8, 90u8, 18u8, 106u8, 17u8, 228u8, 106u8, 219u8, 255u8, 1u8, 76u8, 114u8, 146u8, 217u8, 13u8, 226u8, 195u8, 137u8, 33u8, 249u8, 125u8, 187u8, 218u8, 246u8, 182u8, 71u8, 70u8, 250u8, 126u8, 64u8, 191u8, ], [ 15u8, 7u8, 46u8, 229u8, 197u8, 252u8, 32u8, 212u8, 99u8, 80u8, 228u8, 58u8, 36u8, 12u8, 183u8, 124u8, 114u8, 173u8, 230u8, 75u8, 220u8, 237u8, 216u8, 235u8, 190u8, 47u8, 7u8, 42u8, 235u8, 155u8, 22u8, 78u8, 10u8, 89u8, 209u8, 250u8, 222u8, 191u8, 236u8, 144u8, 169u8, 210u8, 199u8, 159u8, 252u8, 39u8, 59u8, 165u8, 191u8, 233u8, 29u8, 158u8, 70u8, 170u8, 235u8, 177u8, 147u8, 113u8, 167u8, 240u8, 248u8, 81u8, 11u8, 206u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/non_inclusion_26_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 2usize, vk_alpha_g1: [ 42u8, 175u8, 167u8, 170u8, 106u8, 79u8, 89u8, 23u8, 163u8, 201u8, 208u8, 224u8, 240u8, 31u8, 127u8, 123u8, 79u8, 158u8, 6u8, 131u8, 203u8, 166u8, 103u8, 145u8, 185u8, 161u8, 249u8, 178u8, 83u8, 236u8, 241u8, 103u8, 45u8, 250u8, 73u8, 207u8, 221u8, 22u8, 43u8, 76u8, 144u8, 204u8, 230u8, 63u8, 48u8, 21u8, 253u8, 77u8, 127u8, 158u8, 118u8, 4u8, 183u8, 114u8, 135u8, 197u8, 20u8, 203u8, 25u8, 127u8, 183u8, 207u8, 208u8, 204u8, ], vk_beta_g2: [ 23u8, 213u8, 194u8, 106u8, 33u8, 93u8, 252u8, 10u8, 30u8, 225u8, 191u8, 247u8, 194u8, 79u8, 66u8, 237u8, 0u8, 112u8, 60u8, 94u8, 47u8, 10u8, 161u8, 127u8, 213u8, 112u8, 51u8, 209u8, 201u8, 9u8, 171u8, 160u8, 23u8, 180u8, 144u8, 2u8, 245u8, 73u8, 165u8, 131u8, 199u8, 13u8, 184u8, 186u8, 180u8, 24u8, 41u8, 238u8, 219u8, 118u8, 169u8, 25u8, 89u8, 225u8, 131u8, 252u8, 207u8, 243u8, 75u8, 241u8, 72u8, 179u8, 45u8, 179u8, 34u8, 129u8, 180u8, 149u8, 50u8, 69u8, 215u8, 203u8, 231u8, 18u8, 225u8, 122u8, 209u8, 53u8, 202u8, 218u8, 22u8, 167u8, 254u8, 24u8, 182u8, 63u8, 173u8, 47u8, 231u8, 163u8, 61u8, 26u8, 202u8, 191u8, 19u8, 188u8, 11u8, 226u8, 146u8, 163u8, 107u8, 104u8, 217u8, 138u8, 196u8, 160u8, 202u8, 61u8, 220u8, 206u8, 14u8, 38u8, 38u8, 48u8, 212u8, 91u8, 85u8, 29u8, 7u8, 35u8, 136u8, 186u8, 187u8, 242u8, 72u8, 202u8, 89u8, 69u8, ], vk_gamme_g2: [ 18u8, 105u8, 145u8, 176u8, 242u8, 190u8, 135u8, 140u8, 233u8, 52u8, 41u8, 82u8, 170u8, 191u8, 45u8, 199u8, 70u8, 133u8, 208u8, 62u8, 141u8, 232u8, 152u8, 10u8, 28u8, 95u8, 194u8, 106u8, 242u8, 150u8, 142u8, 161u8, 36u8, 71u8, 159u8, 45u8, 31u8, 96u8, 113u8, 247u8, 227u8, 79u8, 254u8, 47u8, 125u8, 210u8, 150u8, 50u8, 190u8, 91u8, 23u8, 173u8, 37u8, 38u8, 15u8, 90u8, 127u8, 127u8, 129u8, 105u8, 22u8, 64u8, 62u8, 155u8, 26u8, 156u8, 156u8, 40u8, 227u8, 156u8, 208u8, 218u8, 193u8, 220u8, 42u8, 1u8, 28u8, 110u8, 96u8, 220u8, 43u8, 48u8, 36u8, 199u8, 72u8, 224u8, 24u8, 112u8, 64u8, 117u8, 89u8, 247u8, 13u8, 38u8, 247u8, 166u8, 28u8, 246u8, 147u8, 251u8, 70u8, 18u8, 238u8, 205u8, 208u8, 147u8, 180u8, 112u8, 12u8, 59u8, 5u8, 88u8, 140u8, 235u8, 119u8, 178u8, 143u8, 249u8, 113u8, 173u8, 81u8, 48u8, 143u8, 110u8, 96u8, 97u8, 222u8, 236u8, ], vk_delta_g2: [ 6u8, 70u8, 227u8, 177u8, 17u8, 43u8, 23u8, 229u8, 252u8, 150u8, 226u8, 56u8, 82u8, 98u8, 130u8, 113u8, 169u8, 244u8, 193u8, 145u8, 78u8, 251u8, 200u8, 106u8, 139u8, 13u8, 85u8, 50u8, 204u8, 214u8, 188u8, 30u8, 33u8, 133u8, 58u8, 61u8, 219u8, 6u8, 207u8, 197u8, 229u8, 124u8, 225u8, 138u8, 144u8, 224u8, 135u8, 2u8, 174u8, 139u8, 214u8, 56u8, 96u8, 183u8, 228u8, 154u8, 137u8, 17u8, 163u8, 216u8, 212u8, 199u8, 29u8, 49u8, 32u8, 73u8, 235u8, 151u8, 143u8, 154u8, 127u8, 71u8, 163u8, 214u8, 69u8, 53u8, 72u8, 235u8, 88u8, 166u8, 12u8, 196u8, 147u8, 22u8, 17u8, 236u8, 144u8, 187u8, 72u8, 45u8, 29u8, 24u8, 114u8, 144u8, 147u8, 252u8, 5u8, 168u8, 220u8, 68u8, 215u8, 193u8, 32u8, 118u8, 114u8, 142u8, 217u8, 3u8, 151u8, 216u8, 119u8, 135u8, 90u8, 69u8, 177u8, 215u8, 176u8, 55u8, 245u8, 38u8, 241u8, 97u8, 18u8, 193u8, 11u8, 55u8, 138u8, 96u8, ], vk_ic: &[ [ 26u8, 115u8, 63u8, 54u8, 36u8, 4u8, 8u8, 60u8, 3u8, 27u8, 136u8, 163u8, 230u8, 185u8, 88u8, 89u8, 172u8, 246u8, 226u8, 154u8, 234u8, 17u8, 132u8, 22u8, 56u8, 52u8, 141u8, 35u8, 69u8, 174u8, 145u8, 76u8, 11u8, 127u8, 202u8, 130u8, 163u8, 97u8, 227u8, 180u8, 16u8, 149u8, 218u8, 2u8, 156u8, 24u8, 83u8, 225u8, 252u8, 246u8, 161u8, 244u8, 129u8, 95u8, 143u8, 152u8, 144u8, 228u8, 131u8, 29u8, 155u8, 55u8, 113u8, 74u8, ], [ 24u8, 178u8, 143u8, 230u8, 40u8, 24u8, 59u8, 47u8, 201u8, 127u8, 37u8, 249u8, 50u8, 12u8, 121u8, 61u8, 236u8, 60u8, 30u8, 3u8, 195u8, 178u8, 158u8, 73u8, 88u8, 178u8, 157u8, 214u8, 31u8, 59u8, 172u8, 213u8, 18u8, 143u8, 11u8, 105u8, 102u8, 115u8, 186u8, 128u8, 181u8, 230u8, 152u8, 32u8, 133u8, 27u8, 195u8, 65u8, 106u8, 138u8, 22u8, 128u8, 236u8, 9u8, 141u8, 80u8, 22u8, 175u8, 146u8, 166u8, 20u8, 148u8, 152u8, 157u8, ], [ 38u8, 182u8, 177u8, 20u8, 136u8, 171u8, 239u8, 159u8, 8u8, 164u8, 145u8, 140u8, 254u8, 181u8, 125u8, 190u8, 229u8, 204u8, 47u8, 47u8, 109u8, 43u8, 43u8, 121u8, 156u8, 122u8, 160u8, 254u8, 129u8, 8u8, 21u8, 116u8, 4u8, 82u8, 72u8, 155u8, 94u8, 126u8, 41u8, 153u8, 147u8, 14u8, 145u8, 129u8, 87u8, 75u8, 89u8, 202u8, 13u8, 68u8, 98u8, 219u8, 184u8, 192u8, 58u8, 183u8, 252u8, 212u8, 92u8, 33u8, 152u8, 135u8, 96u8, 153u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/update_26_100.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 31u8, 23u8, 168u8, 177u8, 63u8, 206u8, 117u8, 49u8, 144u8, 106u8, 76u8, 11u8, 187u8, 122u8, 188u8, 158u8, 210u8, 132u8, 141u8, 37u8, 53u8, 172u8, 112u8, 111u8, 115u8, 53u8, 112u8, 6u8, 227u8, 121u8, 23u8, 156u8, 14u8, 116u8, 159u8, 132u8, 134u8, 3u8, 89u8, 156u8, 171u8, 180u8, 71u8, 0u8, 68u8, 192u8, 12u8, 129u8, 198u8, 219u8, 171u8, 45u8, 163u8, 148u8, 146u8, 96u8, 39u8, 157u8, 172u8, 17u8, 57u8, 190u8, 168u8, 48u8, ], vk_beta_g2: [ 33u8, 99u8, 26u8, 162u8, 20u8, 175u8, 46u8, 195u8, 65u8, 230u8, 34u8, 165u8, 84u8, 93u8, 31u8, 48u8, 221u8, 139u8, 14u8, 66u8, 237u8, 225u8, 138u8, 26u8, 7u8, 44u8, 255u8, 80u8, 7u8, 175u8, 113u8, 183u8, 20u8, 188u8, 232u8, 10u8, 253u8, 146u8, 240u8, 243u8, 214u8, 186u8, 248u8, 11u8, 219u8, 161u8, 105u8, 55u8, 6u8, 43u8, 117u8, 143u8, 229u8, 24u8, 134u8, 194u8, 14u8, 64u8, 130u8, 204u8, 4u8, 80u8, 210u8, 117u8, 38u8, 228u8, 141u8, 205u8, 114u8, 66u8, 108u8, 194u8, 177u8, 50u8, 231u8, 235u8, 237u8, 3u8, 199u8, 189u8, 58u8, 14u8, 21u8, 127u8, 15u8, 71u8, 6u8, 98u8, 95u8, 212u8, 87u8, 237u8, 106u8, 22u8, 161u8, 237u8, 13u8, 11u8, 90u8, 202u8, 6u8, 13u8, 135u8, 218u8, 34u8, 20u8, 240u8, 230u8, 174u8, 121u8, 198u8, 4u8, 122u8, 136u8, 112u8, 182u8, 27u8, 69u8, 54u8, 65u8, 169u8, 44u8, 52u8, 156u8, 182u8, 100u8, 113u8, 171u8, ], vk_gamme_g2: [ 47u8, 47u8, 101u8, 131u8, 248u8, 162u8, 254u8, 85u8, 138u8, 191u8, 109u8, 209u8, 9u8, 56u8, 158u8, 127u8, 105u8, 243u8, 226u8, 47u8, 0u8, 26u8, 100u8, 162u8, 232u8, 25u8, 7u8, 122u8, 2u8, 122u8, 125u8, 224u8, 28u8, 115u8, 210u8, 6u8, 194u8, 65u8, 57u8, 231u8, 71u8, 176u8, 233u8, 248u8, 82u8, 85u8, 217u8, 87u8, 10u8, 204u8, 175u8, 230u8, 192u8, 150u8, 36u8, 26u8, 46u8, 89u8, 116u8, 126u8, 17u8, 242u8, 155u8, 127u8, 24u8, 134u8, 226u8, 12u8, 123u8, 136u8, 236u8, 184u8, 111u8, 242u8, 97u8, 26u8, 194u8, 236u8, 108u8, 157u8, 102u8, 120u8, 15u8, 181u8, 73u8, 220u8, 181u8, 18u8, 205u8, 174u8, 62u8, 40u8, 95u8, 46u8, 215u8, 141u8, 31u8, 6u8, 111u8, 163u8, 22u8, 169u8, 97u8, 125u8, 30u8, 141u8, 101u8, 206u8, 157u8, 38u8, 169u8, 19u8, 169u8, 62u8, 11u8, 142u8, 148u8, 185u8, 31u8, 103u8, 218u8, 226u8, 191u8, 72u8, 156u8, 205u8, 212u8, 254u8, ], vk_delta_g2: [ 17u8, 219u8, 206u8, 202u8, 112u8, 22u8, 77u8, 160u8, 74u8, 224u8, 213u8, 169u8, 200u8, 127u8, 87u8, 167u8, 185u8, 248u8, 47u8, 107u8, 8u8, 174u8, 165u8, 219u8, 37u8, 106u8, 50u8, 151u8, 101u8, 38u8, 162u8, 83u8, 45u8, 142u8, 113u8, 200u8, 70u8, 161u8, 244u8, 183u8, 165u8, 44u8, 161u8, 104u8, 121u8, 227u8, 243u8, 202u8, 117u8, 127u8, 90u8, 167u8, 152u8, 141u8, 151u8, 244u8, 2u8, 80u8, 104u8, 100u8, 37u8, 192u8, 2u8, 79u8, 33u8, 60u8, 238u8, 228u8, 235u8, 170u8, 127u8, 115u8, 247u8, 59u8, 63u8, 178u8, 187u8, 7u8, 253u8, 253u8, 233u8, 233u8, 181u8, 233u8, 50u8, 62u8, 126u8, 196u8, 0u8, 32u8, 49u8, 22u8, 32u8, 242u8, 53u8, 24u8, 30u8, 50u8, 169u8, 112u8, 111u8, 166u8, 95u8, 45u8, 133u8, 244u8, 56u8, 155u8, 153u8, 126u8, 91u8, 169u8, 73u8, 12u8, 68u8, 167u8, 240u8, 220u8, 254u8, 250u8, 106u8, 13u8, 23u8, 26u8, 211u8, 225u8, 4u8, 192u8, ], vk_ic: &[ [ 34u8, 255u8, 236u8, 246u8, 107u8, 63u8, 242u8, 248u8, 243u8, 13u8, 252u8, 136u8, 205u8, 220u8, 1u8, 48u8, 98u8, 236u8, 82u8, 146u8, 110u8, 58u8, 163u8, 0u8, 121u8, 54u8, 171u8, 38u8, 85u8, 197u8, 197u8, 54u8, 37u8, 245u8, 222u8, 49u8, 126u8, 242u8, 143u8, 249u8, 148u8, 197u8, 63u8, 8u8, 60u8, 182u8, 24u8, 176u8, 220u8, 31u8, 102u8, 131u8, 19u8, 252u8, 126u8, 195u8, 250u8, 234u8, 65u8, 16u8, 176u8, 186u8, 52u8, 7u8, ], [ 45u8, 231u8, 113u8, 191u8, 144u8, 131u8, 66u8, 18u8, 5u8, 255u8, 148u8, 88u8, 243u8, 42u8, 146u8, 48u8, 230u8, 231u8, 235u8, 187u8, 111u8, 188u8, 85u8, 208u8, 14u8, 157u8, 140u8, 242u8, 91u8, 68u8, 247u8, 153u8, 4u8, 2u8, 20u8, 182u8, 72u8, 85u8, 35u8, 74u8, 200u8, 107u8, 90u8, 163u8, 66u8, 236u8, 174u8, 138u8, 205u8, 128u8, 150u8, 244u8, 238u8, 126u8, 178u8, 241u8, 84u8, 142u8, 29u8, 164u8, 205u8, 238u8, 157u8, 218u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_proofs_26_1000.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 29u8, 50u8, 106u8, 16u8, 161u8, 120u8, 3u8, 219u8, 189u8, 249u8, 158u8, 9u8, 2u8, 98u8, 63u8, 3u8, 113u8, 235u8, 107u8, 152u8, 49u8, 251u8, 163u8, 44u8, 130u8, 23u8, 238u8, 16u8, 100u8, 222u8, 222u8, 52u8, 15u8, 35u8, 203u8, 26u8, 255u8, 240u8, 37u8, 17u8, 144u8, 25u8, 224u8, 176u8, 100u8, 104u8, 62u8, 159u8, 55u8, 221u8, 10u8, 153u8, 122u8, 134u8, 199u8, 129u8, 106u8, 211u8, 232u8, 38u8, 12u8, 103u8, 215u8, 129u8, ], vk_beta_g2: [ 13u8, 169u8, 230u8, 39u8, 203u8, 105u8, 119u8, 151u8, 213u8, 17u8, 133u8, 91u8, 7u8, 92u8, 9u8, 253u8, 4u8, 215u8, 81u8, 97u8, 80u8, 231u8, 77u8, 181u8, 198u8, 46u8, 10u8, 175u8, 154u8, 84u8, 179u8, 98u8, 30u8, 236u8, 134u8, 201u8, 17u8, 190u8, 195u8, 18u8, 148u8, 202u8, 83u8, 86u8, 56u8, 102u8, 227u8, 181u8, 183u8, 95u8, 62u8, 162u8, 205u8, 25u8, 147u8, 140u8, 198u8, 121u8, 243u8, 228u8, 23u8, 235u8, 222u8, 125u8, 0u8, 199u8, 213u8, 158u8, 70u8, 153u8, 165u8, 223u8, 85u8, 87u8, 38u8, 23u8, 208u8, 193u8, 104u8, 37u8, 111u8, 33u8, 204u8, 157u8, 95u8, 58u8, 231u8, 192u8, 41u8, 27u8, 159u8, 194u8, 136u8, 81u8, 26u8, 30u8, 8u8, 17u8, 199u8, 248u8, 109u8, 122u8, 4u8, 38u8, 204u8, 239u8, 240u8, 17u8, 133u8, 7u8, 185u8, 115u8, 193u8, 27u8, 10u8, 57u8, 117u8, 100u8, 165u8, 23u8, 84u8, 208u8, 49u8, 77u8, 189u8, 8u8, 189u8, 153u8, ], vk_gamme_g2: [ 30u8, 52u8, 136u8, 151u8, 80u8, 3u8, 109u8, 219u8, 218u8, 250u8, 41u8, 30u8, 207u8, 153u8, 124u8, 191u8, 189u8, 213u8, 24u8, 133u8, 190u8, 212u8, 147u8, 84u8, 126u8, 116u8, 164u8, 172u8, 213u8, 168u8, 1u8, 124u8, 1u8, 95u8, 115u8, 233u8, 252u8, 140u8, 209u8, 153u8, 188u8, 103u8, 26u8, 161u8, 87u8, 187u8, 91u8, 209u8, 141u8, 120u8, 92u8, 35u8, 20u8, 21u8, 63u8, 67u8, 139u8, 152u8, 13u8, 148u8, 14u8, 242u8, 192u8, 127u8, 29u8, 215u8, 196u8, 107u8, 46u8, 140u8, 204u8, 143u8, 253u8, 176u8, 92u8, 32u8, 80u8, 249u8, 233u8, 52u8, 187u8, 96u8, 78u8, 221u8, 67u8, 119u8, 82u8, 163u8, 73u8, 38u8, 80u8, 211u8, 83u8, 82u8, 8u8, 241u8, 10u8, 175u8, 210u8, 28u8, 204u8, 254u8, 163u8, 24u8, 8u8, 5u8, 110u8, 174u8, 76u8, 171u8, 203u8, 164u8, 159u8, 196u8, 211u8, 154u8, 245u8, 131u8, 136u8, 46u8, 207u8, 7u8, 253u8, 231u8, 225u8, 176u8, 33u8, 42u8, ], vk_delta_g2: [ 17u8, 129u8, 145u8, 253u8, 205u8, 197u8, 38u8, 238u8, 82u8, 174u8, 185u8, 98u8, 230u8, 235u8, 184u8, 33u8, 20u8, 197u8, 228u8, 236u8, 94u8, 13u8, 117u8, 46u8, 156u8, 170u8, 84u8, 129u8, 30u8, 146u8, 34u8, 253u8, 31u8, 67u8, 150u8, 100u8, 104u8, 236u8, 2u8, 174u8, 60u8, 88u8, 169u8, 254u8, 37u8, 225u8, 240u8, 50u8, 168u8, 206u8, 75u8, 177u8, 182u8, 55u8, 7u8, 162u8, 50u8, 2u8, 248u8, 198u8, 11u8, 235u8, 165u8, 65u8, 8u8, 210u8, 129u8, 8u8, 176u8, 100u8, 11u8, 51u8, 0u8, 74u8, 235u8, 164u8, 240u8, 84u8, 27u8, 188u8, 18u8, 29u8, 162u8, 8u8, 176u8, 41u8, 151u8, 31u8, 237u8, 80u8, 37u8, 173u8, 188u8, 13u8, 222u8, 175u8, 16u8, 252u8, 107u8, 42u8, 232u8, 51u8, 158u8, 153u8, 183u8, 162u8, 6u8, 148u8, 229u8, 155u8, 212u8, 109u8, 154u8, 5u8, 170u8, 71u8, 123u8, 110u8, 94u8, 12u8, 180u8, 128u8, 9u8, 255u8, 25u8, 150u8, 187u8, 233u8, ], vk_ic: &[ [ 1u8, 222u8, 3u8, 47u8, 245u8, 90u8, 107u8, 211u8, 60u8, 196u8, 158u8, 38u8, 47u8, 85u8, 38u8, 231u8, 47u8, 155u8, 151u8, 246u8, 20u8, 231u8, 26u8, 242u8, 39u8, 121u8, 78u8, 115u8, 30u8, 34u8, 245u8, 116u8, 32u8, 224u8, 94u8, 112u8, 71u8, 53u8, 166u8, 137u8, 9u8, 40u8, 197u8, 229u8, 240u8, 185u8, 72u8, 168u8, 131u8, 123u8, 102u8, 200u8, 184u8, 67u8, 136u8, 16u8, 49u8, 118u8, 148u8, 175u8, 209u8, 44u8, 120u8, 249u8, ], [ 1u8, 203u8, 187u8, 202u8, 212u8, 167u8, 10u8, 26u8, 255u8, 166u8, 174u8, 129u8, 77u8, 158u8, 96u8, 231u8, 252u8, 125u8, 37u8, 117u8, 138u8, 56u8, 252u8, 27u8, 138u8, 156u8, 94u8, 9u8, 81u8, 222u8, 138u8, 253u8, 11u8, 159u8, 142u8, 229u8, 234u8, 245u8, 214u8, 99u8, 119u8, 42u8, 249u8, 28u8, 204u8, 127u8, 73u8, 93u8, 195u8, 236u8, 97u8, 31u8, 68u8, 43u8, 79u8, 254u8, 194u8, 50u8, 240u8, 78u8, 171u8, 48u8, 199u8, 142u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_proofs_26_100.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 11u8, 53u8, 20u8, 59u8, 41u8, 250u8, 224u8, 239u8, 14u8, 207u8, 32u8, 94u8, 180u8, 214u8, 99u8, 135u8, 25u8, 100u8, 160u8, 124u8, 219u8, 221u8, 144u8, 211u8, 108u8, 250u8, 59u8, 62u8, 96u8, 105u8, 162u8, 93u8, 21u8, 72u8, 144u8, 236u8, 73u8, 103u8, 187u8, 22u8, 46u8, 145u8, 78u8, 189u8, 18u8, 94u8, 192u8, 228u8, 203u8, 4u8, 119u8, 240u8, 84u8, 49u8, 148u8, 219u8, 205u8, 30u8, 106u8, 165u8, 220u8, 116u8, 165u8, 61u8, ], vk_beta_g2: [ 26u8, 116u8, 148u8, 220u8, 121u8, 227u8, 212u8, 107u8, 215u8, 30u8, 74u8, 52u8, 16u8, 178u8, 84u8, 32u8, 133u8, 98u8, 3u8, 238u8, 228u8, 240u8, 180u8, 54u8, 27u8, 52u8, 44u8, 75u8, 189u8, 61u8, 23u8, 198u8, 18u8, 223u8, 98u8, 203u8, 167u8, 219u8, 164u8, 55u8, 62u8, 162u8, 180u8, 165u8, 109u8, 241u8, 144u8, 140u8, 194u8, 87u8, 24u8, 112u8, 250u8, 113u8, 158u8, 125u8, 103u8, 104u8, 140u8, 232u8, 218u8, 38u8, 34u8, 32u8, 5u8, 101u8, 144u8, 93u8, 45u8, 6u8, 140u8, 174u8, 209u8, 182u8, 171u8, 215u8, 66u8, 212u8, 252u8, 196u8, 230u8, 45u8, 64u8, 30u8, 83u8, 91u8, 250u8, 44u8, 195u8, 245u8, 252u8, 232u8, 26u8, 254u8, 118u8, 6u8, 8u8, 160u8, 162u8, 63u8, 93u8, 239u8, 51u8, 67u8, 132u8, 193u8, 36u8, 63u8, 132u8, 125u8, 148u8, 182u8, 244u8, 41u8, 17u8, 223u8, 221u8, 142u8, 123u8, 78u8, 36u8, 177u8, 55u8, 26u8, 162u8, 193u8, 129u8, 149u8, ], vk_gamme_g2: [ 45u8, 125u8, 104u8, 40u8, 44u8, 201u8, 62u8, 253u8, 134u8, 2u8, 253u8, 90u8, 9u8, 209u8, 15u8, 236u8, 250u8, 154u8, 50u8, 218u8, 81u8, 102u8, 13u8, 16u8, 198u8, 86u8, 160u8, 131u8, 6u8, 246u8, 23u8, 207u8, 46u8, 154u8, 33u8, 155u8, 144u8, 152u8, 205u8, 150u8, 206u8, 28u8, 158u8, 187u8, 172u8, 72u8, 38u8, 246u8, 129u8, 116u8, 27u8, 39u8, 21u8, 153u8, 206u8, 78u8, 124u8, 64u8, 120u8, 10u8, 51u8, 173u8, 199u8, 137u8, 30u8, 211u8, 214u8, 72u8, 233u8, 163u8, 123u8, 184u8, 144u8, 117u8, 88u8, 131u8, 239u8, 19u8, 143u8, 172u8, 5u8, 106u8, 224u8, 14u8, 69u8, 254u8, 163u8, 140u8, 235u8, 22u8, 213u8, 190u8, 201u8, 1u8, 75u8, 47u8, 40u8, 182u8, 244u8, 86u8, 180u8, 248u8, 222u8, 78u8, 215u8, 160u8, 81u8, 205u8, 192u8, 90u8, 143u8, 215u8, 130u8, 43u8, 176u8, 253u8, 104u8, 24u8, 89u8, 75u8, 128u8, 114u8, 107u8, 2u8, 164u8, 172u8, 61u8, 178u8, ], vk_delta_g2: [ 45u8, 37u8, 73u8, 121u8, 119u8, 230u8, 113u8, 28u8, 100u8, 43u8, 58u8, 67u8, 90u8, 61u8, 182u8, 249u8, 232u8, 201u8, 112u8, 251u8, 191u8, 186u8, 121u8, 148u8, 96u8, 180u8, 227u8, 2u8, 135u8, 169u8, 110u8, 58u8, 30u8, 95u8, 225u8, 17u8, 134u8, 116u8, 80u8, 91u8, 159u8, 163u8, 180u8, 251u8, 76u8, 100u8, 163u8, 15u8, 139u8, 195u8, 90u8, 237u8, 113u8, 233u8, 151u8, 70u8, 194u8, 83u8, 140u8, 174u8, 184u8, 70u8, 57u8, 152u8, 5u8, 138u8, 207u8, 180u8, 137u8, 131u8, 94u8, 109u8, 200u8, 240u8, 50u8, 91u8, 188u8, 125u8, 188u8, 225u8, 143u8, 3u8, 181u8, 195u8, 92u8, 170u8, 200u8, 117u8, 66u8, 231u8, 210u8, 147u8, 15u8, 164u8, 200u8, 40u8, 7u8, 9u8, 183u8, 243u8, 164u8, 181u8, 133u8, 228u8, 172u8, 30u8, 210u8, 50u8, 50u8, 12u8, 161u8, 89u8, 103u8, 125u8, 111u8, 55u8, 182u8, 58u8, 38u8, 104u8, 196u8, 175u8, 128u8, 241u8, 235u8, 245u8, 54u8, 189u8, ], vk_ic: &[ [ 6u8, 224u8, 19u8, 85u8, 133u8, 60u8, 44u8, 25u8, 244u8, 133u8, 211u8, 28u8, 164u8, 190u8, 62u8, 184u8, 43u8, 45u8, 30u8, 73u8, 16u8, 180u8, 90u8, 66u8, 174u8, 103u8, 167u8, 59u8, 185u8, 243u8, 139u8, 119u8, 29u8, 156u8, 243u8, 220u8, 238u8, 81u8, 228u8, 127u8, 24u8, 202u8, 92u8, 84u8, 187u8, 23u8, 118u8, 161u8, 76u8, 142u8, 106u8, 209u8, 119u8, 229u8, 241u8, 19u8, 162u8, 161u8, 145u8, 68u8, 52u8, 137u8, 147u8, 12u8, ], [ 2u8, 122u8, 74u8, 7u8, 251u8, 49u8, 23u8, 84u8, 174u8, 112u8, 75u8, 203u8, 227u8, 37u8, 120u8, 144u8, 207u8, 248u8, 17u8, 11u8, 113u8, 157u8, 68u8, 135u8, 117u8, 144u8, 153u8, 150u8, 142u8, 104u8, 140u8, 233u8, 7u8, 102u8, 185u8, 178u8, 40u8, 196u8, 51u8, 141u8, 64u8, 142u8, 226u8, 115u8, 186u8, 133u8, 119u8, 79u8, 252u8, 162u8, 214u8, 167u8, 214u8, 93u8, 198u8, 44u8, 240u8, 196u8, 167u8, 121u8, 70u8, 246u8, 63u8, 177u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_proofs_26_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 18u8, 39u8, 46u8, 163u8, 160u8, 133u8, 40u8, 109u8, 164u8, 99u8, 108u8, 95u8, 207u8, 68u8, 116u8, 32u8, 207u8, 128u8, 13u8, 164u8, 50u8, 40u8, 206u8, 141u8, 224u8, 107u8, 109u8, 232u8, 209u8, 99u8, 201u8, 167u8, 27u8, 50u8, 119u8, 87u8, 156u8, 158u8, 188u8, 254u8, 51u8, 157u8, 15u8, 96u8, 142u8, 38u8, 101u8, 128u8, 135u8, 246u8, 31u8, 1u8, 45u8, 212u8, 216u8, 151u8, 9u8, 229u8, 110u8, 197u8, 175u8, 1u8, 49u8, 60u8, ], vk_beta_g2: [ 37u8, 89u8, 226u8, 228u8, 155u8, 219u8, 107u8, 211u8, 221u8, 5u8, 113u8, 16u8, 32u8, 157u8, 106u8, 143u8, 95u8, 98u8, 102u8, 24u8, 238u8, 201u8, 19u8, 62u8, 8u8, 44u8, 167u8, 218u8, 253u8, 119u8, 49u8, 170u8, 35u8, 150u8, 136u8, 40u8, 149u8, 231u8, 115u8, 124u8, 248u8, 172u8, 103u8, 120u8, 186u8, 83u8, 192u8, 38u8, 155u8, 88u8, 199u8, 79u8, 220u8, 162u8, 133u8, 197u8, 239u8, 243u8, 42u8, 10u8, 112u8, 3u8, 57u8, 240u8, 18u8, 9u8, 151u8, 14u8, 46u8, 146u8, 22u8, 195u8, 192u8, 237u8, 179u8, 232u8, 88u8, 191u8, 30u8, 86u8, 190u8, 197u8, 6u8, 21u8, 189u8, 70u8, 110u8, 232u8, 71u8, 161u8, 70u8, 123u8, 219u8, 107u8, 118u8, 92u8, 1u8, 162u8, 170u8, 251u8, 40u8, 25u8, 35u8, 237u8, 165u8, 11u8, 227u8, 202u8, 143u8, 27u8, 63u8, 78u8, 91u8, 87u8, 80u8, 253u8, 123u8, 245u8, 45u8, 144u8, 71u8, 142u8, 226u8, 240u8, 55u8, 226u8, 108u8, 253u8, ], vk_gamme_g2: [ 35u8, 62u8, 207u8, 9u8, 74u8, 43u8, 69u8, 60u8, 208u8, 12u8, 150u8, 245u8, 250u8, 105u8, 172u8, 78u8, 61u8, 122u8, 120u8, 222u8, 237u8, 226u8, 150u8, 241u8, 108u8, 206u8, 30u8, 252u8, 75u8, 31u8, 98u8, 152u8, 29u8, 143u8, 65u8, 173u8, 63u8, 120u8, 89u8, 144u8, 34u8, 77u8, 248u8, 132u8, 159u8, 23u8, 83u8, 232u8, 92u8, 36u8, 42u8, 92u8, 184u8, 94u8, 8u8, 205u8, 9u8, 196u8, 25u8, 234u8, 118u8, 141u8, 227u8, 102u8, 26u8, 76u8, 33u8, 48u8, 3u8, 221u8, 97u8, 188u8, 97u8, 232u8, 224u8, 16u8, 145u8, 176u8, 214u8, 118u8, 98u8, 48u8, 201u8, 145u8, 208u8, 113u8, 67u8, 155u8, 161u8, 197u8, 135u8, 202u8, 119u8, 128u8, 86u8, 163u8, 39u8, 38u8, 106u8, 176u8, 190u8, 202u8, 174u8, 137u8, 199u8, 215u8, 171u8, 64u8, 107u8, 216u8, 123u8, 249u8, 85u8, 202u8, 110u8, 115u8, 71u8, 100u8, 126u8, 200u8, 130u8, 205u8, 139u8, 14u8, 174u8, 59u8, 8u8, 37u8, ], vk_delta_g2: [ 18u8, 184u8, 241u8, 242u8, 84u8, 62u8, 16u8, 7u8, 184u8, 241u8, 2u8, 69u8, 16u8, 58u8, 230u8, 28u8, 115u8, 227u8, 190u8, 59u8, 146u8, 82u8, 32u8, 14u8, 11u8, 166u8, 140u8, 105u8, 214u8, 226u8, 165u8, 244u8, 25u8, 130u8, 54u8, 74u8, 58u8, 116u8, 12u8, 254u8, 142u8, 217u8, 201u8, 241u8, 222u8, 13u8, 190u8, 209u8, 179u8, 1u8, 8u8, 237u8, 30u8, 49u8, 125u8, 245u8, 156u8, 117u8, 131u8, 129u8, 14u8, 68u8, 229u8, 228u8, 46u8, 94u8, 94u8, 82u8, 171u8, 88u8, 89u8, 70u8, 166u8, 251u8, 163u8, 38u8, 185u8, 243u8, 186u8, 59u8, 96u8, 37u8, 158u8, 16u8, 70u8, 56u8, 93u8, 23u8, 245u8, 213u8, 39u8, 105u8, 17u8, 84u8, 8u8, 4u8, 21u8, 3u8, 138u8, 164u8, 69u8, 28u8, 215u8, 250u8, 109u8, 218u8, 28u8, 235u8, 122u8, 245u8, 105u8, 2u8, 41u8, 221u8, 196u8, 41u8, 46u8, 192u8, 244u8, 116u8, 194u8, 50u8, 132u8, 125u8, 57u8, 219u8, 191u8, 4u8, ], vk_ic: &[ [ 28u8, 173u8, 137u8, 91u8, 69u8, 169u8, 7u8, 115u8, 22u8, 156u8, 8u8, 157u8, 156u8, 245u8, 68u8, 48u8, 100u8, 68u8, 72u8, 65u8, 108u8, 130u8, 194u8, 126u8, 225u8, 105u8, 182u8, 44u8, 101u8, 151u8, 40u8, 217u8, 4u8, 244u8, 7u8, 83u8, 10u8, 174u8, 64u8, 149u8, 184u8, 192u8, 56u8, 164u8, 151u8, 186u8, 27u8, 173u8, 177u8, 107u8, 176u8, 30u8, 163u8, 229u8, 54u8, 121u8, 111u8, 51u8, 21u8, 230u8, 15u8, 53u8, 80u8, 157u8, ], [ 42u8, 235u8, 30u8, 69u8, 236u8, 238u8, 29u8, 149u8, 179u8, 10u8, 157u8, 245u8, 220u8, 157u8, 252u8, 38u8, 161u8, 107u8, 17u8, 181u8, 64u8, 97u8, 62u8, 59u8, 194u8, 99u8, 40u8, 124u8, 134u8, 40u8, 34u8, 148u8, 3u8, 53u8, 13u8, 177u8, 46u8, 110u8, 66u8, 142u8, 128u8, 167u8, 249u8, 125u8, 212u8, 165u8, 202u8, 125u8, 226u8, 227u8, 125u8, 115u8, 145u8, 192u8, 75u8, 18u8, 10u8, 140u8, 81u8, 35u8, 208u8, 18u8, 98u8, 161u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_2_2.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 8usize, vk_alpha_g1: [ 21u8, 12u8, 210u8, 63u8, 217u8, 64u8, 202u8, 92u8, 220u8, 39u8, 242u8, 161u8, 82u8, 82u8, 1u8, 28u8, 215u8, 208u8, 241u8, 251u8, 86u8, 188u8, 56u8, 31u8, 214u8, 215u8, 81u8, 36u8, 164u8, 48u8, 145u8, 203u8, 26u8, 94u8, 74u8, 113u8, 24u8, 74u8, 40u8, 45u8, 216u8, 8u8, 81u8, 4u8, 67u8, 124u8, 182u8, 104u8, 3u8, 193u8, 186u8, 231u8, 199u8, 56u8, 236u8, 177u8, 130u8, 155u8, 129u8, 63u8, 241u8, 153u8, 0u8, 183u8, ], vk_beta_g2: [ 45u8, 135u8, 216u8, 8u8, 32u8, 42u8, 238u8, 226u8, 134u8, 47u8, 2u8, 38u8, 206u8, 112u8, 63u8, 197u8, 98u8, 48u8, 195u8, 85u8, 185u8, 35u8, 79u8, 230u8, 189u8, 250u8, 185u8, 97u8, 59u8, 125u8, 217u8, 77u8, 37u8, 152u8, 77u8, 6u8, 19u8, 43u8, 249u8, 126u8, 137u8, 39u8, 227u8, 160u8, 242u8, 61u8, 101u8, 55u8, 34u8, 244u8, 127u8, 66u8, 130u8, 205u8, 216u8, 217u8, 231u8, 221u8, 38u8, 125u8, 217u8, 247u8, 137u8, 23u8, 38u8, 67u8, 108u8, 40u8, 94u8, 80u8, 48u8, 190u8, 249u8, 91u8, 26u8, 33u8, 46u8, 24u8, 25u8, 128u8, 106u8, 192u8, 103u8, 125u8, 198u8, 51u8, 116u8, 109u8, 218u8, 132u8, 124u8, 19u8, 31u8, 221u8, 253u8, 1u8, 48u8, 46u8, 225u8, 17u8, 97u8, 234u8, 177u8, 191u8, 27u8, 0u8, 37u8, 153u8, 158u8, 108u8, 132u8, 232u8, 177u8, 215u8, 150u8, 160u8, 132u8, 247u8, 249u8, 227u8, 112u8, 53u8, 236u8, 6u8, 138u8, 63u8, 107u8, 152u8, ], vk_gamme_g2: [ 10u8, 211u8, 165u8, 123u8, 125u8, 74u8, 117u8, 93u8, 145u8, 101u8, 2u8, 41u8, 145u8, 192u8, 207u8, 181u8, 63u8, 136u8, 54u8, 173u8, 209u8, 145u8, 164u8, 43u8, 209u8, 91u8, 253u8, 75u8, 210u8, 185u8, 37u8, 65u8, 26u8, 152u8, 248u8, 110u8, 26u8, 12u8, 139u8, 188u8, 211u8, 78u8, 53u8, 136u8, 132u8, 202u8, 131u8, 128u8, 168u8, 253u8, 24u8, 156u8, 7u8, 49u8, 25u8, 33u8, 113u8, 32u8, 19u8, 115u8, 147u8, 16u8, 238u8, 89u8, 33u8, 23u8, 152u8, 15u8, 116u8, 225u8, 196u8, 58u8, 165u8, 237u8, 206u8, 91u8, 118u8, 155u8, 51u8, 73u8, 22u8, 36u8, 167u8, 154u8, 75u8, 203u8, 172u8, 144u8, 149u8, 226u8, 149u8, 28u8, 137u8, 16u8, 249u8, 209u8, 27u8, 31u8, 142u8, 0u8, 137u8, 22u8, 219u8, 236u8, 71u8, 103u8, 49u8, 152u8, 151u8, 32u8, 210u8, 133u8, 39u8, 18u8, 193u8, 146u8, 121u8, 240u8, 178u8, 251u8, 83u8, 206u8, 95u8, 78u8, 24u8, 57u8, 232u8, 74u8, ], vk_delta_g2: [ 18u8, 152u8, 221u8, 44u8, 79u8, 205u8, 173u8, 46u8, 51u8, 175u8, 82u8, 22u8, 216u8, 142u8, 185u8, 74u8, 165u8, 111u8, 61u8, 155u8, 235u8, 8u8, 214u8, 28u8, 175u8, 212u8, 114u8, 247u8, 56u8, 215u8, 90u8, 97u8, 33u8, 149u8, 213u8, 39u8, 109u8, 202u8, 42u8, 49u8, 136u8, 11u8, 82u8, 227u8, 163u8, 130u8, 202u8, 18u8, 10u8, 224u8, 92u8, 131u8, 31u8, 88u8, 62u8, 233u8, 0u8, 152u8, 178u8, 226u8, 176u8, 183u8, 149u8, 239u8, 41u8, 178u8, 76u8, 143u8, 119u8, 95u8, 94u8, 240u8, 80u8, 148u8, 202u8, 194u8, 68u8, 237u8, 155u8, 180u8, 1u8, 144u8, 187u8, 33u8, 136u8, 141u8, 93u8, 8u8, 9u8, 48u8, 246u8, 194u8, 174u8, 28u8, 237u8, 4u8, 21u8, 25u8, 51u8, 181u8, 217u8, 245u8, 37u8, 107u8, 24u8, 52u8, 26u8, 167u8, 128u8, 152u8, 164u8, 55u8, 223u8, 170u8, 42u8, 21u8, 22u8, 74u8, 4u8, 33u8, 121u8, 179u8, 250u8, 139u8, 137u8, 180u8, 178u8, 198u8, ], vk_ic: &[ [ 22u8, 190u8, 73u8, 135u8, 198u8, 239u8, 9u8, 199u8, 74u8, 220u8, 103u8, 206u8, 180u8, 106u8, 76u8, 154u8, 163u8, 232u8, 147u8, 153u8, 18u8, 44u8, 203u8, 70u8, 226u8, 101u8, 172u8, 20u8, 223u8, 78u8, 213u8, 135u8, 16u8, 134u8, 208u8, 142u8, 12u8, 230u8, 146u8, 196u8, 84u8, 121u8, 31u8, 40u8, 171u8, 5u8, 112u8, 37u8, 122u8, 131u8, 207u8, 100u8, 116u8, 95u8, 241u8, 141u8, 163u8, 105u8, 166u8, 114u8, 225u8, 244u8, 126u8, 31u8, ], [ 30u8, 102u8, 253u8, 173u8, 130u8, 156u8, 73u8, 61u8, 199u8, 232u8, 93u8, 104u8, 158u8, 181u8, 101u8, 27u8, 108u8, 107u8, 18u8, 72u8, 174u8, 47u8, 204u8, 170u8, 173u8, 227u8, 120u8, 35u8, 178u8, 150u8, 36u8, 216u8, 20u8, 205u8, 87u8, 243u8, 29u8, 60u8, 96u8, 182u8, 230u8, 220u8, 138u8, 184u8, 255u8, 48u8, 86u8, 159u8, 77u8, 230u8, 83u8, 168u8, 234u8, 103u8, 222u8, 218u8, 108u8, 27u8, 78u8, 178u8, 211u8, 143u8, 181u8, 32u8, ], [ 19u8, 101u8, 80u8, 235u8, 38u8, 177u8, 191u8, 7u8, 65u8, 107u8, 107u8, 247u8, 174u8, 232u8, 33u8, 45u8, 158u8, 133u8, 23u8, 149u8, 124u8, 49u8, 197u8, 152u8, 142u8, 132u8, 46u8, 216u8, 184u8, 237u8, 87u8, 185u8, 14u8, 175u8, 228u8, 197u8, 189u8, 148u8, 242u8, 223u8, 19u8, 116u8, 193u8, 82u8, 15u8, 183u8, 178u8, 103u8, 28u8, 73u8, 206u8, 137u8, 252u8, 10u8, 98u8, 76u8, 24u8, 145u8, 224u8, 105u8, 36u8, 73u8, 32u8, 2u8, ], [ 1u8, 121u8, 32u8, 174u8, 26u8, 67u8, 119u8, 236u8, 73u8, 155u8, 137u8, 74u8, 10u8, 140u8, 193u8, 50u8, 244u8, 27u8, 194u8, 57u8, 18u8, 203u8, 247u8, 203u8, 72u8, 26u8, 1u8, 110u8, 51u8, 0u8, 206u8, 42u8, 47u8, 255u8, 44u8, 113u8, 151u8, 9u8, 65u8, 11u8, 140u8, 164u8, 34u8, 82u8, 118u8, 137u8, 34u8, 251u8, 203u8, 35u8, 159u8, 94u8, 121u8, 252u8, 98u8, 227u8, 1u8, 25u8, 88u8, 225u8, 188u8, 37u8, 99u8, 25u8, ], [ 22u8, 12u8, 185u8, 116u8, 161u8, 109u8, 58u8, 6u8, 7u8, 18u8, 84u8, 46u8, 139u8, 41u8, 159u8, 93u8, 72u8, 118u8, 148u8, 14u8, 151u8, 133u8, 24u8, 210u8, 173u8, 214u8, 92u8, 193u8, 47u8, 215u8, 91u8, 49u8, 35u8, 75u8, 19u8, 189u8, 192u8, 196u8, 127u8, 42u8, 12u8, 10u8, 162u8, 126u8, 23u8, 17u8, 212u8, 159u8, 38u8, 183u8, 2u8, 74u8, 25u8, 223u8, 35u8, 162u8, 161u8, 242u8, 185u8, 62u8, 69u8, 228u8, 55u8, 220u8, ], [ 33u8, 170u8, 132u8, 255u8, 67u8, 183u8, 253u8, 250u8, 110u8, 150u8, 171u8, 239u8, 74u8, 247u8, 11u8, 90u8, 1u8, 252u8, 124u8, 145u8, 94u8, 193u8, 21u8, 22u8, 240u8, 92u8, 75u8, 90u8, 131u8, 214u8, 9u8, 79u8, 37u8, 26u8, 113u8, 212u8, 208u8, 96u8, 206u8, 226u8, 205u8, 33u8, 150u8, 45u8, 202u8, 224u8, 196u8, 57u8, 205u8, 130u8, 34u8, 23u8, 205u8, 218u8, 25u8, 200u8, 186u8, 178u8, 49u8, 223u8, 245u8, 119u8, 29u8, 71u8, ], [ 8u8, 28u8, 193u8, 0u8, 171u8, 104u8, 33u8, 155u8, 217u8, 36u8, 219u8, 105u8, 161u8, 255u8, 239u8, 225u8, 186u8, 83u8, 65u8, 151u8, 204u8, 77u8, 0u8, 128u8, 206u8, 72u8, 105u8, 115u8, 65u8, 236u8, 167u8, 125u8, 45u8, 37u8, 206u8, 55u8, 41u8, 159u8, 86u8, 237u8, 228u8, 106u8, 80u8, 92u8, 42u8, 14u8, 76u8, 213u8, 140u8, 198u8, 69u8, 204u8, 51u8, 196u8, 126u8, 157u8, 75u8, 122u8, 35u8, 15u8, 46u8, 168u8, 138u8, 124u8, ], [ 4u8, 195u8, 206u8, 227u8, 71u8, 150u8, 82u8, 223u8, 96u8, 95u8, 119u8, 214u8, 103u8, 177u8, 239u8, 76u8, 217u8, 247u8, 85u8, 90u8, 224u8, 26u8, 200u8, 224u8, 220u8, 58u8, 115u8, 192u8, 83u8, 22u8, 230u8, 48u8, 13u8, 82u8, 248u8, 141u8, 134u8, 145u8, 65u8, 126u8, 46u8, 77u8, 88u8, 1u8, 67u8, 6u8, 203u8, 179u8, 161u8, 117u8, 37u8, 133u8, 56u8, 184u8, 53u8, 135u8, 95u8, 89u8, 82u8, 213u8, 223u8, 10u8, 161u8, 194u8, ], [ 24u8, 117u8, 6u8, 18u8, 84u8, 149u8, 219u8, 254u8, 95u8, 27u8, 33u8, 203u8, 130u8, 233u8, 18u8, 147u8, 146u8, 142u8, 154u8, 241u8, 154u8, 108u8, 254u8, 147u8, 251u8, 167u8, 195u8, 204u8, 222u8, 3u8, 142u8, 183u8, 13u8, 41u8, 45u8, 193u8, 198u8, 194u8, 170u8, 202u8, 63u8, 79u8, 194u8, 65u8, 15u8, 122u8, 182u8, 221u8, 215u8, 225u8, 162u8, 100u8, 54u8, 102u8, 10u8, 170u8, 182u8, 65u8, 52u8, 238u8, 99u8, 138u8, 224u8, 146u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/inclusion_26_2.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 4usize, vk_alpha_g1: [ 34u8, 48u8, 79u8, 167u8, 205u8, 132u8, 123u8, 27u8, 236u8, 30u8, 59u8, 227u8, 223u8, 105u8, 45u8, 243u8, 252u8, 137u8, 215u8, 19u8, 230u8, 88u8, 139u8, 218u8, 24u8, 60u8, 62u8, 161u8, 3u8, 255u8, 102u8, 233u8, 46u8, 239u8, 105u8, 121u8, 133u8, 208u8, 44u8, 103u8, 17u8, 214u8, 102u8, 212u8, 207u8, 106u8, 228u8, 130u8, 50u8, 35u8, 13u8, 168u8, 29u8, 96u8, 77u8, 74u8, 163u8, 228u8, 219u8, 37u8, 63u8, 160u8, 69u8, 90u8, ], vk_beta_g2: [ 27u8, 68u8, 25u8, 55u8, 21u8, 255u8, 115u8, 132u8, 103u8, 10u8, 149u8, 196u8, 99u8, 96u8, 196u8, 221u8, 44u8, 80u8, 53u8, 87u8, 4u8, 96u8, 232u8, 121u8, 125u8, 234u8, 63u8, 156u8, 17u8, 143u8, 38u8, 141u8, 13u8, 229u8, 178u8, 9u8, 80u8, 203u8, 238u8, 154u8, 57u8, 43u8, 182u8, 9u8, 41u8, 110u8, 77u8, 140u8, 20u8, 24u8, 244u8, 215u8, 188u8, 48u8, 120u8, 71u8, 114u8, 102u8, 175u8, 239u8, 156u8, 255u8, 6u8, 149u8, 43u8, 239u8, 123u8, 88u8, 59u8, 226u8, 74u8, 112u8, 23u8, 53u8, 158u8, 224u8, 11u8, 138u8, 132u8, 39u8, 255u8, 2u8, 97u8, 45u8, 111u8, 59u8, 101u8, 59u8, 26u8, 46u8, 0u8, 82u8, 125u8, 236u8, 174u8, 19u8, 7u8, 158u8, 230u8, 116u8, 20u8, 84u8, 106u8, 126u8, 105u8, 43u8, 41u8, 142u8, 111u8, 181u8, 154u8, 7u8, 206u8, 139u8, 134u8, 109u8, 88u8, 180u8, 69u8, 128u8, 212u8, 36u8, 174u8, 33u8, 178u8, 11u8, 212u8, 88u8, ], vk_gamme_g2: [ 38u8, 184u8, 104u8, 179u8, 116u8, 49u8, 114u8, 154u8, 190u8, 38u8, 213u8, 72u8, 130u8, 102u8, 138u8, 58u8, 206u8, 242u8, 171u8, 129u8, 133u8, 195u8, 81u8, 247u8, 30u8, 46u8, 240u8, 189u8, 175u8, 78u8, 200u8, 38u8, 41u8, 67u8, 46u8, 128u8, 156u8, 1u8, 97u8, 212u8, 166u8, 44u8, 45u8, 228u8, 243u8, 221u8, 50u8, 247u8, 200u8, 61u8, 213u8, 1u8, 203u8, 85u8, 100u8, 91u8, 133u8, 244u8, 119u8, 3u8, 27u8, 229u8, 248u8, 166u8, 39u8, 193u8, 93u8, 213u8, 33u8, 189u8, 231u8, 205u8, 136u8, 57u8, 20u8, 104u8, 130u8, 162u8, 39u8, 81u8, 1u8, 223u8, 112u8, 37u8, 178u8, 187u8, 195u8, 73u8, 9u8, 255u8, 109u8, 201u8, 145u8, 119u8, 91u8, 189u8, 44u8, 185u8, 88u8, 156u8, 195u8, 156u8, 82u8, 165u8, 236u8, 208u8, 29u8, 165u8, 13u8, 223u8, 21u8, 170u8, 52u8, 128u8, 22u8, 185u8, 41u8, 11u8, 186u8, 213u8, 247u8, 126u8, 218u8, 109u8, 172u8, 231u8, 100u8, 93u8, ], vk_delta_g2: [ 41u8, 231u8, 160u8, 5u8, 83u8, 157u8, 8u8, 89u8, 118u8, 1u8, 246u8, 29u8, 198u8, 97u8, 130u8, 221u8, 92u8, 148u8, 39u8, 120u8, 203u8, 159u8, 61u8, 210u8, 58u8, 7u8, 123u8, 51u8, 178u8, 26u8, 23u8, 188u8, 19u8, 178u8, 213u8, 207u8, 54u8, 16u8, 241u8, 97u8, 56u8, 186u8, 89u8, 52u8, 157u8, 71u8, 175u8, 35u8, 187u8, 199u8, 43u8, 136u8, 79u8, 96u8, 140u8, 91u8, 220u8, 159u8, 44u8, 54u8, 217u8, 19u8, 3u8, 157u8, 33u8, 11u8, 128u8, 54u8, 40u8, 68u8, 164u8, 156u8, 225u8, 96u8, 186u8, 24u8, 154u8, 70u8, 116u8, 182u8, 11u8, 97u8, 146u8, 235u8, 217u8, 237u8, 162u8, 245u8, 142u8, 204u8, 247u8, 175u8, 70u8, 2u8, 210u8, 29u8, 31u8, 35u8, 234u8, 206u8, 136u8, 157u8, 121u8, 235u8, 90u8, 226u8, 131u8, 187u8, 200u8, 78u8, 109u8, 245u8, 188u8, 195u8, 29u8, 5u8, 227u8, 168u8, 187u8, 216u8, 231u8, 47u8, 224u8, 175u8, 95u8, 167u8, 206u8, 206u8, ], vk_ic: &[ [ 8u8, 251u8, 14u8, 225u8, 229u8, 26u8, 14u8, 108u8, 11u8, 40u8, 7u8, 135u8, 174u8, 110u8, 120u8, 5u8, 226u8, 66u8, 108u8, 158u8, 93u8, 105u8, 155u8, 167u8, 25u8, 129u8, 120u8, 135u8, 210u8, 58u8, 149u8, 71u8, 10u8, 219u8, 86u8, 33u8, 158u8, 168u8, 189u8, 14u8, 135u8, 90u8, 118u8, 157u8, 196u8, 178u8, 246u8, 140u8, 241u8, 7u8, 39u8, 189u8, 10u8, 72u8, 87u8, 255u8, 183u8, 154u8, 232u8, 22u8, 65u8, 114u8, 134u8, 247u8, ], [ 45u8, 79u8, 236u8, 74u8, 248u8, 66u8, 146u8, 59u8, 193u8, 254u8, 22u8, 231u8, 63u8, 52u8, 251u8, 182u8, 165u8, 250u8, 152u8, 92u8, 238u8, 219u8, 8u8, 231u8, 91u8, 147u8, 49u8, 85u8, 190u8, 87u8, 196u8, 91u8, 43u8, 66u8, 86u8, 5u8, 81u8, 56u8, 108u8, 157u8, 79u8, 130u8, 42u8, 7u8, 212u8, 168u8, 39u8, 200u8, 16u8, 96u8, 238u8, 88u8, 22u8, 176u8, 182u8, 26u8, 158u8, 163u8, 205u8, 65u8, 47u8, 6u8, 214u8, 144u8, ], [ 21u8, 41u8, 144u8, 58u8, 224u8, 70u8, 112u8, 123u8, 133u8, 246u8, 82u8, 99u8, 196u8, 82u8, 73u8, 86u8, 183u8, 87u8, 72u8, 230u8, 118u8, 219u8, 53u8, 165u8, 235u8, 136u8, 140u8, 46u8, 189u8, 104u8, 112u8, 3u8, 22u8, 15u8, 70u8, 7u8, 64u8, 227u8, 119u8, 141u8, 148u8, 124u8, 228u8, 67u8, 139u8, 193u8, 126u8, 94u8, 103u8, 153u8, 127u8, 181u8, 3u8, 124u8, 65u8, 132u8, 154u8, 23u8, 209u8, 106u8, 121u8, 207u8, 110u8, 8u8, ], [ 24u8, 159u8, 228u8, 92u8, 198u8, 112u8, 159u8, 81u8, 237u8, 247u8, 212u8, 195u8, 25u8, 177u8, 213u8, 223u8, 134u8, 123u8, 115u8, 3u8, 96u8, 193u8, 51u8, 120u8, 28u8, 208u8, 182u8, 214u8, 157u8, 249u8, 73u8, 16u8, 5u8, 182u8, 189u8, 178u8, 210u8, 75u8, 88u8, 129u8, 143u8, 226u8, 217u8, 233u8, 232u8, 42u8, 181u8, 110u8, 196u8, 183u8, 200u8, 150u8, 91u8, 57u8, 19u8, 22u8, 6u8, 31u8, 62u8, 16u8, 163u8, 88u8, 77u8, 13u8, ], [ 22u8, 95u8, 27u8, 70u8, 206u8, 18u8, 234u8, 134u8, 172u8, 202u8, 213u8, 215u8, 3u8, 53u8, 170u8, 220u8, 201u8, 138u8, 16u8, 192u8, 110u8, 156u8, 227u8, 25u8, 124u8, 112u8, 124u8, 127u8, 16u8, 148u8, 175u8, 203u8, 13u8, 35u8, 136u8, 177u8, 57u8, 16u8, 98u8, 8u8, 160u8, 137u8, 58u8, 56u8, 8u8, 167u8, 230u8, 173u8, 166u8, 101u8, 232u8, 216u8, 189u8, 218u8, 159u8, 117u8, 15u8, 194u8, 197u8, 112u8, 71u8, 68u8, 234u8, 94u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_1_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 4usize, vk_alpha_g1: [ 24u8, 154u8, 1u8, 206u8, 21u8, 179u8, 218u8, 197u8, 102u8, 46u8, 245u8, 2u8, 54u8, 253u8, 3u8, 24u8, 85u8, 92u8, 16u8, 198u8, 120u8, 233u8, 7u8, 18u8, 54u8, 37u8, 118u8, 197u8, 166u8, 222u8, 108u8, 31u8, 37u8, 74u8, 204u8, 197u8, 227u8, 180u8, 247u8, 216u8, 178u8, 114u8, 228u8, 192u8, 37u8, 34u8, 172u8, 87u8, 140u8, 163u8, 120u8, 171u8, 220u8, 183u8, 5u8, 147u8, 182u8, 37u8, 73u8, 226u8, 233u8, 254u8, 19u8, 241u8, ], vk_beta_g2: [ 19u8, 42u8, 208u8, 251u8, 22u8, 23u8, 5u8, 157u8, 72u8, 147u8, 112u8, 10u8, 224u8, 162u8, 101u8, 99u8, 244u8, 21u8, 221u8, 86u8, 222u8, 179u8, 209u8, 224u8, 155u8, 164u8, 11u8, 63u8, 94u8, 19u8, 6u8, 235u8, 36u8, 168u8, 1u8, 44u8, 81u8, 133u8, 248u8, 65u8, 105u8, 87u8, 207u8, 114u8, 139u8, 71u8, 15u8, 92u8, 70u8, 242u8, 110u8, 173u8, 109u8, 83u8, 86u8, 34u8, 183u8, 234u8, 183u8, 180u8, 213u8, 47u8, 173u8, 34u8, 12u8, 23u8, 187u8, 20u8, 73u8, 63u8, 137u8, 45u8, 251u8, 99u8, 129u8, 157u8, 115u8, 103u8, 168u8, 72u8, 164u8, 69u8, 122u8, 65u8, 114u8, 156u8, 40u8, 83u8, 180u8, 217u8, 45u8, 32u8, 105u8, 236u8, 222u8, 24u8, 5u8, 101u8, 233u8, 255u8, 137u8, 157u8, 123u8, 110u8, 235u8, 105u8, 212u8, 233u8, 7u8, 162u8, 135u8, 29u8, 231u8, 170u8, 153u8, 39u8, 160u8, 14u8, 111u8, 167u8, 32u8, 143u8, 41u8, 145u8, 109u8, 73u8, 161u8, 82u8, ], vk_gamme_g2: [ 18u8, 26u8, 210u8, 166u8, 161u8, 118u8, 133u8, 18u8, 140u8, 54u8, 180u8, 63u8, 185u8, 0u8, 117u8, 114u8, 38u8, 121u8, 180u8, 125u8, 220u8, 178u8, 90u8, 45u8, 196u8, 175u8, 137u8, 126u8, 220u8, 208u8, 119u8, 225u8, 7u8, 3u8, 245u8, 0u8, 157u8, 219u8, 157u8, 94u8, 208u8, 143u8, 174u8, 64u8, 105u8, 163u8, 124u8, 105u8, 212u8, 230u8, 179u8, 108u8, 26u8, 254u8, 240u8, 81u8, 217u8, 61u8, 86u8, 149u8, 199u8, 61u8, 15u8, 1u8, 28u8, 24u8, 7u8, 55u8, 206u8, 196u8, 90u8, 128u8, 81u8, 71u8, 190u8, 79u8, 155u8, 36u8, 2u8, 105u8, 52u8, 205u8, 205u8, 73u8, 46u8, 250u8, 39u8, 93u8, 155u8, 247u8, 186u8, 76u8, 50u8, 31u8, 10u8, 247u8, 42u8, 28u8, 213u8, 85u8, 89u8, 129u8, 141u8, 89u8, 252u8, 227u8, 225u8, 186u8, 95u8, 118u8, 229u8, 211u8, 156u8, 107u8, 47u8, 179u8, 84u8, 79u8, 157u8, 70u8, 195u8, 104u8, 140u8, 110u8, 106u8, 114u8, 40u8, 74u8, ], vk_delta_g2: [ 22u8, 104u8, 29u8, 19u8, 204u8, 246u8, 1u8, 185u8, 227u8, 147u8, 6u8, 232u8, 14u8, 240u8, 238u8, 235u8, 22u8, 184u8, 158u8, 45u8, 39u8, 149u8, 217u8, 252u8, 39u8, 51u8, 72u8, 100u8, 43u8, 172u8, 28u8, 148u8, 24u8, 33u8, 140u8, 232u8, 105u8, 172u8, 42u8, 201u8, 49u8, 68u8, 61u8, 175u8, 93u8, 183u8, 80u8, 12u8, 114u8, 178u8, 91u8, 216u8, 178u8, 219u8, 193u8, 165u8, 202u8, 236u8, 171u8, 5u8, 191u8, 99u8, 18u8, 106u8, 17u8, 98u8, 37u8, 194u8, 33u8, 206u8, 18u8, 51u8, 75u8, 70u8, 220u8, 16u8, 251u8, 181u8, 73u8, 71u8, 74u8, 20u8, 102u8, 10u8, 118u8, 189u8, 123u8, 102u8, 200u8, 82u8, 191u8, 24u8, 201u8, 140u8, 214u8, 235u8, 36u8, 249u8, 161u8, 68u8, 203u8, 66u8, 147u8, 201u8, 80u8, 8u8, 197u8, 115u8, 109u8, 209u8, 165u8, 108u8, 219u8, 9u8, 143u8, 17u8, 215u8, 62u8, 166u8, 197u8, 70u8, 79u8, 19u8, 31u8, 88u8, 133u8, 18u8, 192u8, ], vk_ic: &[ [ 23u8, 132u8, 114u8, 102u8, 243u8, 9u8, 129u8, 19u8, 247u8, 20u8, 112u8, 254u8, 249u8, 195u8, 194u8, 23u8, 202u8, 68u8, 171u8, 119u8, 238u8, 251u8, 174u8, 251u8, 247u8, 45u8, 31u8, 174u8, 28u8, 93u8, 113u8, 51u8, 14u8, 11u8, 25u8, 95u8, 225u8, 160u8, 220u8, 152u8, 166u8, 201u8, 137u8, 167u8, 17u8, 156u8, 28u8, 99u8, 170u8, 158u8, 227u8, 48u8, 27u8, 1u8, 161u8, 17u8, 21u8, 178u8, 201u8, 141u8, 206u8, 220u8, 77u8, 114u8, ], [ 1u8, 140u8, 123u8, 61u8, 27u8, 51u8, 217u8, 86u8, 241u8, 37u8, 117u8, 226u8, 227u8, 242u8, 169u8, 99u8, 212u8, 24u8, 207u8, 84u8, 139u8, 53u8, 210u8, 221u8, 98u8, 235u8, 163u8, 95u8, 46u8, 52u8, 111u8, 139u8, 7u8, 116u8, 116u8, 53u8, 163u8, 144u8, 97u8, 142u8, 188u8, 90u8, 101u8, 45u8, 235u8, 162u8, 157u8, 174u8, 181u8, 103u8, 150u8, 9u8, 65u8, 251u8, 15u8, 22u8, 40u8, 223u8, 219u8, 85u8, 111u8, 135u8, 77u8, 134u8, ], [ 34u8, 157u8, 215u8, 167u8, 179u8, 185u8, 252u8, 237u8, 76u8, 189u8, 224u8, 236u8, 168u8, 170u8, 177u8, 33u8, 224u8, 142u8, 34u8, 0u8, 162u8, 199u8, 251u8, 183u8, 209u8, 240u8, 91u8, 6u8, 241u8, 152u8, 111u8, 161u8, 31u8, 185u8, 3u8, 253u8, 24u8, 243u8, 246u8, 109u8, 201u8, 26u8, 219u8, 135u8, 26u8, 177u8, 129u8, 95u8, 219u8, 204u8, 10u8, 87u8, 179u8, 154u8, 141u8, 145u8, 158u8, 249u8, 173u8, 51u8, 209u8, 107u8, 129u8, 168u8, ], [ 42u8, 22u8, 157u8, 174u8, 200u8, 204u8, 182u8, 38u8, 132u8, 185u8, 231u8, 74u8, 219u8, 193u8, 9u8, 93u8, 135u8, 181u8, 81u8, 47u8, 89u8, 230u8, 38u8, 26u8, 40u8, 60u8, 32u8, 45u8, 77u8, 110u8, 163u8, 72u8, 26u8, 161u8, 114u8, 213u8, 162u8, 29u8, 29u8, 173u8, 112u8, 84u8, 51u8, 90u8, 39u8, 167u8, 218u8, 73u8, 88u8, 249u8, 161u8, 107u8, 89u8, 69u8, 224u8, 252u8, 67u8, 161u8, 219u8, 38u8, 38u8, 99u8, 156u8, 235u8, ], [ 18u8, 209u8, 175u8, 30u8, 84u8, 127u8, 94u8, 119u8, 196u8, 89u8, 92u8, 215u8, 224u8, 45u8, 227u8, 149u8, 169u8, 212u8, 4u8, 173u8, 245u8, 160u8, 61u8, 192u8, 129u8, 42u8, 27u8, 176u8, 229u8, 40u8, 104u8, 79u8, 9u8, 167u8, 207u8, 21u8, 46u8, 152u8, 157u8, 32u8, 248u8, 240u8, 132u8, 243u8, 211u8, 201u8, 68u8, 230u8, 150u8, 177u8, 255u8, 113u8, 164u8, 88u8, 123u8, 198u8, 88u8, 29u8, 7u8, 203u8, 205u8, 179u8, 172u8, 113u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/inclusion_26_3.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 6usize, vk_alpha_g1: [ 31u8, 68u8, 56u8, 3u8, 17u8, 93u8, 98u8, 70u8, 252u8, 44u8, 85u8, 66u8, 82u8, 45u8, 81u8, 222u8, 97u8, 198u8, 71u8, 60u8, 121u8, 252u8, 194u8, 35u8, 130u8, 7u8, 152u8, 199u8, 70u8, 89u8, 212u8, 89u8, 21u8, 186u8, 132u8, 225u8, 181u8, 220u8, 53u8, 8u8, 184u8, 58u8, 11u8, 94u8, 124u8, 122u8, 196u8, 202u8, 149u8, 205u8, 115u8, 42u8, 220u8, 121u8, 235u8, 157u8, 131u8, 27u8, 207u8, 98u8, 229u8, 156u8, 35u8, 255u8, ], vk_beta_g2: [ 46u8, 172u8, 120u8, 29u8, 137u8, 113u8, 253u8, 84u8, 255u8, 225u8, 94u8, 155u8, 237u8, 152u8, 230u8, 136u8, 166u8, 90u8, 4u8, 147u8, 196u8, 102u8, 16u8, 147u8, 6u8, 239u8, 218u8, 114u8, 103u8, 104u8, 236u8, 106u8, 36u8, 171u8, 15u8, 155u8, 92u8, 79u8, 139u8, 167u8, 147u8, 154u8, 10u8, 106u8, 250u8, 72u8, 226u8, 200u8, 120u8, 56u8, 109u8, 185u8, 21u8, 188u8, 12u8, 120u8, 236u8, 164u8, 207u8, 141u8, 214u8, 35u8, 50u8, 60u8, 25u8, 46u8, 248u8, 176u8, 227u8, 207u8, 225u8, 228u8, 180u8, 230u8, 232u8, 248u8, 3u8, 135u8, 216u8, 177u8, 90u8, 246u8, 88u8, 229u8, 110u8, 68u8, 182u8, 126u8, 92u8, 60u8, 198u8, 111u8, 151u8, 49u8, 118u8, 181u8, 24u8, 4u8, 121u8, 113u8, 91u8, 161u8, 91u8, 82u8, 54u8, 79u8, 185u8, 41u8, 54u8, 251u8, 38u8, 196u8, 55u8, 204u8, 230u8, 26u8, 102u8, 227u8, 118u8, 163u8, 250u8, 169u8, 0u8, 150u8, 161u8, 105u8, 227u8, 7u8, ], vk_gamme_g2: [ 12u8, 13u8, 64u8, 59u8, 33u8, 219u8, 116u8, 122u8, 168u8, 91u8, 191u8, 179u8, 11u8, 52u8, 29u8, 63u8, 40u8, 4u8, 117u8, 124u8, 232u8, 236u8, 202u8, 226u8, 151u8, 199u8, 247u8, 236u8, 241u8, 248u8, 98u8, 21u8, 37u8, 229u8, 95u8, 254u8, 132u8, 206u8, 171u8, 157u8, 152u8, 248u8, 214u8, 165u8, 217u8, 196u8, 229u8, 114u8, 164u8, 8u8, 54u8, 101u8, 100u8, 249u8, 122u8, 72u8, 76u8, 183u8, 73u8, 238u8, 116u8, 118u8, 160u8, 9u8, 5u8, 200u8, 134u8, 116u8, 156u8, 145u8, 13u8, 222u8, 166u8, 47u8, 182u8, 214u8, 164u8, 59u8, 57u8, 199u8, 103u8, 234u8, 3u8, 99u8, 72u8, 148u8, 67u8, 141u8, 9u8, 77u8, 251u8, 180u8, 37u8, 28u8, 214u8, 143u8, 16u8, 193u8, 166u8, 207u8, 107u8, 124u8, 162u8, 171u8, 142u8, 41u8, 41u8, 211u8, 74u8, 144u8, 37u8, 91u8, 162u8, 192u8, 44u8, 213u8, 18u8, 5u8, 154u8, 110u8, 85u8, 213u8, 234u8, 226u8, 119u8, 210u8, 42u8, 123u8, ], vk_delta_g2: [ 1u8, 30u8, 13u8, 60u8, 25u8, 97u8, 237u8, 107u8, 222u8, 16u8, 201u8, 86u8, 17u8, 195u8, 184u8, 150u8, 165u8, 75u8, 6u8, 166u8, 229u8, 68u8, 18u8, 149u8, 43u8, 142u8, 25u8, 119u8, 208u8, 57u8, 245u8, 142u8, 14u8, 138u8, 129u8, 18u8, 42u8, 133u8, 231u8, 110u8, 67u8, 123u8, 243u8, 23u8, 114u8, 237u8, 48u8, 59u8, 127u8, 182u8, 17u8, 128u8, 193u8, 241u8, 162u8, 157u8, 122u8, 72u8, 61u8, 84u8, 81u8, 70u8, 143u8, 52u8, 43u8, 171u8, 192u8, 186u8, 1u8, 226u8, 255u8, 145u8, 13u8, 223u8, 110u8, 255u8, 176u8, 168u8, 117u8, 184u8, 64u8, 30u8, 122u8, 125u8, 52u8, 73u8, 205u8, 247u8, 190u8, 189u8, 128u8, 66u8, 24u8, 246u8, 49u8, 41u8, 33u8, 165u8, 117u8, 37u8, 20u8, 0u8, 37u8, 83u8, 183u8, 42u8, 89u8, 44u8, 238u8, 166u8, 108u8, 251u8, 255u8, 76u8, 68u8, 118u8, 67u8, 153u8, 63u8, 108u8, 127u8, 253u8, 11u8, 162u8, 193u8, 149u8, 58u8, 185u8, ], vk_ic: &[ [ 28u8, 118u8, 69u8, 238u8, 5u8, 131u8, 130u8, 125u8, 245u8, 184u8, 107u8, 74u8, 192u8, 223u8, 106u8, 15u8, 150u8, 47u8, 218u8, 147u8, 161u8, 17u8, 54u8, 59u8, 210u8, 22u8, 17u8, 83u8, 254u8, 172u8, 139u8, 225u8, 44u8, 180u8, 214u8, 116u8, 181u8, 56u8, 218u8, 251u8, 204u8, 143u8, 226u8, 55u8, 145u8, 139u8, 73u8, 61u8, 243u8, 255u8, 230u8, 245u8, 84u8, 248u8, 20u8, 12u8, 83u8, 57u8, 205u8, 18u8, 251u8, 241u8, 65u8, 97u8, ], [ 34u8, 140u8, 152u8, 205u8, 145u8, 17u8, 149u8, 157u8, 151u8, 250u8, 189u8, 68u8, 23u8, 115u8, 162u8, 120u8, 105u8, 171u8, 35u8, 236u8, 118u8, 36u8, 58u8, 120u8, 106u8, 186u8, 155u8, 166u8, 102u8, 9u8, 196u8, 145u8, 22u8, 66u8, 244u8, 19u8, 72u8, 157u8, 72u8, 250u8, 1u8, 190u8, 179u8, 132u8, 72u8, 137u8, 169u8, 46u8, 11u8, 72u8, 195u8, 186u8, 151u8, 58u8, 1u8, 136u8, 164u8, 142u8, 122u8, 27u8, 98u8, 135u8, 199u8, 221u8, ], [ 39u8, 71u8, 126u8, 189u8, 95u8, 129u8, 53u8, 110u8, 163u8, 130u8, 68u8, 20u8, 39u8, 124u8, 62u8, 78u8, 36u8, 150u8, 106u8, 240u8, 27u8, 3u8, 247u8, 141u8, 51u8, 245u8, 24u8, 238u8, 59u8, 152u8, 174u8, 30u8, 18u8, 24u8, 4u8, 226u8, 10u8, 114u8, 94u8, 46u8, 105u8, 78u8, 45u8, 182u8, 66u8, 108u8, 239u8, 181u8, 174u8, 248u8, 44u8, 164u8, 126u8, 38u8, 91u8, 50u8, 86u8, 117u8, 57u8, 180u8, 235u8, 150u8, 186u8, 19u8, ], [ 11u8, 217u8, 126u8, 55u8, 98u8, 38u8, 230u8, 248u8, 53u8, 169u8, 63u8, 150u8, 62u8, 208u8, 74u8, 89u8, 239u8, 20u8, 133u8, 252u8, 197u8, 179u8, 222u8, 184u8, 184u8, 164u8, 150u8, 39u8, 117u8, 4u8, 234u8, 136u8, 12u8, 10u8, 89u8, 150u8, 215u8, 231u8, 40u8, 148u8, 72u8, 33u8, 159u8, 123u8, 28u8, 27u8, 3u8, 217u8, 207u8, 223u8, 83u8, 88u8, 47u8, 209u8, 222u8, 100u8, 225u8, 235u8, 98u8, 81u8, 2u8, 234u8, 234u8, 138u8, ], [ 30u8, 78u8, 85u8, 234u8, 109u8, 228u8, 164u8, 108u8, 92u8, 197u8, 159u8, 84u8, 138u8, 1u8, 114u8, 244u8, 209u8, 11u8, 201u8, 227u8, 90u8, 123u8, 58u8, 206u8, 17u8, 248u8, 146u8, 254u8, 181u8, 193u8, 22u8, 18u8, 37u8, 41u8, 60u8, 86u8, 205u8, 56u8, 243u8, 238u8, 219u8, 254u8, 3u8, 179u8, 13u8, 178u8, 45u8, 22u8, 27u8, 203u8, 22u8, 115u8, 137u8, 115u8, 102u8, 170u8, 41u8, 223u8, 77u8, 231u8, 241u8, 225u8, 85u8, 235u8, ], [ 25u8, 125u8, 235u8, 100u8, 163u8, 28u8, 75u8, 15u8, 92u8, 20u8, 184u8, 169u8, 88u8, 107u8, 69u8, 116u8, 67u8, 111u8, 201u8, 3u8, 107u8, 216u8, 49u8, 29u8, 103u8, 69u8, 23u8, 214u8, 254u8, 16u8, 116u8, 42u8, 34u8, 31u8, 124u8, 176u8, 249u8, 92u8, 203u8, 98u8, 190u8, 245u8, 1u8, 177u8, 251u8, 196u8, 9u8, 132u8, 64u8, 181u8, 141u8, 11u8, 123u8, 205u8, 197u8, 255u8, 115u8, 194u8, 150u8, 153u8, 33u8, 16u8, 143u8, 115u8, ], [ 24u8, 191u8, 155u8, 0u8, 112u8, 83u8, 179u8, 182u8, 147u8, 114u8, 112u8, 46u8, 248u8, 121u8, 105u8, 72u8, 80u8, 159u8, 84u8, 62u8, 79u8, 202u8, 98u8, 42u8, 52u8, 231u8, 49u8, 141u8, 107u8, 33u8, 161u8, 89u8, 31u8, 82u8, 214u8, 10u8, 72u8, 42u8, 197u8, 62u8, 184u8, 83u8, 194u8, 9u8, 90u8, 220u8, 213u8, 213u8, 137u8, 197u8, 204u8, 28u8, 181u8, 104u8, 67u8, 154u8, 122u8, 155u8, 150u8, 73u8, 137u8, 107u8, 57u8, 189u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_26_500.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 44u8, 254u8, 117u8, 148u8, 225u8, 45u8, 180u8, 255u8, 45u8, 42u8, 139u8, 228u8, 41u8, 227u8, 175u8, 123u8, 238u8, 232u8, 51u8, 198u8, 1u8, 114u8, 80u8, 30u8, 43u8, 78u8, 200u8, 45u8, 161u8, 236u8, 38u8, 83u8, 30u8, 6u8, 54u8, 79u8, 98u8, 214u8, 43u8, 243u8, 112u8, 90u8, 252u8, 34u8, 254u8, 199u8, 71u8, 188u8, 137u8, 165u8, 69u8, 216u8, 110u8, 141u8, 168u8, 239u8, 124u8, 247u8, 125u8, 83u8, 78u8, 253u8, 139u8, 221u8, ], vk_beta_g2: [ 32u8, 101u8, 195u8, 43u8, 98u8, 8u8, 189u8, 14u8, 253u8, 96u8, 104u8, 217u8, 130u8, 16u8, 99u8, 15u8, 61u8, 250u8, 13u8, 30u8, 39u8, 51u8, 222u8, 13u8, 250u8, 237u8, 11u8, 93u8, 95u8, 211u8, 99u8, 225u8, 32u8, 19u8, 247u8, 149u8, 153u8, 83u8, 162u8, 128u8, 52u8, 198u8, 110u8, 238u8, 155u8, 15u8, 100u8, 86u8, 79u8, 231u8, 77u8, 79u8, 43u8, 230u8, 204u8, 106u8, 3u8, 41u8, 132u8, 33u8, 5u8, 246u8, 72u8, 124u8, 20u8, 123u8, 60u8, 90u8, 157u8, 72u8, 228u8, 97u8, 26u8, 173u8, 57u8, 211u8, 27u8, 23u8, 109u8, 172u8, 155u8, 208u8, 101u8, 114u8, 190u8, 250u8, 253u8, 71u8, 80u8, 92u8, 152u8, 177u8, 8u8, 5u8, 203u8, 191u8, 25u8, 15u8, 229u8, 152u8, 102u8, 96u8, 26u8, 43u8, 30u8, 99u8, 1u8, 157u8, 186u8, 197u8, 111u8, 35u8, 175u8, 253u8, 4u8, 249u8, 89u8, 216u8, 5u8, 12u8, 220u8, 28u8, 227u8, 67u8, 234u8, 222u8, 83u8, 220u8, ], vk_gamme_g2: [ 39u8, 242u8, 73u8, 50u8, 109u8, 248u8, 228u8, 34u8, 199u8, 179u8, 37u8, 223u8, 99u8, 29u8, 111u8, 119u8, 232u8, 48u8, 45u8, 145u8, 249u8, 197u8, 92u8, 21u8, 50u8, 213u8, 52u8, 82u8, 225u8, 31u8, 0u8, 131u8, 21u8, 66u8, 46u8, 94u8, 172u8, 220u8, 218u8, 190u8, 42u8, 241u8, 51u8, 176u8, 180u8, 102u8, 27u8, 78u8, 68u8, 164u8, 165u8, 97u8, 116u8, 19u8, 9u8, 70u8, 120u8, 87u8, 194u8, 191u8, 239u8, 229u8, 159u8, 110u8, 25u8, 67u8, 104u8, 199u8, 11u8, 0u8, 219u8, 207u8, 237u8, 197u8, 25u8, 213u8, 244u8, 58u8, 239u8, 8u8, 60u8, 72u8, 238u8, 71u8, 153u8, 243u8, 128u8, 57u8, 186u8, 73u8, 252u8, 49u8, 81u8, 226u8, 83u8, 231u8, 41u8, 177u8, 160u8, 144u8, 135u8, 41u8, 150u8, 163u8, 2u8, 27u8, 236u8, 244u8, 82u8, 67u8, 171u8, 75u8, 112u8, 11u8, 133u8, 65u8, 9u8, 52u8, 72u8, 184u8, 46u8, 47u8, 242u8, 182u8, 80u8, 59u8, 220u8, 62u8, ], vk_delta_g2: [ 42u8, 202u8, 87u8, 62u8, 38u8, 184u8, 244u8, 217u8, 29u8, 128u8, 219u8, 253u8, 176u8, 58u8, 130u8, 44u8, 246u8, 216u8, 2u8, 221u8, 227u8, 81u8, 41u8, 197u8, 113u8, 139u8, 36u8, 26u8, 194u8, 168u8, 25u8, 53u8, 19u8, 6u8, 151u8, 43u8, 194u8, 192u8, 63u8, 199u8, 34u8, 227u8, 229u8, 119u8, 123u8, 86u8, 206u8, 125u8, 38u8, 46u8, 71u8, 28u8, 67u8, 179u8, 73u8, 64u8, 226u8, 225u8, 27u8, 59u8, 125u8, 5u8, 53u8, 88u8, 6u8, 205u8, 114u8, 217u8, 208u8, 102u8, 247u8, 233u8, 83u8, 149u8, 141u8, 144u8, 154u8, 18u8, 204u8, 112u8, 171u8, 172u8, 235u8, 214u8, 176u8, 237u8, 92u8, 114u8, 80u8, 208u8, 185u8, 190u8, 123u8, 11u8, 180u8, 253u8, 25u8, 96u8, 248u8, 181u8, 108u8, 107u8, 167u8, 47u8, 145u8, 8u8, 84u8, 206u8, 152u8, 135u8, 92u8, 251u8, 80u8, 66u8, 86u8, 164u8, 204u8, 96u8, 160u8, 152u8, 93u8, 81u8, 65u8, 83u8, 229u8, 151u8, 244u8, 73u8, ], vk_ic: &[ [ 37u8, 134u8, 15u8, 204u8, 30u8, 19u8, 57u8, 134u8, 98u8, 51u8, 13u8, 140u8, 173u8, 67u8, 243u8, 8u8, 200u8, 40u8, 150u8, 175u8, 104u8, 152u8, 211u8, 203u8, 11u8, 231u8, 112u8, 82u8, 62u8, 251u8, 79u8, 73u8, 41u8, 215u8, 227u8, 104u8, 108u8, 175u8, 34u8, 24u8, 216u8, 90u8, 193u8, 223u8, 24u8, 26u8, 175u8, 1u8, 228u8, 120u8, 0u8, 113u8, 46u8, 44u8, 99u8, 118u8, 237u8, 244u8, 108u8, 51u8, 200u8, 218u8, 188u8, 145u8, ], [ 27u8, 106u8, 215u8, 184u8, 31u8, 169u8, 219u8, 123u8, 83u8, 1u8, 25u8, 0u8, 183u8, 220u8, 147u8, 83u8, 89u8, 21u8, 74u8, 124u8, 135u8, 131u8, 147u8, 161u8, 217u8, 81u8, 205u8, 82u8, 108u8, 84u8, 64u8, 214u8, 17u8, 132u8, 154u8, 240u8, 124u8, 141u8, 184u8, 246u8, 211u8, 232u8, 193u8, 210u8, 190u8, 186u8, 83u8, 4u8, 41u8, 220u8, 119u8, 189u8, 7u8, 185u8, 77u8, 188u8, 212u8, 111u8, 251u8, 252u8, 245u8, 93u8, 138u8, 135u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_3_2.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 10usize, vk_alpha_g1: [ 12u8, 41u8, 95u8, 139u8, 253u8, 2u8, 99u8, 75u8, 238u8, 53u8, 102u8, 226u8, 143u8, 223u8, 163u8, 109u8, 78u8, 43u8, 120u8, 14u8, 125u8, 205u8, 171u8, 20u8, 168u8, 135u8, 162u8, 229u8, 5u8, 26u8, 253u8, 221u8, 46u8, 169u8, 94u8, 246u8, 192u8, 122u8, 146u8, 91u8, 210u8, 4u8, 28u8, 76u8, 44u8, 137u8, 148u8, 222u8, 62u8, 127u8, 4u8, 110u8, 138u8, 55u8, 178u8, 38u8, 79u8, 252u8, 142u8, 5u8, 209u8, 191u8, 111u8, 159u8, ], vk_beta_g2: [ 37u8, 220u8, 49u8, 184u8, 157u8, 103u8, 212u8, 155u8, 189u8, 187u8, 88u8, 63u8, 174u8, 91u8, 232u8, 18u8, 230u8, 88u8, 99u8, 16u8, 54u8, 33u8, 234u8, 245u8, 65u8, 69u8, 150u8, 3u8, 196u8, 155u8, 46u8, 110u8, 1u8, 154u8, 52u8, 147u8, 198u8, 170u8, 8u8, 177u8, 3u8, 10u8, 16u8, 170u8, 150u8, 144u8, 32u8, 23u8, 35u8, 171u8, 36u8, 217u8, 120u8, 152u8, 228u8, 89u8, 33u8, 117u8, 128u8, 1u8, 111u8, 146u8, 29u8, 28u8, 10u8, 216u8, 197u8, 199u8, 186u8, 120u8, 2u8, 176u8, 151u8, 213u8, 34u8, 37u8, 102u8, 213u8, 241u8, 142u8, 131u8, 21u8, 255u8, 90u8, 99u8, 95u8, 93u8, 54u8, 160u8, 237u8, 222u8, 187u8, 48u8, 46u8, 5u8, 145u8, 29u8, 8u8, 27u8, 98u8, 116u8, 150u8, 164u8, 46u8, 161u8, 33u8, 14u8, 200u8, 254u8, 54u8, 124u8, 135u8, 239u8, 60u8, 72u8, 25u8, 163u8, 210u8, 237u8, 111u8, 55u8, 33u8, 142u8, 137u8, 7u8, 224u8, 128u8, 1u8, ], vk_gamme_g2: [ 12u8, 191u8, 2u8, 38u8, 28u8, 16u8, 177u8, 191u8, 141u8, 228u8, 45u8, 0u8, 95u8, 48u8, 119u8, 73u8, 61u8, 213u8, 158u8, 19u8, 172u8, 109u8, 17u8, 179u8, 149u8, 191u8, 133u8, 118u8, 18u8, 126u8, 48u8, 25u8, 34u8, 31u8, 190u8, 132u8, 231u8, 0u8, 116u8, 143u8, 234u8, 3u8, 151u8, 212u8, 124u8, 175u8, 251u8, 9u8, 224u8, 212u8, 48u8, 69u8, 66u8, 105u8, 179u8, 43u8, 2u8, 74u8, 221u8, 167u8, 42u8, 62u8, 122u8, 145u8, 1u8, 113u8, 163u8, 171u8, 194u8, 20u8, 38u8, 60u8, 226u8, 75u8, 21u8, 152u8, 34u8, 243u8, 24u8, 227u8, 223u8, 17u8, 201u8, 120u8, 212u8, 203u8, 73u8, 110u8, 86u8, 238u8, 94u8, 100u8, 87u8, 146u8, 25u8, 7u8, 25u8, 138u8, 216u8, 113u8, 174u8, 133u8, 45u8, 236u8, 119u8, 171u8, 91u8, 242u8, 37u8, 165u8, 113u8, 252u8, 177u8, 77u8, 137u8, 204u8, 48u8, 232u8, 145u8, 119u8, 252u8, 70u8, 197u8, 127u8, 56u8, 162u8, 249u8, 97u8, ], vk_delta_g2: [ 45u8, 180u8, 149u8, 125u8, 112u8, 101u8, 158u8, 255u8, 191u8, 201u8, 126u8, 130u8, 228u8, 165u8, 239u8, 82u8, 142u8, 26u8, 32u8, 198u8, 68u8, 10u8, 62u8, 34u8, 229u8, 22u8, 100u8, 100u8, 228u8, 54u8, 232u8, 169u8, 11u8, 70u8, 242u8, 60u8, 133u8, 244u8, 130u8, 49u8, 217u8, 171u8, 219u8, 215u8, 161u8, 61u8, 191u8, 193u8, 204u8, 103u8, 20u8, 14u8, 57u8, 167u8, 156u8, 15u8, 222u8, 167u8, 88u8, 242u8, 60u8, 149u8, 94u8, 7u8, 11u8, 107u8, 189u8, 138u8, 97u8, 221u8, 80u8, 238u8, 228u8, 100u8, 164u8, 228u8, 107u8, 92u8, 36u8, 32u8, 97u8, 24u8, 218u8, 181u8, 53u8, 136u8, 247u8, 174u8, 91u8, 165u8, 232u8, 61u8, 10u8, 81u8, 101u8, 234u8, 12u8, 42u8, 157u8, 7u8, 107u8, 178u8, 112u8, 193u8, 206u8, 209u8, 68u8, 8u8, 110u8, 194u8, 2u8, 205u8, 141u8, 199u8, 159u8, 138u8, 57u8, 226u8, 69u8, 119u8, 165u8, 161u8, 253u8, 220u8, 131u8, 141u8, 83u8, 80u8, ], vk_ic: &[ [ 20u8, 53u8, 43u8, 17u8, 65u8, 237u8, 81u8, 233u8, 100u8, 220u8, 27u8, 170u8, 213u8, 62u8, 53u8, 95u8, 16u8, 137u8, 169u8, 30u8, 253u8, 9u8, 236u8, 136u8, 44u8, 213u8, 169u8, 121u8, 246u8, 94u8, 12u8, 180u8, 38u8, 113u8, 153u8, 105u8, 179u8, 186u8, 78u8, 91u8, 239u8, 45u8, 20u8, 33u8, 185u8, 68u8, 53u8, 190u8, 217u8, 164u8, 0u8, 48u8, 8u8, 162u8, 78u8, 252u8, 3u8, 168u8, 33u8, 155u8, 8u8, 68u8, 246u8, 224u8, ], [ 43u8, 57u8, 138u8, 10u8, 162u8, 40u8, 45u8, 126u8, 84u8, 248u8, 91u8, 242u8, 211u8, 78u8, 148u8, 134u8, 186u8, 120u8, 70u8, 238u8, 84u8, 55u8, 5u8, 114u8, 100u8, 57u8, 60u8, 46u8, 250u8, 166u8, 188u8, 132u8, 14u8, 196u8, 201u8, 25u8, 106u8, 104u8, 101u8, 126u8, 254u8, 48u8, 187u8, 235u8, 230u8, 69u8, 31u8, 12u8, 228u8, 109u8, 86u8, 205u8, 164u8, 139u8, 51u8, 193u8, 17u8, 3u8, 169u8, 189u8, 87u8, 157u8, 103u8, 182u8, ], [ 29u8, 149u8, 39u8, 125u8, 0u8, 71u8, 222u8, 207u8, 109u8, 30u8, 119u8, 117u8, 29u8, 197u8, 96u8, 126u8, 200u8, 16u8, 99u8, 7u8, 130u8, 209u8, 32u8, 121u8, 218u8, 173u8, 99u8, 2u8, 117u8, 94u8, 54u8, 193u8, 17u8, 167u8, 123u8, 252u8, 201u8, 240u8, 136u8, 169u8, 37u8, 17u8, 232u8, 158u8, 195u8, 116u8, 11u8, 245u8, 214u8, 150u8, 22u8, 132u8, 51u8, 215u8, 52u8, 108u8, 40u8, 147u8, 165u8, 108u8, 117u8, 134u8, 234u8, 164u8, ], [ 3u8, 150u8, 46u8, 41u8, 112u8, 237u8, 15u8, 253u8, 35u8, 156u8, 80u8, 9u8, 108u8, 65u8, 245u8, 75u8, 187u8, 158u8, 184u8, 206u8, 230u8, 49u8, 161u8, 120u8, 78u8, 60u8, 92u8, 151u8, 62u8, 33u8, 18u8, 245u8, 9u8, 176u8, 143u8, 68u8, 240u8, 208u8, 110u8, 231u8, 145u8, 3u8, 3u8, 35u8, 89u8, 86u8, 211u8, 7u8, 1u8, 120u8, 13u8, 95u8, 27u8, 52u8, 228u8, 135u8, 64u8, 151u8, 192u8, 109u8, 29u8, 146u8, 229u8, 234u8, ], [ 25u8, 86u8, 234u8, 64u8, 152u8, 211u8, 98u8, 125u8, 166u8, 129u8, 18u8, 163u8, 19u8, 73u8, 45u8, 19u8, 120u8, 221u8, 43u8, 61u8, 79u8, 133u8, 200u8, 225u8, 158u8, 148u8, 211u8, 146u8, 158u8, 63u8, 63u8, 153u8, 21u8, 118u8, 246u8, 28u8, 127u8, 238u8, 66u8, 184u8, 56u8, 208u8, 142u8, 163u8, 84u8, 200u8, 213u8, 158u8, 157u8, 66u8, 107u8, 129u8, 186u8, 17u8, 50u8, 3u8, 244u8, 71u8, 115u8, 203u8, 73u8, 60u8, 17u8, 167u8, ], [ 12u8, 133u8, 39u8, 24u8, 56u8, 72u8, 105u8, 226u8, 66u8, 2u8, 3u8, 211u8, 77u8, 81u8, 145u8, 234u8, 86u8, 238u8, 120u8, 188u8, 120u8, 68u8, 235u8, 196u8, 251u8, 198u8, 32u8, 11u8, 233u8, 55u8, 27u8, 87u8, 28u8, 225u8, 223u8, 102u8, 234u8, 94u8, 192u8, 159u8, 167u8, 44u8, 250u8, 131u8, 166u8, 112u8, 90u8, 246u8, 71u8, 215u8, 170u8, 151u8, 83u8, 125u8, 15u8, 153u8, 241u8, 41u8, 26u8, 63u8, 6u8, 213u8, 209u8, 105u8, ], [ 11u8, 203u8, 53u8, 61u8, 50u8, 236u8, 146u8, 97u8, 190u8, 200u8, 81u8, 128u8, 79u8, 66u8, 128u8, 110u8, 233u8, 253u8, 55u8, 105u8, 225u8, 225u8, 41u8, 177u8, 171u8, 235u8, 44u8, 183u8, 21u8, 195u8, 176u8, 90u8, 17u8, 227u8, 34u8, 109u8, 197u8, 173u8, 182u8, 4u8, 246u8, 47u8, 150u8, 121u8, 232u8, 70u8, 209u8, 136u8, 203u8, 195u8, 61u8, 49u8, 154u8, 114u8, 224u8, 108u8, 182u8, 72u8, 237u8, 77u8, 125u8, 21u8, 29u8, 202u8, ], [ 27u8, 169u8, 191u8, 35u8, 244u8, 194u8, 20u8, 10u8, 38u8, 254u8, 134u8, 106u8, 76u8, 150u8, 34u8, 104u8, 235u8, 99u8, 191u8, 180u8, 56u8, 230u8, 189u8, 239u8, 160u8, 246u8, 247u8, 228u8, 114u8, 97u8, 84u8, 111u8, 23u8, 65u8, 48u8, 136u8, 91u8, 68u8, 224u8, 201u8, 157u8, 50u8, 195u8, 153u8, 206u8, 234u8, 33u8, 61u8, 233u8, 27u8, 106u8, 86u8, 28u8, 150u8, 47u8, 178u8, 153u8, 121u8, 104u8, 24u8, 244u8, 29u8, 31u8, 63u8, ], [ 34u8, 108u8, 199u8, 179u8, 25u8, 19u8, 77u8, 180u8, 83u8, 2u8, 185u8, 219u8, 245u8, 107u8, 193u8, 171u8, 118u8, 177u8, 137u8, 24u8, 25u8, 43u8, 216u8, 190u8, 101u8, 74u8, 105u8, 199u8, 239u8, 52u8, 185u8, 61u8, 22u8, 227u8, 117u8, 250u8, 4u8, 102u8, 176u8, 227u8, 232u8, 123u8, 19u8, 93u8, 78u8, 218u8, 207u8, 15u8, 109u8, 203u8, 160u8, 97u8, 1u8, 170u8, 56u8, 220u8, 164u8, 54u8, 109u8, 254u8, 68u8, 40u8, 25u8, 139u8, ], [ 45u8, 175u8, 72u8, 122u8, 102u8, 33u8, 154u8, 113u8, 173u8, 48u8, 8u8, 47u8, 30u8, 205u8, 143u8, 185u8, 69u8, 39u8, 115u8, 172u8, 92u8, 46u8, 25u8, 217u8, 43u8, 46u8, 119u8, 243u8, 105u8, 79u8, 87u8, 88u8, 14u8, 135u8, 218u8, 237u8, 249u8, 198u8, 13u8, 222u8, 34u8, 58u8, 40u8, 91u8, 143u8, 111u8, 27u8, 85u8, 68u8, 244u8, 203u8, 152u8, 112u8, 71u8, 239u8, 7u8, 191u8, 63u8, 110u8, 158u8, 97u8, 42u8, 33u8, 82u8, ], [ 48u8, 9u8, 57u8, 74u8, 165u8, 235u8, 58u8, 50u8, 139u8, 67u8, 99u8, 73u8, 174u8, 135u8, 125u8, 138u8, 164u8, 153u8, 65u8, 201u8, 191u8, 221u8, 36u8, 29u8, 70u8, 180u8, 139u8, 105u8, 216u8, 111u8, 253u8, 159u8, 8u8, 189u8, 61u8, 205u8, 60u8, 110u8, 99u8, 117u8, 202u8, 131u8, 197u8, 168u8, 35u8, 198u8, 172u8, 36u8, 164u8, 122u8, 211u8, 8u8, 141u8, 78u8, 32u8, 88u8, 202u8, 27u8, 81u8, 197u8, 100u8, 72u8, 124u8, 40u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_40_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 47u8, 210u8, 83u8, 92u8, 199u8, 97u8, 152u8, 7u8, 13u8, 40u8, 30u8, 9u8, 112u8, 89u8, 28u8, 48u8, 138u8, 45u8, 25u8, 119u8, 197u8, 114u8, 5u8, 120u8, 114u8, 122u8, 38u8, 153u8, 184u8, 238u8, 66u8, 22u8, 13u8, 169u8, 91u8, 37u8, 26u8, 197u8, 171u8, 59u8, 221u8, 122u8, 180u8, 195u8, 8u8, 176u8, 219u8, 77u8, 151u8, 100u8, 198u8, 250u8, 171u8, 246u8, 240u8, 191u8, 247u8, 65u8, 60u8, 240u8, 233u8, 38u8, 118u8, 83u8, ], vk_beta_g2: [ 19u8, 10u8, 74u8, 195u8, 27u8, 165u8, 203u8, 159u8, 129u8, 45u8, 244u8, 126u8, 155u8, 202u8, 172u8, 184u8, 62u8, 27u8, 81u8, 148u8, 237u8, 189u8, 92u8, 243u8, 32u8, 166u8, 63u8, 5u8, 54u8, 91u8, 67u8, 157u8, 29u8, 53u8, 39u8, 41u8, 5u8, 100u8, 192u8, 53u8, 239u8, 187u8, 136u8, 91u8, 74u8, 81u8, 213u8, 160u8, 61u8, 81u8, 159u8, 73u8, 79u8, 234u8, 96u8, 77u8, 199u8, 155u8, 64u8, 163u8, 33u8, 81u8, 154u8, 86u8, 43u8, 110u8, 101u8, 118u8, 189u8, 192u8, 178u8, 222u8, 164u8, 234u8, 177u8, 232u8, 36u8, 36u8, 187u8, 17u8, 150u8, 242u8, 109u8, 26u8, 159u8, 183u8, 76u8, 186u8, 242u8, 98u8, 251u8, 90u8, 137u8, 38u8, 116u8, 13u8, 2u8, 16u8, 52u8, 74u8, 196u8, 147u8, 45u8, 255u8, 66u8, 221u8, 166u8, 173u8, 55u8, 129u8, 87u8, 187u8, 143u8, 251u8, 97u8, 161u8, 51u8, 47u8, 130u8, 14u8, 76u8, 247u8, 144u8, 246u8, 245u8, 209u8, 26u8, 105u8, ], vk_gamme_g2: [ 33u8, 236u8, 76u8, 252u8, 212u8, 255u8, 50u8, 21u8, 134u8, 7u8, 192u8, 46u8, 135u8, 39u8, 137u8, 219u8, 22u8, 90u8, 233u8, 199u8, 173u8, 154u8, 9u8, 239u8, 236u8, 201u8, 13u8, 173u8, 201u8, 7u8, 101u8, 98u8, 40u8, 95u8, 221u8, 82u8, 125u8, 216u8, 108u8, 223u8, 188u8, 254u8, 90u8, 92u8, 199u8, 53u8, 175u8, 247u8, 213u8, 108u8, 164u8, 137u8, 40u8, 2u8, 255u8, 110u8, 238u8, 38u8, 125u8, 188u8, 247u8, 207u8, 130u8, 26u8, 28u8, 251u8, 151u8, 244u8, 110u8, 229u8, 97u8, 222u8, 203u8, 84u8, 20u8, 100u8, 84u8, 196u8, 206u8, 227u8, 125u8, 47u8, 160u8, 152u8, 62u8, 62u8, 28u8, 7u8, 78u8, 86u8, 116u8, 63u8, 15u8, 54u8, 223u8, 71u8, 39u8, 224u8, 226u8, 4u8, 55u8, 223u8, 12u8, 209u8, 163u8, 226u8, 101u8, 54u8, 174u8, 151u8, 168u8, 232u8, 180u8, 240u8, 37u8, 45u8, 233u8, 177u8, 167u8, 2u8, 246u8, 115u8, 23u8, 162u8, 233u8, 94u8, 58u8, 72u8, ], vk_delta_g2: [ 20u8, 112u8, 52u8, 195u8, 193u8, 113u8, 204u8, 169u8, 176u8, 131u8, 81u8, 216u8, 87u8, 122u8, 50u8, 180u8, 220u8, 176u8, 103u8, 32u8, 222u8, 219u8, 166u8, 37u8, 87u8, 243u8, 12u8, 151u8, 225u8, 116u8, 166u8, 181u8, 15u8, 199u8, 50u8, 53u8, 84u8, 237u8, 9u8, 108u8, 153u8, 28u8, 32u8, 246u8, 96u8, 33u8, 155u8, 191u8, 29u8, 52u8, 151u8, 143u8, 185u8, 7u8, 27u8, 33u8, 189u8, 114u8, 66u8, 98u8, 107u8, 153u8, 240u8, 126u8, 1u8, 196u8, 23u8, 149u8, 64u8, 142u8, 234u8, 182u8, 51u8, 169u8, 36u8, 133u8, 26u8, 219u8, 241u8, 182u8, 10u8, 94u8, 131u8, 224u8, 10u8, 25u8, 151u8, 90u8, 74u8, 124u8, 44u8, 92u8, 111u8, 169u8, 89u8, 209u8, 14u8, 14u8, 184u8, 202u8, 227u8, 105u8, 230u8, 146u8, 123u8, 211u8, 8u8, 112u8, 111u8, 211u8, 253u8, 20u8, 220u8, 243u8, 72u8, 12u8, 171u8, 237u8, 115u8, 45u8, 46u8, 166u8, 115u8, 30u8, 252u8, 54u8, 195u8, 29u8, ], vk_ic: &[ [ 4u8, 72u8, 249u8, 173u8, 194u8, 192u8, 141u8, 214u8, 245u8, 214u8, 38u8, 216u8, 136u8, 124u8, 188u8, 238u8, 66u8, 75u8, 123u8, 166u8, 183u8, 162u8, 156u8, 213u8, 155u8, 32u8, 36u8, 150u8, 84u8, 100u8, 98u8, 204u8, 15u8, 243u8, 225u8, 107u8, 221u8, 253u8, 43u8, 145u8, 152u8, 17u8, 80u8, 6u8, 145u8, 157u8, 199u8, 66u8, 170u8, 16u8, 21u8, 27u8, 111u8, 136u8, 225u8, 23u8, 175u8, 59u8, 92u8, 161u8, 83u8, 138u8, 194u8, 101u8, ], [ 19u8, 216u8, 201u8, 61u8, 125u8, 191u8, 182u8, 0u8, 211u8, 43u8, 251u8, 29u8, 65u8, 211u8, 209u8, 107u8, 138u8, 144u8, 28u8, 117u8, 185u8, 151u8, 11u8, 42u8, 238u8, 130u8, 5u8, 184u8, 229u8, 33u8, 250u8, 9u8, 18u8, 57u8, 95u8, 126u8, 20u8, 176u8, 33u8, 181u8, 177u8, 208u8, 74u8, 242u8, 149u8, 220u8, 153u8, 213u8, 70u8, 168u8, 240u8, 163u8, 184u8, 48u8, 1u8, 47u8, 204u8, 213u8, 159u8, 82u8, 187u8, 20u8, 174u8, 139u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_subtrees_26_500.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 24u8, 119u8, 80u8, 206u8, 169u8, 86u8, 100u8, 55u8, 148u8, 186u8, 197u8, 158u8, 24u8, 15u8, 149u8, 202u8, 185u8, 161u8, 38u8, 182u8, 163u8, 214u8, 117u8, 82u8, 12u8, 52u8, 221u8, 108u8, 87u8, 244u8, 36u8, 142u8, 0u8, 208u8, 101u8, 21u8, 55u8, 178u8, 65u8, 176u8, 151u8, 34u8, 187u8, 103u8, 238u8, 91u8, 209u8, 2u8, 224u8, 40u8, 194u8, 93u8, 51u8, 80u8, 142u8, 156u8, 165u8, 157u8, 163u8, 27u8, 81u8, 150u8, 164u8, 141u8, ], vk_beta_g2: [ 42u8, 6u8, 114u8, 159u8, 97u8, 192u8, 104u8, 164u8, 215u8, 127u8, 34u8, 147u8, 6u8, 19u8, 2u8, 99u8, 175u8, 98u8, 36u8, 191u8, 64u8, 35u8, 185u8, 162u8, 119u8, 102u8, 168u8, 49u8, 136u8, 179u8, 149u8, 4u8, 22u8, 202u8, 181u8, 177u8, 79u8, 145u8, 18u8, 244u8, 67u8, 240u8, 18u8, 49u8, 51u8, 194u8, 160u8, 101u8, 240u8, 149u8, 170u8, 188u8, 92u8, 204u8, 112u8, 75u8, 176u8, 75u8, 214u8, 30u8, 239u8, 104u8, 6u8, 65u8, 36u8, 83u8, 231u8, 239u8, 45u8, 33u8, 67u8, 155u8, 66u8, 88u8, 198u8, 84u8, 5u8, 86u8, 94u8, 68u8, 156u8, 156u8, 178u8, 117u8, 116u8, 188u8, 20u8, 195u8, 38u8, 212u8, 170u8, 135u8, 115u8, 77u8, 200u8, 90u8, 41u8, 233u8, 9u8, 154u8, 179u8, 79u8, 215u8, 130u8, 181u8, 90u8, 48u8, 253u8, 118u8, 188u8, 229u8, 51u8, 250u8, 133u8, 204u8, 238u8, 179u8, 56u8, 224u8, 147u8, 208u8, 115u8, 0u8, 90u8, 85u8, 60u8, 122u8, 218u8, ], vk_gamme_g2: [ 12u8, 43u8, 16u8, 154u8, 137u8, 15u8, 71u8, 97u8, 3u8, 78u8, 58u8, 129u8, 221u8, 117u8, 211u8, 241u8, 133u8, 4u8, 154u8, 121u8, 180u8, 40u8, 65u8, 74u8, 246u8, 2u8, 28u8, 67u8, 128u8, 92u8, 254u8, 118u8, 16u8, 51u8, 204u8, 58u8, 90u8, 77u8, 51u8, 112u8, 24u8, 69u8, 7u8, 129u8, 138u8, 238u8, 69u8, 254u8, 160u8, 209u8, 1u8, 186u8, 83u8, 118u8, 115u8, 223u8, 155u8, 176u8, 83u8, 115u8, 224u8, 146u8, 213u8, 108u8, 17u8, 195u8, 34u8, 36u8, 122u8, 15u8, 87u8, 70u8, 76u8, 95u8, 125u8, 44u8, 50u8, 23u8, 212u8, 200u8, 51u8, 26u8, 69u8, 65u8, 223u8, 57u8, 132u8, 156u8, 0u8, 250u8, 142u8, 12u8, 199u8, 241u8, 227u8, 117u8, 36u8, 250u8, 82u8, 139u8, 27u8, 132u8, 16u8, 175u8, 66u8, 94u8, 86u8, 54u8, 240u8, 69u8, 3u8, 159u8, 8u8, 177u8, 59u8, 135u8, 188u8, 116u8, 2u8, 235u8, 175u8, 28u8, 116u8, 102u8, 73u8, 209u8, 95u8, 137u8, ], vk_delta_g2: [ 4u8, 230u8, 138u8, 96u8, 103u8, 50u8, 4u8, 145u8, 111u8, 43u8, 44u8, 49u8, 97u8, 199u8, 56u8, 21u8, 104u8, 102u8, 80u8, 148u8, 45u8, 65u8, 75u8, 68u8, 17u8, 198u8, 92u8, 222u8, 0u8, 133u8, 44u8, 169u8, 17u8, 7u8, 74u8, 212u8, 204u8, 238u8, 52u8, 159u8, 131u8, 45u8, 218u8, 77u8, 21u8, 25u8, 157u8, 195u8, 148u8, 151u8, 186u8, 209u8, 48u8, 226u8, 33u8, 172u8, 24u8, 155u8, 56u8, 205u8, 172u8, 207u8, 116u8, 110u8, 44u8, 186u8, 86u8, 166u8, 131u8, 109u8, 133u8, 225u8, 121u8, 181u8, 19u8, 31u8, 105u8, 185u8, 32u8, 29u8, 251u8, 123u8, 34u8, 104u8, 210u8, 94u8, 171u8, 77u8, 217u8, 203u8, 88u8, 58u8, 63u8, 59u8, 223u8, 92u8, 47u8, 22u8, 80u8, 228u8, 8u8, 71u8, 81u8, 114u8, 20u8, 197u8, 229u8, 27u8, 107u8, 153u8, 206u8, 121u8, 67u8, 185u8, 169u8, 122u8, 71u8, 55u8, 231u8, 83u8, 43u8, 236u8, 126u8, 131u8, 18u8, 168u8, 108u8, 216u8, ], vk_ic: &[ [ 17u8, 189u8, 85u8, 227u8, 93u8, 255u8, 110u8, 149u8, 123u8, 108u8, 166u8, 90u8, 241u8, 255u8, 180u8, 162u8, 193u8, 47u8, 7u8, 66u8, 26u8, 215u8, 212u8, 169u8, 57u8, 180u8, 14u8, 37u8, 90u8, 209u8, 37u8, 84u8, 43u8, 4u8, 114u8, 60u8, 88u8, 17u8, 43u8, 226u8, 130u8, 27u8, 92u8, 43u8, 152u8, 121u8, 245u8, 26u8, 167u8, 38u8, 134u8, 154u8, 100u8, 36u8, 234u8, 196u8, 132u8, 110u8, 73u8, 132u8, 166u8, 217u8, 226u8, 152u8, ], [ 15u8, 136u8, 95u8, 116u8, 255u8, 125u8, 173u8, 166u8, 13u8, 68u8, 249u8, 92u8, 152u8, 103u8, 242u8, 229u8, 81u8, 23u8, 130u8, 44u8, 19u8, 133u8, 166u8, 71u8, 140u8, 208u8, 101u8, 82u8, 204u8, 229u8, 152u8, 5u8, 33u8, 238u8, 205u8, 150u8, 159u8, 178u8, 207u8, 183u8, 86u8, 124u8, 101u8, 229u8, 172u8, 89u8, 89u8, 231u8, 172u8, 132u8, 67u8, 234u8, 83u8, 115u8, 237u8, 234u8, 113u8, 226u8, 141u8, 8u8, 121u8, 154u8, 135u8, 195u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/update_10_10.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 30u8, 119u8, 230u8, 5u8, 142u8, 169u8, 127u8, 79u8, 133u8, 69u8, 185u8, 219u8, 240u8, 96u8, 18u8, 100u8, 62u8, 159u8, 233u8, 130u8, 37u8, 150u8, 52u8, 200u8, 122u8, 233u8, 165u8, 53u8, 41u8, 188u8, 14u8, 145u8, 0u8, 157u8, 88u8, 195u8, 32u8, 173u8, 42u8, 51u8, 44u8, 163u8, 96u8, 255u8, 152u8, 13u8, 13u8, 101u8, 126u8, 159u8, 26u8, 139u8, 172u8, 220u8, 63u8, 229u8, 136u8, 164u8, 169u8, 175u8, 169u8, 237u8, 44u8, 171u8, ], vk_beta_g2: [ 0u8, 95u8, 66u8, 106u8, 121u8, 6u8, 69u8, 15u8, 221u8, 61u8, 24u8, 218u8, 128u8, 164u8, 129u8, 197u8, 125u8, 30u8, 252u8, 3u8, 160u8, 83u8, 160u8, 33u8, 202u8, 218u8, 185u8, 133u8, 103u8, 43u8, 225u8, 187u8, 34u8, 228u8, 61u8, 19u8, 29u8, 68u8, 16u8, 141u8, 29u8, 19u8, 223u8, 7u8, 8u8, 86u8, 142u8, 212u8, 3u8, 135u8, 23u8, 74u8, 162u8, 61u8, 247u8, 44u8, 166u8, 224u8, 15u8, 131u8, 206u8, 113u8, 65u8, 156u8, 11u8, 78u8, 253u8, 236u8, 213u8, 49u8, 88u8, 217u8, 252u8, 172u8, 61u8, 174u8, 162u8, 251u8, 195u8, 32u8, 7u8, 67u8, 56u8, 10u8, 72u8, 56u8, 163u8, 180u8, 79u8, 4u8, 78u8, 196u8, 127u8, 120u8, 161u8, 117u8, 18u8, 86u8, 5u8, 31u8, 125u8, 125u8, 184u8, 49u8, 15u8, 49u8, 82u8, 191u8, 130u8, 30u8, 100u8, 15u8, 208u8, 202u8, 93u8, 56u8, 160u8, 136u8, 143u8, 172u8, 58u8, 65u8, 118u8, 220u8, 254u8, 171u8, 122u8, 80u8, ], vk_gamme_g2: [ 6u8, 231u8, 11u8, 40u8, 29u8, 208u8, 243u8, 130u8, 77u8, 195u8, 121u8, 181u8, 185u8, 170u8, 55u8, 102u8, 105u8, 15u8, 215u8, 161u8, 33u8, 66u8, 122u8, 205u8, 221u8, 6u8, 99u8, 79u8, 180u8, 114u8, 172u8, 35u8, 3u8, 68u8, 57u8, 151u8, 45u8, 65u8, 180u8, 81u8, 10u8, 124u8, 110u8, 2u8, 65u8, 140u8, 24u8, 124u8, 147u8, 214u8, 134u8, 239u8, 35u8, 85u8, 241u8, 27u8, 116u8, 114u8, 77u8, 114u8, 251u8, 18u8, 96u8, 130u8, 25u8, 0u8, 20u8, 76u8, 167u8, 165u8, 25u8, 180u8, 130u8, 248u8, 133u8, 50u8, 226u8, 245u8, 9u8, 75u8, 10u8, 33u8, 11u8, 216u8, 110u8, 158u8, 47u8, 59u8, 136u8, 195u8, 139u8, 236u8, 172u8, 42u8, 74u8, 67u8, 30u8, 39u8, 46u8, 20u8, 202u8, 5u8, 197u8, 164u8, 204u8, 180u8, 39u8, 15u8, 177u8, 158u8, 82u8, 46u8, 42u8, 87u8, 100u8, 14u8, 215u8, 95u8, 51u8, 63u8, 87u8, 136u8, 248u8, 36u8, 228u8, 11u8, 93u8, 52u8, ], vk_delta_g2: [ 47u8, 178u8, 32u8, 119u8, 34u8, 221u8, 131u8, 152u8, 19u8, 33u8, 152u8, 77u8, 87u8, 118u8, 159u8, 9u8, 204u8, 171u8, 11u8, 97u8, 84u8, 126u8, 119u8, 89u8, 194u8, 31u8, 211u8, 88u8, 39u8, 59u8, 195u8, 26u8, 18u8, 165u8, 118u8, 19u8, 173u8, 237u8, 133u8, 167u8, 64u8, 163u8, 56u8, 127u8, 62u8, 204u8, 198u8, 69u8, 240u8, 178u8, 136u8, 118u8, 109u8, 118u8, 35u8, 253u8, 145u8, 130u8, 67u8, 28u8, 169u8, 164u8, 38u8, 235u8, 5u8, 96u8, 81u8, 181u8, 15u8, 161u8, 3u8, 104u8, 20u8, 155u8, 45u8, 93u8, 67u8, 236u8, 37u8, 190u8, 78u8, 4u8, 214u8, 49u8, 37u8, 154u8, 129u8, 74u8, 139u8, 223u8, 74u8, 242u8, 172u8, 235u8, 118u8, 251u8, 40u8, 36u8, 149u8, 63u8, 103u8, 187u8, 1u8, 221u8, 33u8, 170u8, 28u8, 74u8, 217u8, 20u8, 78u8, 144u8, 122u8, 123u8, 234u8, 92u8, 221u8, 225u8, 8u8, 84u8, 233u8, 210u8, 89u8, 191u8, 123u8, 141u8, 133u8, 106u8, ], vk_ic: &[ [ 18u8, 33u8, 84u8, 28u8, 99u8, 235u8, 113u8, 135u8, 140u8, 5u8, 110u8, 208u8, 171u8, 239u8, 237u8, 185u8, 61u8, 178u8, 187u8, 123u8, 167u8, 220u8, 32u8, 156u8, 150u8, 207u8, 82u8, 214u8, 14u8, 246u8, 187u8, 222u8, 7u8, 58u8, 237u8, 253u8, 153u8, 236u8, 93u8, 235u8, 193u8, 43u8, 207u8, 222u8, 216u8, 67u8, 221u8, 6u8, 94u8, 152u8, 134u8, 162u8, 185u8, 71u8, 115u8, 203u8, 236u8, 153u8, 141u8, 175u8, 1u8, 188u8, 158u8, 147u8, ], [ 37u8, 10u8, 234u8, 217u8, 186u8, 61u8, 129u8, 255u8, 36u8, 241u8, 15u8, 147u8, 38u8, 203u8, 251u8, 65u8, 194u8, 80u8, 50u8, 64u8, 132u8, 180u8, 33u8, 248u8, 150u8, 99u8, 122u8, 25u8, 208u8, 75u8, 109u8, 55u8, 23u8, 90u8, 130u8, 110u8, 122u8, 37u8, 137u8, 157u8, 5u8, 146u8, 237u8, 139u8, 233u8, 62u8, 102u8, 45u8, 124u8, 5u8, 76u8, 234u8, 5u8, 97u8, 114u8, 235u8, 112u8, 87u8, 0u8, 90u8, 30u8, 131u8, 41u8, 213u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/mod.rs
pub mod inclusion_26_1; pub mod inclusion_26_2; pub mod inclusion_26_3; pub mod inclusion_26_4; pub mod inclusion_26_8; pub mod non_inclusion_26_1; pub mod non_inclusion_26_2; pub mod combined_26_1_1; pub mod combined_26_1_2; pub mod combined_26_2_1; pub mod combined_26_2_2; pub mod combined_26_3_1; pub mod combined_26_3_2; pub mod combined_26_4_1; pub mod combined_26_4_2; pub mod append_with_proofs_26_1; pub mod append_with_proofs_26_10; pub mod append_with_proofs_26_100; pub mod append_with_proofs_26_1000; pub mod append_with_proofs_26_500; pub mod append_with_subtrees_26_1; pub mod append_with_subtrees_26_10; pub mod append_with_subtrees_26_100; pub mod append_with_subtrees_26_1000; pub mod append_with_subtrees_26_500; pub mod update_26_1; pub mod update_26_10; pub mod update_26_100; pub mod update_26_1000; pub mod update_26_500; pub mod address_append_26_1; pub mod address_append_26_10; pub mod address_append_26_100; pub mod address_append_26_1000; pub mod address_append_26_500;
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_40_500.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 7u8, 126u8, 52u8, 91u8, 216u8, 164u8, 175u8, 249u8, 113u8, 125u8, 29u8, 208u8, 206u8, 102u8, 35u8, 111u8, 138u8, 65u8, 249u8, 139u8, 177u8, 37u8, 7u8, 172u8, 155u8, 131u8, 3u8, 123u8, 84u8, 30u8, 99u8, 124u8, 22u8, 45u8, 4u8, 109u8, 201u8, 217u8, 119u8, 181u8, 193u8, 119u8, 34u8, 168u8, 228u8, 100u8, 34u8, 141u8, 238u8, 97u8, 81u8, 63u8, 196u8, 4u8, 49u8, 246u8, 203u8, 222u8, 160u8, 107u8, 28u8, 174u8, 162u8, 121u8, ], vk_beta_g2: [ 9u8, 130u8, 182u8, 87u8, 93u8, 227u8, 254u8, 111u8, 57u8, 163u8, 253u8, 89u8, 196u8, 184u8, 107u8, 137u8, 238u8, 208u8, 183u8, 186u8, 83u8, 216u8, 2u8, 248u8, 157u8, 226u8, 75u8, 95u8, 189u8, 154u8, 255u8, 177u8, 42u8, 101u8, 68u8, 29u8, 252u8, 99u8, 183u8, 116u8, 84u8, 69u8, 176u8, 0u8, 193u8, 227u8, 231u8, 128u8, 90u8, 230u8, 53u8, 9u8, 36u8, 249u8, 64u8, 68u8, 31u8, 10u8, 51u8, 62u8, 194u8, 235u8, 186u8, 216u8, 37u8, 74u8, 34u8, 35u8, 75u8, 72u8, 64u8, 60u8, 127u8, 88u8, 56u8, 197u8, 3u8, 23u8, 84u8, 16u8, 28u8, 5u8, 113u8, 147u8, 164u8, 123u8, 196u8, 192u8, 42u8, 181u8, 255u8, 48u8, 135u8, 139u8, 160u8, 251u8, 16u8, 129u8, 233u8, 71u8, 204u8, 102u8, 199u8, 78u8, 121u8, 36u8, 167u8, 223u8, 100u8, 241u8, 58u8, 233u8, 77u8, 180u8, 212u8, 164u8, 95u8, 215u8, 33u8, 231u8, 191u8, 99u8, 11u8, 216u8, 71u8, 18u8, 141u8, 254u8, ], vk_gamme_g2: [ 11u8, 22u8, 62u8, 127u8, 24u8, 246u8, 144u8, 153u8, 200u8, 46u8, 70u8, 50u8, 77u8, 194u8, 217u8, 76u8, 65u8, 174u8, 12u8, 50u8, 34u8, 231u8, 98u8, 72u8, 27u8, 170u8, 88u8, 243u8, 154u8, 64u8, 151u8, 84u8, 44u8, 58u8, 188u8, 97u8, 248u8, 48u8, 86u8, 217u8, 25u8, 144u8, 62u8, 54u8, 27u8, 15u8, 189u8, 235u8, 73u8, 22u8, 78u8, 193u8, 134u8, 62u8, 158u8, 19u8, 246u8, 192u8, 199u8, 215u8, 217u8, 48u8, 158u8, 218u8, 44u8, 175u8, 87u8, 213u8, 93u8, 220u8, 59u8, 223u8, 188u8, 159u8, 215u8, 194u8, 149u8, 39u8, 105u8, 191u8, 169u8, 181u8, 86u8, 242u8, 44u8, 26u8, 0u8, 25u8, 49u8, 127u8, 28u8, 225u8, 171u8, 178u8, 111u8, 110u8, 20u8, 179u8, 73u8, 75u8, 22u8, 201u8, 148u8, 2u8, 74u8, 169u8, 138u8, 47u8, 59u8, 208u8, 81u8, 146u8, 240u8, 160u8, 146u8, 168u8, 202u8, 47u8, 154u8, 253u8, 78u8, 65u8, 149u8, 233u8, 28u8, 131u8, 221u8, 26u8, ], vk_delta_g2: [ 13u8, 57u8, 136u8, 27u8, 126u8, 161u8, 156u8, 26u8, 69u8, 78u8, 204u8, 10u8, 44u8, 54u8, 211u8, 110u8, 83u8, 23u8, 114u8, 119u8, 236u8, 137u8, 180u8, 41u8, 118u8, 204u8, 45u8, 236u8, 135u8, 81u8, 108u8, 189u8, 5u8, 40u8, 168u8, 141u8, 4u8, 91u8, 197u8, 198u8, 54u8, 142u8, 68u8, 88u8, 171u8, 75u8, 112u8, 187u8, 23u8, 133u8, 61u8, 170u8, 114u8, 184u8, 220u8, 182u8, 201u8, 84u8, 144u8, 183u8, 7u8, 42u8, 58u8, 241u8, 0u8, 206u8, 174u8, 239u8, 75u8, 223u8, 230u8, 82u8, 226u8, 159u8, 10u8, 247u8, 107u8, 113u8, 137u8, 223u8, 184u8, 116u8, 80u8, 255u8, 109u8, 123u8, 219u8, 59u8, 98u8, 230u8, 125u8, 50u8, 123u8, 250u8, 211u8, 137u8, 16u8, 165u8, 43u8, 139u8, 49u8, 253u8, 183u8, 246u8, 113u8, 173u8, 114u8, 194u8, 71u8, 253u8, 33u8, 219u8, 158u8, 10u8, 203u8, 154u8, 199u8, 103u8, 118u8, 63u8, 100u8, 199u8, 201u8, 185u8, 152u8, 228u8, 250u8, 240u8, ], vk_ic: &[ [ 24u8, 244u8, 68u8, 162u8, 151u8, 148u8, 83u8, 235u8, 186u8, 58u8, 221u8, 111u8, 17u8, 2u8, 167u8, 157u8, 19u8, 49u8, 177u8, 45u8, 66u8, 113u8, 129u8, 97u8, 138u8, 20u8, 157u8, 213u8, 96u8, 188u8, 209u8, 35u8, 31u8, 102u8, 185u8, 89u8, 59u8, 176u8, 97u8, 192u8, 244u8, 98u8, 118u8, 8u8, 133u8, 25u8, 165u8, 115u8, 152u8, 236u8, 184u8, 103u8, 234u8, 253u8, 48u8, 95u8, 36u8, 166u8, 154u8, 43u8, 39u8, 153u8, 83u8, 14u8, ], [ 19u8, 55u8, 191u8, 89u8, 139u8, 0u8, 2u8, 140u8, 96u8, 226u8, 83u8, 233u8, 119u8, 218u8, 189u8, 7u8, 95u8, 182u8, 134u8, 6u8, 118u8, 98u8, 2u8, 43u8, 39u8, 161u8, 249u8, 51u8, 225u8, 176u8, 55u8, 103u8, 32u8, 199u8, 164u8, 174u8, 32u8, 70u8, 110u8, 161u8, 170u8, 217u8, 8u8, 25u8, 229u8, 208u8, 132u8, 59u8, 67u8, 83u8, 71u8, 196u8, 11u8, 223u8, 136u8, 171u8, 72u8, 254u8, 253u8, 251u8, 43u8, 64u8, 215u8, 51u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/inclusion_26_4.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 8usize, vk_alpha_g1: [ 14u8, 106u8, 49u8, 124u8, 243u8, 77u8, 216u8, 138u8, 32u8, 107u8, 75u8, 171u8, 209u8, 128u8, 184u8, 232u8, 154u8, 20u8, 74u8, 253u8, 67u8, 217u8, 252u8, 130u8, 130u8, 228u8, 168u8, 80u8, 162u8, 240u8, 146u8, 65u8, 5u8, 171u8, 199u8, 137u8, 180u8, 156u8, 116u8, 19u8, 199u8, 207u8, 143u8, 195u8, 203u8, 206u8, 79u8, 234u8, 179u8, 168u8, 200u8, 52u8, 32u8, 1u8, 176u8, 233u8, 155u8, 212u8, 15u8, 82u8, 103u8, 142u8, 199u8, 46u8, ], vk_beta_g2: [ 24u8, 9u8, 76u8, 10u8, 97u8, 219u8, 150u8, 200u8, 248u8, 138u8, 241u8, 205u8, 214u8, 116u8, 188u8, 181u8, 9u8, 118u8, 245u8, 174u8, 36u8, 249u8, 182u8, 177u8, 5u8, 60u8, 242u8, 113u8, 188u8, 29u8, 190u8, 216u8, 21u8, 207u8, 92u8, 199u8, 92u8, 234u8, 162u8, 250u8, 210u8, 247u8, 196u8, 248u8, 73u8, 84u8, 55u8, 152u8, 191u8, 65u8, 45u8, 83u8, 149u8, 42u8, 31u8, 156u8, 74u8, 40u8, 115u8, 176u8, 142u8, 203u8, 202u8, 216u8, 16u8, 91u8, 29u8, 233u8, 170u8, 38u8, 217u8, 155u8, 173u8, 15u8, 84u8, 247u8, 9u8, 124u8, 154u8, 190u8, 125u8, 215u8, 94u8, 105u8, 132u8, 115u8, 167u8, 18u8, 26u8, 70u8, 142u8, 69u8, 185u8, 160u8, 181u8, 104u8, 28u8, 39u8, 108u8, 182u8, 80u8, 153u8, 83u8, 215u8, 100u8, 138u8, 149u8, 140u8, 163u8, 30u8, 182u8, 125u8, 234u8, 10u8, 215u8, 105u8, 179u8, 239u8, 49u8, 218u8, 251u8, 8u8, 104u8, 15u8, 216u8, 191u8, 141u8, 34u8, ], vk_gamme_g2: [ 48u8, 34u8, 8u8, 228u8, 41u8, 30u8, 65u8, 69u8, 26u8, 88u8, 173u8, 63u8, 186u8, 100u8, 179u8, 87u8, 24u8, 1u8, 38u8, 57u8, 22u8, 228u8, 159u8, 3u8, 127u8, 3u8, 125u8, 52u8, 222u8, 194u8, 231u8, 1u8, 25u8, 243u8, 106u8, 35u8, 139u8, 8u8, 237u8, 228u8, 71u8, 106u8, 207u8, 203u8, 56u8, 77u8, 248u8, 7u8, 200u8, 74u8, 54u8, 245u8, 113u8, 119u8, 177u8, 232u8, 125u8, 3u8, 16u8, 54u8, 159u8, 104u8, 227u8, 151u8, 36u8, 61u8, 121u8, 39u8, 157u8, 231u8, 68u8, 239u8, 142u8, 255u8, 246u8, 220u8, 162u8, 69u8, 171u8, 166u8, 80u8, 45u8, 248u8, 163u8, 210u8, 74u8, 74u8, 6u8, 41u8, 216u8, 20u8, 120u8, 117u8, 184u8, 165u8, 63u8, 36u8, 51u8, 252u8, 212u8, 48u8, 151u8, 204u8, 126u8, 141u8, 144u8, 131u8, 138u8, 196u8, 80u8, 236u8, 12u8, 174u8, 97u8, 126u8, 238u8, 103u8, 116u8, 79u8, 237u8, 162u8, 235u8, 130u8, 205u8, 190u8, 0u8, 136u8, 129u8, ], vk_delta_g2: [ 12u8, 19u8, 223u8, 199u8, 34u8, 145u8, 26u8, 215u8, 109u8, 32u8, 221u8, 2u8, 100u8, 85u8, 240u8, 236u8, 0u8, 141u8, 66u8, 10u8, 224u8, 176u8, 5u8, 201u8, 66u8, 43u8, 151u8, 129u8, 51u8, 85u8, 46u8, 18u8, 7u8, 39u8, 248u8, 161u8, 168u8, 133u8, 11u8, 97u8, 189u8, 145u8, 171u8, 32u8, 167u8, 58u8, 209u8, 223u8, 198u8, 13u8, 138u8, 5u8, 49u8, 111u8, 178u8, 49u8, 234u8, 108u8, 174u8, 233u8, 136u8, 217u8, 213u8, 148u8, 19u8, 60u8, 97u8, 48u8, 127u8, 72u8, 156u8, 217u8, 217u8, 189u8, 12u8, 97u8, 180u8, 57u8, 83u8, 145u8, 114u8, 26u8, 249u8, 120u8, 69u8, 200u8, 236u8, 58u8, 66u8, 56u8, 51u8, 187u8, 74u8, 203u8, 40u8, 60u8, 11u8, 226u8, 151u8, 233u8, 0u8, 169u8, 127u8, 10u8, 7u8, 197u8, 250u8, 4u8, 239u8, 232u8, 214u8, 190u8, 138u8, 0u8, 32u8, 52u8, 141u8, 71u8, 242u8, 156u8, 43u8, 142u8, 236u8, 177u8, 79u8, 198u8, 180u8, 108u8, ], vk_ic: &[ [ 46u8, 6u8, 119u8, 98u8, 45u8, 126u8, 249u8, 39u8, 114u8, 67u8, 111u8, 229u8, 57u8, 130u8, 221u8, 34u8, 116u8, 195u8, 116u8, 163u8, 9u8, 104u8, 160u8, 75u8, 112u8, 253u8, 79u8, 178u8, 139u8, 208u8, 42u8, 187u8, 41u8, 255u8, 199u8, 147u8, 130u8, 52u8, 75u8, 21u8, 246u8, 141u8, 179u8, 204u8, 75u8, 203u8, 38u8, 254u8, 11u8, 144u8, 99u8, 12u8, 32u8, 136u8, 211u8, 199u8, 228u8, 50u8, 158u8, 92u8, 112u8, 28u8, 50u8, 143u8, ], [ 5u8, 40u8, 68u8, 129u8, 229u8, 237u8, 210u8, 8u8, 69u8, 243u8, 7u8, 58u8, 183u8, 71u8, 2u8, 131u8, 145u8, 6u8, 109u8, 70u8, 66u8, 118u8, 223u8, 117u8, 142u8, 217u8, 8u8, 114u8, 123u8, 185u8, 249u8, 69u8, 9u8, 7u8, 8u8, 153u8, 89u8, 69u8, 225u8, 149u8, 63u8, 220u8, 30u8, 149u8, 3u8, 107u8, 238u8, 126u8, 2u8, 213u8, 253u8, 222u8, 8u8, 110u8, 251u8, 124u8, 104u8, 235u8, 181u8, 247u8, 6u8, 134u8, 84u8, 27u8, ], [ 43u8, 123u8, 126u8, 182u8, 11u8, 77u8, 66u8, 82u8, 186u8, 93u8, 240u8, 89u8, 101u8, 0u8, 57u8, 197u8, 196u8, 228u8, 68u8, 96u8, 233u8, 100u8, 122u8, 222u8, 18u8, 233u8, 211u8, 147u8, 244u8, 246u8, 218u8, 216u8, 43u8, 123u8, 60u8, 145u8, 129u8, 183u8, 134u8, 226u8, 30u8, 171u8, 182u8, 151u8, 40u8, 173u8, 248u8, 105u8, 183u8, 37u8, 146u8, 14u8, 79u8, 6u8, 100u8, 199u8, 183u8, 43u8, 176u8, 73u8, 186u8, 72u8, 23u8, 242u8, ], [ 27u8, 84u8, 212u8, 57u8, 212u8, 178u8, 44u8, 210u8, 225u8, 109u8, 231u8, 15u8, 118u8, 172u8, 187u8, 192u8, 207u8, 230u8, 92u8, 123u8, 130u8, 67u8, 142u8, 23u8, 161u8, 212u8, 143u8, 246u8, 34u8, 59u8, 158u8, 70u8, 18u8, 165u8, 185u8, 86u8, 154u8, 95u8, 138u8, 224u8, 149u8, 136u8, 215u8, 124u8, 76u8, 121u8, 51u8, 142u8, 75u8, 110u8, 168u8, 198u8, 173u8, 141u8, 128u8, 131u8, 177u8, 238u8, 36u8, 27u8, 54u8, 25u8, 94u8, 68u8, ], [ 9u8, 222u8, 205u8, 125u8, 22u8, 202u8, 249u8, 27u8, 43u8, 35u8, 181u8, 132u8, 136u8, 241u8, 150u8, 50u8, 176u8, 88u8, 200u8, 1u8, 219u8, 184u8, 201u8, 95u8, 21u8, 97u8, 125u8, 174u8, 88u8, 114u8, 163u8, 62u8, 45u8, 146u8, 216u8, 109u8, 146u8, 101u8, 191u8, 17u8, 66u8, 193u8, 90u8, 63u8, 122u8, 122u8, 140u8, 149u8, 176u8, 102u8, 178u8, 85u8, 157u8, 219u8, 213u8, 53u8, 7u8, 31u8, 99u8, 102u8, 76u8, 62u8, 107u8, 92u8, ], [ 14u8, 171u8, 110u8, 159u8, 244u8, 43u8, 180u8, 175u8, 215u8, 97u8, 182u8, 99u8, 73u8, 151u8, 199u8, 16u8, 94u8, 96u8, 147u8, 5u8, 202u8, 92u8, 93u8, 156u8, 14u8, 190u8, 43u8, 155u8, 227u8, 23u8, 72u8, 18u8, 0u8, 180u8, 17u8, 127u8, 217u8, 141u8, 248u8, 168u8, 39u8, 168u8, 81u8, 116u8, 208u8, 241u8, 212u8, 39u8, 15u8, 238u8, 9u8, 57u8, 57u8, 63u8, 130u8, 84u8, 127u8, 206u8, 147u8, 11u8, 246u8, 171u8, 168u8, 47u8, ], [ 33u8, 42u8, 30u8, 91u8, 166u8, 195u8, 210u8, 47u8, 29u8, 156u8, 12u8, 172u8, 125u8, 29u8, 53u8, 210u8, 33u8, 202u8, 104u8, 18u8, 99u8, 123u8, 212u8, 156u8, 228u8, 220u8, 239u8, 85u8, 210u8, 254u8, 38u8, 56u8, 27u8, 22u8, 3u8, 237u8, 162u8, 0u8, 220u8, 119u8, 234u8, 178u8, 136u8, 237u8, 234u8, 61u8, 47u8, 227u8, 48u8, 201u8, 6u8, 251u8, 92u8, 111u8, 50u8, 245u8, 127u8, 91u8, 117u8, 245u8, 252u8, 248u8, 6u8, 77u8, ], [ 11u8, 17u8, 232u8, 56u8, 80u8, 155u8, 148u8, 160u8, 207u8, 48u8, 92u8, 98u8, 239u8, 190u8, 89u8, 162u8, 23u8, 17u8, 182u8, 112u8, 185u8, 117u8, 169u8, 5u8, 34u8, 76u8, 122u8, 234u8, 2u8, 117u8, 37u8, 117u8, 4u8, 227u8, 1u8, 193u8, 47u8, 107u8, 117u8, 246u8, 28u8, 84u8, 150u8, 53u8, 25u8, 174u8, 47u8, 122u8, 230u8, 225u8, 170u8, 130u8, 204u8, 67u8, 230u8, 102u8, 147u8, 3u8, 24u8, 40u8, 245u8, 115u8, 132u8, 87u8, ], [ 4u8, 191u8, 160u8, 114u8, 169u8, 24u8, 93u8, 186u8, 55u8, 210u8, 116u8, 154u8, 252u8, 192u8, 103u8, 140u8, 227u8, 169u8, 237u8, 166u8, 51u8, 163u8, 8u8, 239u8, 12u8, 16u8, 176u8, 74u8, 66u8, 15u8, 14u8, 239u8, 10u8, 242u8, 61u8, 115u8, 249u8, 222u8, 95u8, 56u8, 199u8, 72u8, 225u8, 10u8, 16u8, 38u8, 129u8, 111u8, 27u8, 179u8, 94u8, 54u8, 185u8, 59u8, 50u8, 24u8, 11u8, 83u8, 1u8, 106u8, 220u8, 159u8, 250u8, 194u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_3_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 8usize, vk_alpha_g1: [ 24u8, 154u8, 95u8, 128u8, 106u8, 129u8, 140u8, 146u8, 207u8, 157u8, 111u8, 91u8, 241u8, 49u8, 48u8, 145u8, 168u8, 91u8, 241u8, 108u8, 183u8, 122u8, 186u8, 38u8, 115u8, 60u8, 132u8, 225u8, 156u8, 120u8, 126u8, 25u8, 19u8, 1u8, 135u8, 66u8, 22u8, 13u8, 183u8, 149u8, 223u8, 248u8, 227u8, 40u8, 8u8, 207u8, 160u8, 190u8, 121u8, 155u8, 102u8, 169u8, 204u8, 180u8, 167u8, 45u8, 243u8, 242u8, 39u8, 202u8, 209u8, 6u8, 86u8, 243u8, ], vk_beta_g2: [ 46u8, 167u8, 24u8, 172u8, 210u8, 62u8, 30u8, 40u8, 83u8, 43u8, 47u8, 183u8, 162u8, 16u8, 33u8, 135u8, 143u8, 80u8, 149u8, 199u8, 59u8, 67u8, 212u8, 3u8, 152u8, 33u8, 114u8, 152u8, 4u8, 249u8, 204u8, 32u8, 37u8, 10u8, 133u8, 48u8, 174u8, 157u8, 215u8, 44u8, 172u8, 174u8, 148u8, 145u8, 104u8, 102u8, 178u8, 144u8, 105u8, 136u8, 35u8, 97u8, 242u8, 148u8, 153u8, 233u8, 213u8, 50u8, 123u8, 34u8, 98u8, 55u8, 230u8, 233u8, 28u8, 149u8, 51u8, 79u8, 114u8, 10u8, 248u8, 101u8, 113u8, 223u8, 23u8, 50u8, 120u8, 253u8, 162u8, 190u8, 102u8, 96u8, 136u8, 37u8, 241u8, 216u8, 128u8, 253u8, 192u8, 83u8, 238u8, 228u8, 75u8, 121u8, 209u8, 241u8, 22u8, 45u8, 110u8, 12u8, 240u8, 36u8, 185u8, 216u8, 79u8, 125u8, 112u8, 115u8, 243u8, 118u8, 162u8, 247u8, 174u8, 238u8, 176u8, 124u8, 177u8, 162u8, 13u8, 51u8, 125u8, 37u8, 16u8, 239u8, 222u8, 50u8, 156u8, 236u8, ], vk_gamme_g2: [ 24u8, 102u8, 234u8, 200u8, 169u8, 43u8, 65u8, 177u8, 46u8, 184u8, 193u8, 43u8, 165u8, 122u8, 114u8, 108u8, 26u8, 107u8, 191u8, 203u8, 102u8, 9u8, 1u8, 96u8, 4u8, 40u8, 120u8, 122u8, 204u8, 158u8, 22u8, 5u8, 0u8, 226u8, 43u8, 32u8, 196u8, 195u8, 19u8, 123u8, 56u8, 58u8, 16u8, 247u8, 23u8, 48u8, 200u8, 37u8, 48u8, 225u8, 190u8, 153u8, 100u8, 8u8, 141u8, 113u8, 22u8, 83u8, 0u8, 83u8, 237u8, 253u8, 73u8, 205u8, 10u8, 39u8, 241u8, 62u8, 231u8, 53u8, 40u8, 106u8, 254u8, 171u8, 72u8, 180u8, 157u8, 197u8, 193u8, 36u8, 54u8, 206u8, 116u8, 34u8, 49u8, 229u8, 182u8, 40u8, 214u8, 181u8, 82u8, 32u8, 255u8, 220u8, 212u8, 160u8, 0u8, 143u8, 8u8, 98u8, 14u8, 28u8, 195u8, 91u8, 159u8, 47u8, 87u8, 73u8, 243u8, 215u8, 102u8, 218u8, 47u8, 9u8, 123u8, 159u8, 55u8, 126u8, 146u8, 4u8, 54u8, 247u8, 239u8, 139u8, 22u8, 226u8, 162u8, 80u8, ], vk_delta_g2: [ 10u8, 76u8, 58u8, 78u8, 19u8, 181u8, 150u8, 37u8, 243u8, 28u8, 84u8, 147u8, 124u8, 150u8, 13u8, 141u8, 121u8, 170u8, 220u8, 125u8, 113u8, 126u8, 207u8, 14u8, 122u8, 204u8, 177u8, 148u8, 181u8, 98u8, 4u8, 44u8, 38u8, 180u8, 249u8, 207u8, 163u8, 188u8, 98u8, 64u8, 119u8, 191u8, 208u8, 174u8, 151u8, 135u8, 209u8, 30u8, 51u8, 241u8, 140u8, 58u8, 63u8, 70u8, 11u8, 29u8, 14u8, 101u8, 167u8, 95u8, 6u8, 102u8, 45u8, 31u8, 38u8, 110u8, 127u8, 42u8, 97u8, 89u8, 128u8, 118u8, 127u8, 230u8, 98u8, 6u8, 34u8, 218u8, 132u8, 232u8, 247u8, 102u8, 36u8, 249u8, 70u8, 61u8, 172u8, 25u8, 107u8, 90u8, 200u8, 142u8, 78u8, 28u8, 197u8, 250u8, 40u8, 73u8, 211u8, 241u8, 169u8, 123u8, 30u8, 73u8, 69u8, 64u8, 208u8, 155u8, 112u8, 124u8, 87u8, 113u8, 166u8, 149u8, 34u8, 173u8, 68u8, 205u8, 113u8, 127u8, 165u8, 67u8, 181u8, 250u8, 47u8, 120u8, 77u8, 243u8, ], vk_ic: &[ [ 15u8, 130u8, 15u8, 255u8, 72u8, 49u8, 120u8, 181u8, 117u8, 15u8, 4u8, 50u8, 182u8, 234u8, 65u8, 9u8, 8u8, 216u8, 62u8, 156u8, 79u8, 124u8, 28u8, 96u8, 26u8, 250u8, 16u8, 165u8, 51u8, 204u8, 244u8, 44u8, 1u8, 13u8, 85u8, 161u8, 15u8, 30u8, 220u8, 201u8, 235u8, 250u8, 194u8, 181u8, 4u8, 207u8, 132u8, 41u8, 190u8, 173u8, 245u8, 167u8, 71u8, 200u8, 0u8, 241u8, 91u8, 166u8, 157u8, 9u8, 63u8, 120u8, 217u8, 106u8, ], [ 2u8, 92u8, 73u8, 120u8, 188u8, 209u8, 17u8, 183u8, 229u8, 233u8, 216u8, 165u8, 86u8, 199u8, 198u8, 36u8, 226u8, 124u8, 80u8, 13u8, 217u8, 125u8, 66u8, 103u8, 73u8, 41u8, 31u8, 176u8, 254u8, 183u8, 169u8, 223u8, 31u8, 215u8, 2u8, 255u8, 215u8, 17u8, 118u8, 131u8, 4u8, 246u8, 147u8, 63u8, 133u8, 15u8, 73u8, 230u8, 46u8, 215u8, 33u8, 103u8, 161u8, 251u8, 87u8, 6u8, 210u8, 228u8, 156u8, 207u8, 98u8, 126u8, 80u8, 11u8, ], [ 33u8, 52u8, 174u8, 155u8, 182u8, 246u8, 84u8, 149u8, 176u8, 0u8, 55u8, 105u8, 193u8, 136u8, 138u8, 119u8, 38u8, 43u8, 51u8, 111u8, 120u8, 125u8, 40u8, 194u8, 240u8, 178u8, 147u8, 105u8, 78u8, 23u8, 147u8, 153u8, 20u8, 29u8, 168u8, 159u8, 90u8, 18u8, 146u8, 1u8, 153u8, 23u8, 76u8, 129u8, 215u8, 35u8, 255u8, 190u8, 68u8, 75u8, 127u8, 227u8, 230u8, 111u8, 150u8, 215u8, 60u8, 63u8, 62u8, 116u8, 16u8, 139u8, 114u8, 16u8, ], [ 13u8, 39u8, 168u8, 215u8, 228u8, 249u8, 41u8, 192u8, 193u8, 147u8, 137u8, 171u8, 68u8, 158u8, 12u8, 8u8, 168u8, 161u8, 37u8, 127u8, 182u8, 120u8, 149u8, 90u8, 109u8, 82u8, 77u8, 208u8, 215u8, 179u8, 92u8, 27u8, 21u8, 127u8, 243u8, 14u8, 143u8, 112u8, 233u8, 93u8, 176u8, 99u8, 39u8, 4u8, 133u8, 153u8, 23u8, 73u8, 74u8, 152u8, 239u8, 96u8, 33u8, 70u8, 142u8, 64u8, 108u8, 137u8, 196u8, 191u8, 125u8, 89u8, 215u8, 17u8, ], [ 44u8, 63u8, 144u8, 9u8, 46u8, 233u8, 75u8, 161u8, 141u8, 236u8, 175u8, 69u8, 21u8, 70u8, 235u8, 170u8, 112u8, 164u8, 24u8, 170u8, 100u8, 21u8, 12u8, 55u8, 232u8, 6u8, 168u8, 253u8, 187u8, 239u8, 243u8, 194u8, 34u8, 238u8, 4u8, 24u8, 20u8, 157u8, 123u8, 86u8, 196u8, 65u8, 91u8, 168u8, 80u8, 248u8, 22u8, 43u8, 41u8, 99u8, 82u8, 191u8, 155u8, 113u8, 200u8, 125u8, 137u8, 132u8, 45u8, 213u8, 86u8, 65u8, 81u8, 200u8, ], [ 20u8, 88u8, 167u8, 153u8, 156u8, 159u8, 157u8, 82u8, 240u8, 120u8, 207u8, 136u8, 208u8, 190u8, 42u8, 189u8, 205u8, 183u8, 224u8, 42u8, 230u8, 80u8, 136u8, 49u8, 144u8, 31u8, 123u8, 139u8, 111u8, 115u8, 207u8, 132u8, 17u8, 128u8, 7u8, 36u8, 71u8, 231u8, 68u8, 166u8, 91u8, 105u8, 53u8, 90u8, 53u8, 150u8, 144u8, 50u8, 35u8, 62u8, 228u8, 128u8, 144u8, 16u8, 92u8, 173u8, 143u8, 99u8, 252u8, 148u8, 100u8, 75u8, 162u8, 252u8, ], [ 29u8, 17u8, 226u8, 168u8, 129u8, 202u8, 187u8, 173u8, 129u8, 175u8, 217u8, 124u8, 8u8, 119u8, 221u8, 140u8, 218u8, 80u8, 224u8, 73u8, 236u8, 64u8, 4u8, 14u8, 23u8, 181u8, 138u8, 237u8, 135u8, 16u8, 73u8, 182u8, 31u8, 248u8, 116u8, 235u8, 100u8, 21u8, 59u8, 246u8, 141u8, 187u8, 57u8, 19u8, 174u8, 19u8, 139u8, 119u8, 245u8, 21u8, 191u8, 105u8, 170u8, 87u8, 83u8, 101u8, 197u8, 172u8, 159u8, 77u8, 159u8, 223u8, 178u8, 49u8, ], [ 33u8, 1u8, 190u8, 184u8, 230u8, 254u8, 34u8, 52u8, 127u8, 88u8, 13u8, 35u8, 182u8, 156u8, 240u8, 109u8, 7u8, 239u8, 81u8, 76u8, 98u8, 96u8, 52u8, 253u8, 232u8, 135u8, 159u8, 26u8, 56u8, 84u8, 15u8, 95u8, 5u8, 114u8, 243u8, 115u8, 193u8, 216u8, 178u8, 27u8, 32u8, 45u8, 10u8, 34u8, 197u8, 70u8, 255u8, 6u8, 117u8, 226u8, 69u8, 205u8, 195u8, 209u8, 68u8, 135u8, 15u8, 215u8, 92u8, 235u8, 75u8, 182u8, 71u8, 192u8, ], [ 25u8, 174u8, 31u8, 6u8, 229u8, 30u8, 51u8, 72u8, 201u8, 188u8, 207u8, 122u8, 123u8, 101u8, 224u8, 94u8, 112u8, 115u8, 157u8, 167u8, 195u8, 105u8, 213u8, 84u8, 63u8, 124u8, 200u8, 110u8, 218u8, 209u8, 9u8, 141u8, 6u8, 41u8, 25u8, 16u8, 49u8, 32u8, 178u8, 60u8, 241u8, 184u8, 177u8, 79u8, 52u8, 145u8, 238u8, 177u8, 127u8, 53u8, 172u8, 173u8, 207u8, 189u8, 96u8, 59u8, 87u8, 250u8, 57u8, 9u8, 248u8, 230u8, 63u8, 92u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_subtrees_26_10.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 33u8, 177u8, 176u8, 53u8, 169u8, 1u8, 35u8, 130u8, 158u8, 228u8, 165u8, 158u8, 113u8, 29u8, 234u8, 194u8, 205u8, 161u8, 123u8, 99u8, 237u8, 114u8, 132u8, 142u8, 87u8, 135u8, 120u8, 12u8, 240u8, 11u8, 225u8, 239u8, 22u8, 80u8, 62u8, 3u8, 196u8, 31u8, 55u8, 24u8, 234u8, 236u8, 53u8, 14u8, 186u8, 67u8, 224u8, 218u8, 179u8, 160u8, 233u8, 249u8, 200u8, 96u8, 31u8, 112u8, 12u8, 191u8, 110u8, 28u8, 211u8, 210u8, 232u8, 217u8, ], vk_beta_g2: [ 24u8, 81u8, 180u8, 25u8, 186u8, 33u8, 186u8, 141u8, 21u8, 24u8, 222u8, 37u8, 36u8, 206u8, 144u8, 249u8, 8u8, 226u8, 56u8, 61u8, 82u8, 154u8, 37u8, 120u8, 37u8, 241u8, 161u8, 199u8, 99u8, 254u8, 32u8, 177u8, 31u8, 255u8, 213u8, 138u8, 246u8, 12u8, 172u8, 15u8, 97u8, 82u8, 159u8, 74u8, 50u8, 23u8, 107u8, 31u8, 249u8, 0u8, 226u8, 244u8, 71u8, 140u8, 143u8, 31u8, 94u8, 125u8, 211u8, 97u8, 126u8, 20u8, 170u8, 149u8, 4u8, 187u8, 31u8, 133u8, 102u8, 68u8, 137u8, 153u8, 117u8, 54u8, 166u8, 198u8, 223u8, 120u8, 186u8, 90u8, 120u8, 38u8, 54u8, 163u8, 228u8, 217u8, 214u8, 48u8, 76u8, 176u8, 209u8, 24u8, 46u8, 199u8, 50u8, 135u8, 2u8, 236u8, 3u8, 43u8, 45u8, 205u8, 32u8, 43u8, 167u8, 214u8, 84u8, 174u8, 122u8, 14u8, 226u8, 242u8, 9u8, 113u8, 219u8, 234u8, 67u8, 200u8, 128u8, 237u8, 243u8, 218u8, 57u8, 112u8, 30u8, 35u8, 68u8, 109u8, ], vk_gamme_g2: [ 15u8, 175u8, 204u8, 231u8, 129u8, 232u8, 190u8, 79u8, 167u8, 143u8, 164u8, 61u8, 100u8, 123u8, 17u8, 197u8, 120u8, 247u8, 213u8, 4u8, 233u8, 39u8, 189u8, 116u8, 86u8, 175u8, 93u8, 17u8, 95u8, 44u8, 11u8, 193u8, 33u8, 123u8, 123u8, 2u8, 23u8, 13u8, 11u8, 85u8, 146u8, 17u8, 37u8, 67u8, 18u8, 38u8, 204u8, 19u8, 9u8, 205u8, 29u8, 78u8, 192u8, 140u8, 201u8, 129u8, 89u8, 126u8, 201u8, 142u8, 202u8, 137u8, 83u8, 52u8, 33u8, 2u8, 147u8, 130u8, 60u8, 132u8, 206u8, 6u8, 200u8, 168u8, 79u8, 103u8, 7u8, 128u8, 227u8, 106u8, 82u8, 25u8, 108u8, 159u8, 52u8, 130u8, 189u8, 202u8, 187u8, 1u8, 130u8, 116u8, 248u8, 88u8, 117u8, 121u8, 43u8, 62u8, 101u8, 182u8, 33u8, 210u8, 121u8, 26u8, 211u8, 48u8, 113u8, 47u8, 202u8, 253u8, 53u8, 114u8, 229u8, 62u8, 236u8, 27u8, 180u8, 127u8, 164u8, 2u8, 73u8, 0u8, 0u8, 114u8, 133u8, 24u8, 63u8, 95u8, ], vk_delta_g2: [ 25u8, 97u8, 254u8, 228u8, 126u8, 117u8, 115u8, 165u8, 3u8, 201u8, 247u8, 131u8, 146u8, 33u8, 191u8, 105u8, 138u8, 28u8, 213u8, 27u8, 16u8, 8u8, 137u8, 113u8, 179u8, 144u8, 230u8, 239u8, 119u8, 123u8, 18u8, 24u8, 10u8, 163u8, 225u8, 91u8, 223u8, 220u8, 76u8, 246u8, 71u8, 40u8, 4u8, 24u8, 241u8, 118u8, 88u8, 52u8, 17u8, 5u8, 107u8, 122u8, 219u8, 179u8, 6u8, 86u8, 14u8, 252u8, 134u8, 155u8, 214u8, 110u8, 105u8, 115u8, 45u8, 195u8, 18u8, 123u8, 218u8, 156u8, 91u8, 247u8, 184u8, 100u8, 119u8, 107u8, 163u8, 108u8, 112u8, 126u8, 57u8, 80u8, 5u8, 234u8, 4u8, 100u8, 8u8, 99u8, 104u8, 115u8, 86u8, 76u8, 203u8, 81u8, 214u8, 40u8, 30u8, 235u8, 10u8, 98u8, 179u8, 238u8, 64u8, 61u8, 37u8, 193u8, 103u8, 200u8, 204u8, 95u8, 183u8, 98u8, 189u8, 221u8, 191u8, 192u8, 58u8, 142u8, 81u8, 93u8, 134u8, 172u8, 54u8, 89u8, 136u8, 150u8, 151u8, 186u8, ], vk_ic: &[ [ 38u8, 25u8, 142u8, 83u8, 214u8, 92u8, 57u8, 48u8, 128u8, 113u8, 100u8, 27u8, 66u8, 210u8, 196u8, 63u8, 71u8, 73u8, 115u8, 88u8, 68u8, 5u8, 140u8, 76u8, 225u8, 140u8, 102u8, 112u8, 96u8, 245u8, 177u8, 78u8, 15u8, 215u8, 67u8, 70u8, 48u8, 201u8, 115u8, 84u8, 251u8, 100u8, 13u8, 241u8, 42u8, 100u8, 24u8, 253u8, 160u8, 199u8, 246u8, 199u8, 235u8, 233u8, 148u8, 196u8, 101u8, 247u8, 94u8, 67u8, 223u8, 244u8, 64u8, 238u8, ], [ 29u8, 49u8, 209u8, 41u8, 52u8, 106u8, 148u8, 134u8, 93u8, 77u8, 98u8, 126u8, 204u8, 182u8, 61u8, 148u8, 172u8, 248u8, 192u8, 157u8, 133u8, 192u8, 148u8, 253u8, 53u8, 219u8, 173u8, 137u8, 95u8, 35u8, 160u8, 102u8, 17u8, 95u8, 175u8, 79u8, 218u8, 9u8, 101u8, 32u8, 211u8, 45u8, 112u8, 219u8, 85u8, 99u8, 93u8, 7u8, 28u8, 17u8, 171u8, 159u8, 231u8, 89u8, 74u8, 29u8, 168u8, 40u8, 85u8, 159u8, 100u8, 93u8, 49u8, 149u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_26_10.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 15u8, 125u8, 211u8, 223u8, 93u8, 144u8, 94u8, 232u8, 7u8, 113u8, 172u8, 156u8, 72u8, 61u8, 35u8, 20u8, 109u8, 222u8, 218u8, 125u8, 213u8, 11u8, 231u8, 252u8, 141u8, 12u8, 184u8, 106u8, 81u8, 125u8, 95u8, 13u8, 40u8, 125u8, 245u8, 185u8, 108u8, 19u8, 74u8, 109u8, 238u8, 73u8, 203u8, 169u8, 251u8, 109u8, 220u8, 148u8, 46u8, 17u8, 91u8, 5u8, 119u8, 113u8, 206u8, 201u8, 63u8, 124u8, 138u8, 131u8, 181u8, 193u8, 186u8, 241u8, ], vk_beta_g2: [ 36u8, 241u8, 16u8, 247u8, 213u8, 126u8, 158u8, 41u8, 52u8, 255u8, 98u8, 106u8, 33u8, 150u8, 29u8, 182u8, 171u8, 130u8, 226u8, 50u8, 117u8, 26u8, 100u8, 199u8, 229u8, 162u8, 34u8, 31u8, 102u8, 37u8, 35u8, 104u8, 48u8, 15u8, 106u8, 114u8, 53u8, 28u8, 30u8, 220u8, 248u8, 127u8, 77u8, 137u8, 176u8, 12u8, 11u8, 159u8, 0u8, 50u8, 216u8, 246u8, 224u8, 34u8, 90u8, 218u8, 82u8, 235u8, 6u8, 115u8, 69u8, 176u8, 207u8, 243u8, 44u8, 0u8, 29u8, 63u8, 217u8, 89u8, 231u8, 194u8, 30u8, 253u8, 61u8, 53u8, 219u8, 109u8, 3u8, 223u8, 195u8, 131u8, 238u8, 79u8, 194u8, 228u8, 25u8, 250u8, 109u8, 117u8, 17u8, 33u8, 146u8, 78u8, 68u8, 254u8, 19u8, 253u8, 117u8, 109u8, 138u8, 184u8, 177u8, 243u8, 147u8, 84u8, 69u8, 37u8, 114u8, 51u8, 189u8, 115u8, 68u8, 50u8, 252u8, 94u8, 175u8, 57u8, 10u8, 121u8, 136u8, 35u8, 43u8, 5u8, 137u8, 66u8, 92u8, 231u8, ], vk_gamme_g2: [ 12u8, 121u8, 75u8, 4u8, 166u8, 201u8, 74u8, 175u8, 222u8, 234u8, 157u8, 16u8, 128u8, 153u8, 119u8, 137u8, 156u8, 229u8, 56u8, 138u8, 135u8, 148u8, 112u8, 80u8, 118u8, 239u8, 13u8, 25u8, 200u8, 170u8, 227u8, 148u8, 9u8, 66u8, 180u8, 99u8, 246u8, 56u8, 159u8, 169u8, 202u8, 232u8, 13u8, 158u8, 120u8, 36u8, 92u8, 158u8, 103u8, 211u8, 45u8, 38u8, 210u8, 250u8, 221u8, 227u8, 108u8, 207u8, 198u8, 114u8, 232u8, 25u8, 98u8, 218u8, 45u8, 26u8, 21u8, 30u8, 114u8, 135u8, 64u8, 41u8, 134u8, 12u8, 191u8, 33u8, 50u8, 181u8, 65u8, 171u8, 169u8, 75u8, 127u8, 246u8, 42u8, 94u8, 238u8, 185u8, 40u8, 199u8, 228u8, 229u8, 175u8, 236u8, 129u8, 28u8, 11u8, 75u8, 244u8, 149u8, 255u8, 19u8, 33u8, 149u8, 132u8, 39u8, 95u8, 25u8, 78u8, 177u8, 20u8, 164u8, 96u8, 66u8, 109u8, 142u8, 77u8, 149u8, 42u8, 149u8, 150u8, 207u8, 127u8, 81u8, 148u8, 85u8, 137u8, 27u8, ], vk_delta_g2: [ 14u8, 143u8, 91u8, 15u8, 0u8, 121u8, 105u8, 6u8, 161u8, 85u8, 20u8, 69u8, 21u8, 205u8, 135u8, 98u8, 27u8, 74u8, 99u8, 121u8, 190u8, 50u8, 254u8, 183u8, 162u8, 202u8, 94u8, 232u8, 248u8, 33u8, 5u8, 65u8, 5u8, 255u8, 215u8, 132u8, 248u8, 36u8, 18u8, 50u8, 140u8, 131u8, 176u8, 221u8, 165u8, 200u8, 203u8, 175u8, 137u8, 191u8, 148u8, 188u8, 91u8, 117u8, 244u8, 84u8, 154u8, 84u8, 145u8, 227u8, 17u8, 0u8, 195u8, 222u8, 33u8, 166u8, 177u8, 194u8, 184u8, 247u8, 30u8, 144u8, 147u8, 174u8, 79u8, 8u8, 42u8, 19u8, 107u8, 51u8, 26u8, 174u8, 183u8, 96u8, 29u8, 43u8, 232u8, 88u8, 121u8, 121u8, 10u8, 221u8, 113u8, 147u8, 93u8, 117u8, 5u8, 43u8, 157u8, 103u8, 213u8, 210u8, 33u8, 255u8, 97u8, 217u8, 111u8, 154u8, 55u8, 51u8, 210u8, 51u8, 255u8, 89u8, 4u8, 62u8, 255u8, 66u8, 74u8, 115u8, 220u8, 228u8, 36u8, 224u8, 219u8, 228u8, 39u8, 145u8, ], vk_ic: &[ [ 22u8, 39u8, 95u8, 109u8, 205u8, 152u8, 195u8, 139u8, 20u8, 183u8, 73u8, 174u8, 152u8, 40u8, 112u8, 14u8, 160u8, 102u8, 102u8, 41u8, 95u8, 163u8, 6u8, 193u8, 31u8, 250u8, 131u8, 39u8, 129u8, 52u8, 224u8, 145u8, 3u8, 183u8, 44u8, 160u8, 32u8, 207u8, 247u8, 93u8, 147u8, 62u8, 18u8, 91u8, 220u8, 115u8, 49u8, 29u8, 237u8, 93u8, 18u8, 183u8, 13u8, 126u8, 107u8, 175u8, 160u8, 23u8, 200u8, 98u8, 111u8, 130u8, 72u8, 245u8, ], [ 17u8, 125u8, 92u8, 0u8, 128u8, 124u8, 49u8, 56u8, 151u8, 158u8, 105u8, 164u8, 102u8, 67u8, 203u8, 111u8, 47u8, 196u8, 155u8, 142u8, 128u8, 61u8, 43u8, 32u8, 84u8, 129u8, 116u8, 7u8, 143u8, 21u8, 117u8, 173u8, 33u8, 198u8, 188u8, 133u8, 176u8, 50u8, 125u8, 202u8, 246u8, 222u8, 118u8, 39u8, 235u8, 252u8, 232u8, 85u8, 24u8, 168u8, 247u8, 32u8, 223u8, 197u8, 252u8, 79u8, 78u8, 227u8, 75u8, 98u8, 149u8, 156u8, 170u8, 94u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/update_26_1000.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 25u8, 231u8, 121u8, 61u8, 174u8, 206u8, 15u8, 183u8, 198u8, 140u8, 174u8, 102u8, 147u8, 247u8, 61u8, 109u8, 110u8, 203u8, 224u8, 200u8, 29u8, 165u8, 146u8, 22u8, 63u8, 76u8, 105u8, 66u8, 108u8, 161u8, 99u8, 91u8, 39u8, 245u8, 189u8, 78u8, 219u8, 108u8, 35u8, 249u8, 157u8, 174u8, 160u8, 229u8, 135u8, 168u8, 190u8, 245u8, 11u8, 16u8, 166u8, 47u8, 193u8, 244u8, 133u8, 99u8, 158u8, 111u8, 0u8, 113u8, 62u8, 202u8, 239u8, 103u8, ], vk_beta_g2: [ 38u8, 184u8, 216u8, 73u8, 240u8, 251u8, 50u8, 111u8, 146u8, 110u8, 249u8, 177u8, 205u8, 162u8, 111u8, 117u8, 2u8, 221u8, 45u8, 102u8, 140u8, 25u8, 37u8, 54u8, 176u8, 199u8, 144u8, 53u8, 171u8, 177u8, 103u8, 88u8, 26u8, 157u8, 4u8, 240u8, 238u8, 218u8, 178u8, 20u8, 175u8, 64u8, 247u8, 160u8, 31u8, 223u8, 92u8, 123u8, 200u8, 191u8, 193u8, 42u8, 81u8, 19u8, 79u8, 185u8, 184u8, 128u8, 105u8, 130u8, 191u8, 122u8, 103u8, 129u8, 31u8, 85u8, 99u8, 25u8, 214u8, 61u8, 188u8, 63u8, 33u8, 90u8, 145u8, 195u8, 182u8, 170u8, 50u8, 104u8, 188u8, 208u8, 203u8, 197u8, 196u8, 71u8, 54u8, 47u8, 118u8, 46u8, 236u8, 46u8, 221u8, 107u8, 24u8, 98u8, 12u8, 208u8, 51u8, 219u8, 26u8, 250u8, 17u8, 120u8, 250u8, 151u8, 66u8, 119u8, 235u8, 8u8, 128u8, 53u8, 3u8, 153u8, 19u8, 147u8, 127u8, 63u8, 125u8, 197u8, 71u8, 108u8, 163u8, 105u8, 53u8, 212u8, 146u8, 251u8, ], vk_gamme_g2: [ 40u8, 34u8, 56u8, 111u8, 37u8, 192u8, 220u8, 81u8, 179u8, 210u8, 206u8, 146u8, 164u8, 19u8, 80u8, 103u8, 107u8, 60u8, 210u8, 30u8, 96u8, 85u8, 248u8, 33u8, 143u8, 119u8, 172u8, 181u8, 78u8, 124u8, 47u8, 90u8, 3u8, 252u8, 87u8, 187u8, 225u8, 7u8, 221u8, 102u8, 61u8, 30u8, 54u8, 238u8, 181u8, 32u8, 60u8, 163u8, 163u8, 242u8, 211u8, 118u8, 123u8, 13u8, 23u8, 135u8, 208u8, 74u8, 25u8, 144u8, 222u8, 136u8, 165u8, 79u8, 20u8, 18u8, 182u8, 152u8, 217u8, 168u8, 84u8, 39u8, 119u8, 46u8, 13u8, 42u8, 204u8, 242u8, 85u8, 42u8, 99u8, 237u8, 58u8, 22u8, 164u8, 154u8, 124u8, 227u8, 74u8, 216u8, 112u8, 123u8, 94u8, 113u8, 195u8, 63u8, 34u8, 221u8, 41u8, 128u8, 222u8, 58u8, 59u8, 232u8, 185u8, 120u8, 81u8, 14u8, 100u8, 222u8, 237u8, 217u8, 126u8, 33u8, 93u8, 46u8, 86u8, 168u8, 52u8, 68u8, 61u8, 145u8, 40u8, 175u8, 210u8, 226u8, 218u8, 242u8, ], vk_delta_g2: [ 10u8, 48u8, 220u8, 152u8, 13u8, 254u8, 11u8, 143u8, 150u8, 4u8, 223u8, 203u8, 118u8, 248u8, 40u8, 146u8, 213u8, 154u8, 32u8, 50u8, 61u8, 245u8, 1u8, 244u8, 139u8, 225u8, 164u8, 131u8, 2u8, 77u8, 229u8, 185u8, 10u8, 140u8, 19u8, 192u8, 167u8, 106u8, 81u8, 222u8, 145u8, 198u8, 44u8, 50u8, 126u8, 8u8, 239u8, 18u8, 253u8, 109u8, 93u8, 151u8, 45u8, 213u8, 14u8, 223u8, 91u8, 136u8, 248u8, 239u8, 37u8, 232u8, 57u8, 55u8, 9u8, 49u8, 193u8, 227u8, 60u8, 198u8, 205u8, 207u8, 127u8, 214u8, 46u8, 166u8, 59u8, 166u8, 164u8, 119u8, 62u8, 29u8, 177u8, 245u8, 106u8, 11u8, 107u8, 57u8, 63u8, 133u8, 81u8, 194u8, 93u8, 173u8, 196u8, 220u8, 3u8, 226u8, 58u8, 46u8, 173u8, 115u8, 130u8, 192u8, 154u8, 63u8, 126u8, 231u8, 121u8, 158u8, 123u8, 161u8, 128u8, 152u8, 35u8, 160u8, 152u8, 73u8, 103u8, 72u8, 219u8, 25u8, 6u8, 247u8, 243u8, 1u8, 138u8, 98u8, ], vk_ic: &[ [ 9u8, 102u8, 255u8, 192u8, 13u8, 176u8, 89u8, 199u8, 39u8, 117u8, 73u8, 175u8, 139u8, 129u8, 182u8, 21u8, 2u8, 227u8, 10u8, 23u8, 147u8, 136u8, 138u8, 28u8, 132u8, 137u8, 151u8, 8u8, 91u8, 118u8, 148u8, 125u8, 41u8, 5u8, 74u8, 155u8, 174u8, 151u8, 158u8, 246u8, 147u8, 203u8, 227u8, 23u8, 111u8, 150u8, 205u8, 227u8, 79u8, 227u8, 152u8, 33u8, 46u8, 202u8, 191u8, 167u8, 75u8, 145u8, 151u8, 88u8, 192u8, 35u8, 174u8, 231u8, ], [ 5u8, 25u8, 135u8, 241u8, 22u8, 78u8, 218u8, 228u8, 106u8, 86u8, 139u8, 33u8, 28u8, 237u8, 51u8, 121u8, 98u8, 196u8, 3u8, 199u8, 173u8, 151u8, 68u8, 111u8, 194u8, 162u8, 24u8, 204u8, 170u8, 198u8, 211u8, 52u8, 25u8, 176u8, 241u8, 1u8, 120u8, 227u8, 139u8, 209u8, 41u8, 59u8, 25u8, 215u8, 49u8, 61u8, 243u8, 112u8, 57u8, 131u8, 176u8, 224u8, 119u8, 55u8, 220u8, 188u8, 202u8, 199u8, 107u8, 46u8, 71u8, 63u8, 211u8, 149u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_subtrees_26_1000.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 16u8, 205u8, 128u8, 105u8, 82u8, 67u8, 90u8, 237u8, 230u8, 30u8, 214u8, 218u8, 95u8, 216u8, 112u8, 63u8, 246u8, 216u8, 89u8, 173u8, 220u8, 188u8, 241u8, 137u8, 210u8, 59u8, 173u8, 198u8, 133u8, 46u8, 104u8, 94u8, 27u8, 121u8, 67u8, 199u8, 155u8, 119u8, 169u8, 85u8, 68u8, 125u8, 107u8, 107u8, 123u8, 179u8, 155u8, 141u8, 23u8, 210u8, 52u8, 206u8, 118u8, 49u8, 109u8, 96u8, 35u8, 161u8, 139u8, 32u8, 186u8, 99u8, 79u8, 71u8, ], vk_beta_g2: [ 31u8, 142u8, 44u8, 26u8, 19u8, 160u8, 193u8, 189u8, 218u8, 97u8, 176u8, 150u8, 66u8, 34u8, 152u8, 90u8, 110u8, 6u8, 15u8, 167u8, 210u8, 114u8, 1u8, 196u8, 199u8, 101u8, 34u8, 1u8, 161u8, 158u8, 189u8, 78u8, 23u8, 27u8, 78u8, 106u8, 113u8, 90u8, 34u8, 157u8, 41u8, 10u8, 41u8, 82u8, 35u8, 201u8, 134u8, 90u8, 170u8, 192u8, 21u8, 220u8, 198u8, 9u8, 234u8, 127u8, 128u8, 139u8, 25u8, 42u8, 12u8, 57u8, 150u8, 177u8, 34u8, 234u8, 173u8, 79u8, 141u8, 204u8, 26u8, 132u8, 237u8, 236u8, 113u8, 103u8, 225u8, 129u8, 81u8, 116u8, 192u8, 28u8, 42u8, 188u8, 201u8, 162u8, 117u8, 197u8, 241u8, 210u8, 14u8, 252u8, 56u8, 99u8, 122u8, 158u8, 1u8, 148u8, 242u8, 208u8, 68u8, 217u8, 49u8, 106u8, 38u8, 215u8, 82u8, 61u8, 11u8, 50u8, 2u8, 181u8, 192u8, 244u8, 219u8, 202u8, 57u8, 62u8, 220u8, 26u8, 46u8, 239u8, 12u8, 244u8, 134u8, 195u8, 169u8, 20u8, ], vk_gamme_g2: [ 42u8, 124u8, 17u8, 141u8, 139u8, 144u8, 53u8, 207u8, 79u8, 39u8, 59u8, 72u8, 97u8, 103u8, 37u8, 100u8, 79u8, 210u8, 84u8, 108u8, 238u8, 194u8, 135u8, 181u8, 121u8, 250u8, 163u8, 71u8, 200u8, 145u8, 182u8, 54u8, 25u8, 117u8, 179u8, 124u8, 138u8, 228u8, 29u8, 252u8, 166u8, 8u8, 90u8, 0u8, 128u8, 128u8, 143u8, 180u8, 255u8, 1u8, 12u8, 25u8, 108u8, 207u8, 209u8, 144u8, 195u8, 240u8, 41u8, 68u8, 24u8, 86u8, 91u8, 152u8, 1u8, 118u8, 171u8, 161u8, 253u8, 177u8, 7u8, 237u8, 195u8, 161u8, 249u8, 47u8, 61u8, 25u8, 86u8, 15u8, 154u8, 134u8, 135u8, 1u8, 199u8, 192u8, 185u8, 18u8, 127u8, 255u8, 35u8, 193u8, 56u8, 239u8, 95u8, 77u8, 38u8, 142u8, 58u8, 80u8, 31u8, 207u8, 9u8, 104u8, 38u8, 22u8, 24u8, 153u8, 32u8, 230u8, 9u8, 244u8, 75u8, 76u8, 0u8, 216u8, 114u8, 244u8, 184u8, 165u8, 138u8, 252u8, 117u8, 4u8, 177u8, 93u8, 201u8, 179u8, ], vk_delta_g2: [ 22u8, 22u8, 30u8, 218u8, 176u8, 55u8, 57u8, 104u8, 54u8, 40u8, 227u8, 144u8, 68u8, 195u8, 90u8, 169u8, 80u8, 255u8, 123u8, 202u8, 244u8, 31u8, 24u8, 9u8, 54u8, 69u8, 206u8, 26u8, 147u8, 211u8, 187u8, 20u8, 24u8, 69u8, 158u8, 199u8, 109u8, 6u8, 39u8, 143u8, 74u8, 128u8, 9u8, 175u8, 238u8, 145u8, 28u8, 105u8, 160u8, 56u8, 188u8, 63u8, 75u8, 164u8, 212u8, 118u8, 104u8, 132u8, 227u8, 212u8, 99u8, 21u8, 164u8, 93u8, 12u8, 8u8, 69u8, 51u8, 109u8, 96u8, 213u8, 196u8, 113u8, 193u8, 159u8, 126u8, 9u8, 248u8, 123u8, 134u8, 25u8, 75u8, 12u8, 153u8, 74u8, 167u8, 184u8, 120u8, 159u8, 40u8, 143u8, 136u8, 45u8, 212u8, 224u8, 147u8, 19u8, 47u8, 215u8, 246u8, 62u8, 155u8, 230u8, 42u8, 42u8, 35u8, 9u8, 162u8, 149u8, 48u8, 187u8, 169u8, 226u8, 66u8, 234u8, 54u8, 231u8, 64u8, 254u8, 59u8, 117u8, 127u8, 8u8, 239u8, 75u8, 116u8, 80u8, 168u8, ], vk_ic: &[ [ 4u8, 254u8, 110u8, 225u8, 141u8, 166u8, 48u8, 35u8, 153u8, 138u8, 55u8, 124u8, 123u8, 72u8, 97u8, 114u8, 230u8, 95u8, 122u8, 213u8, 235u8, 169u8, 142u8, 161u8, 68u8, 122u8, 141u8, 87u8, 227u8, 23u8, 235u8, 1u8, 1u8, 188u8, 83u8, 112u8, 147u8, 241u8, 221u8, 241u8, 73u8, 203u8, 79u8, 59u8, 216u8, 16u8, 241u8, 23u8, 121u8, 29u8, 242u8, 191u8, 15u8, 101u8, 102u8, 56u8, 18u8, 199u8, 36u8, 114u8, 94u8, 24u8, 97u8, 129u8, ], [ 4u8, 208u8, 70u8, 33u8, 134u8, 115u8, 177u8, 7u8, 209u8, 246u8, 147u8, 11u8, 144u8, 105u8, 247u8, 103u8, 123u8, 104u8, 139u8, 76u8, 169u8, 15u8, 24u8, 239u8, 213u8, 133u8, 123u8, 159u8, 233u8, 2u8, 100u8, 164u8, 41u8, 132u8, 59u8, 175u8, 250u8, 36u8, 25u8, 153u8, 70u8, 61u8, 30u8, 49u8, 118u8, 104u8, 209u8, 202u8, 160u8, 153u8, 73u8, 148u8, 132u8, 74u8, 106u8, 249u8, 18u8, 214u8, 219u8, 165u8, 129u8, 177u8, 39u8, 120u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_2_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 6usize, vk_alpha_g1: [ 16u8, 96u8, 4u8, 239u8, 127u8, 241u8, 166u8, 89u8, 173u8, 125u8, 142u8, 175u8, 96u8, 190u8, 18u8, 173u8, 222u8, 1u8, 155u8, 230u8, 31u8, 200u8, 142u8, 120u8, 62u8, 217u8, 143u8, 71u8, 92u8, 153u8, 149u8, 238u8, 17u8, 186u8, 172u8, 16u8, 4u8, 71u8, 40u8, 76u8, 53u8, 150u8, 213u8, 21u8, 227u8, 19u8, 62u8, 164u8, 208u8, 79u8, 108u8, 207u8, 249u8, 196u8, 199u8, 128u8, 78u8, 227u8, 133u8, 222u8, 162u8, 205u8, 222u8, 18u8, ], vk_beta_g2: [ 43u8, 183u8, 73u8, 133u8, 219u8, 89u8, 18u8, 110u8, 34u8, 44u8, 93u8, 136u8, 213u8, 211u8, 98u8, 15u8, 48u8, 236u8, 242u8, 195u8, 221u8, 78u8, 177u8, 228u8, 232u8, 244u8, 248u8, 85u8, 108u8, 136u8, 161u8, 33u8, 16u8, 243u8, 215u8, 163u8, 25u8, 183u8, 119u8, 240u8, 230u8, 116u8, 219u8, 133u8, 248u8, 180u8, 181u8, 99u8, 15u8, 46u8, 82u8, 83u8, 151u8, 165u8, 12u8, 103u8, 200u8, 237u8, 127u8, 228u8, 222u8, 56u8, 125u8, 240u8, 46u8, 133u8, 177u8, 183u8, 142u8, 16u8, 128u8, 247u8, 125u8, 19u8, 118u8, 197u8, 140u8, 100u8, 207u8, 123u8, 198u8, 23u8, 90u8, 125u8, 93u8, 232u8, 117u8, 251u8, 56u8, 180u8, 120u8, 188u8, 17u8, 161u8, 108u8, 5u8, 43u8, 235u8, 120u8, 156u8, 233u8, 227u8, 138u8, 67u8, 212u8, 209u8, 102u8, 81u8, 179u8, 230u8, 17u8, 147u8, 147u8, 148u8, 156u8, 78u8, 119u8, 125u8, 130u8, 79u8, 240u8, 90u8, 86u8, 146u8, 80u8, 221u8, 216u8, 41u8, ], vk_gamme_g2: [ 6u8, 134u8, 190u8, 94u8, 130u8, 173u8, 54u8, 121u8, 232u8, 179u8, 22u8, 133u8, 191u8, 8u8, 255u8, 18u8, 222u8, 30u8, 2u8, 200u8, 133u8, 3u8, 8u8, 205u8, 59u8, 178u8, 160u8, 148u8, 135u8, 52u8, 104u8, 172u8, 36u8, 90u8, 73u8, 255u8, 69u8, 155u8, 63u8, 219u8, 79u8, 138u8, 255u8, 3u8, 88u8, 116u8, 13u8, 109u8, 51u8, 20u8, 160u8, 163u8, 84u8, 91u8, 177u8, 72u8, 24u8, 187u8, 194u8, 221u8, 248u8, 116u8, 214u8, 179u8, 13u8, 238u8, 82u8, 17u8, 86u8, 223u8, 40u8, 26u8, 160u8, 111u8, 153u8, 63u8, 178u8, 147u8, 215u8, 224u8, 84u8, 192u8, 54u8, 236u8, 32u8, 19u8, 204u8, 172u8, 108u8, 26u8, 125u8, 252u8, 40u8, 89u8, 64u8, 234u8, 0u8, 101u8, 98u8, 69u8, 249u8, 150u8, 99u8, 121u8, 148u8, 224u8, 122u8, 130u8, 187u8, 129u8, 61u8, 170u8, 34u8, 247u8, 179u8, 74u8, 46u8, 190u8, 75u8, 244u8, 175u8, 109u8, 146u8, 23u8, 176u8, 26u8, 31u8, 116u8, ], vk_delta_g2: [ 31u8, 255u8, 48u8, 97u8, 18u8, 167u8, 126u8, 79u8, 248u8, 194u8, 203u8, 162u8, 69u8, 52u8, 140u8, 91u8, 87u8, 105u8, 35u8, 215u8, 151u8, 95u8, 194u8, 39u8, 12u8, 87u8, 143u8, 151u8, 191u8, 97u8, 8u8, 200u8, 13u8, 217u8, 32u8, 50u8, 156u8, 208u8, 142u8, 235u8, 23u8, 170u8, 87u8, 151u8, 10u8, 11u8, 15u8, 115u8, 43u8, 150u8, 77u8, 131u8, 76u8, 174u8, 168u8, 55u8, 226u8, 110u8, 231u8, 211u8, 76u8, 57u8, 221u8, 41u8, 35u8, 113u8, 141u8, 50u8, 227u8, 154u8, 204u8, 123u8, 240u8, 21u8, 184u8, 54u8, 40u8, 17u8, 229u8, 207u8, 200u8, 153u8, 193u8, 182u8, 136u8, 111u8, 197u8, 109u8, 130u8, 65u8, 23u8, 202u8, 99u8, 178u8, 166u8, 195u8, 5u8, 183u8, 75u8, 2u8, 212u8, 147u8, 152u8, 202u8, 15u8, 54u8, 81u8, 177u8, 227u8, 105u8, 121u8, 249u8, 203u8, 60u8, 54u8, 170u8, 244u8, 196u8, 69u8, 171u8, 190u8, 223u8, 189u8, 32u8, 131u8, 102u8, 133u8, 54u8, ], vk_ic: &[ [ 29u8, 37u8, 13u8, 194u8, 80u8, 218u8, 113u8, 159u8, 11u8, 117u8, 107u8, 44u8, 72u8, 44u8, 194u8, 189u8, 11u8, 159u8, 248u8, 243u8, 115u8, 221u8, 2u8, 175u8, 203u8, 200u8, 113u8, 243u8, 160u8, 153u8, 20u8, 145u8, 42u8, 146u8, 218u8, 56u8, 199u8, 1u8, 68u8, 229u8, 159u8, 228u8, 237u8, 202u8, 166u8, 154u8, 79u8, 225u8, 115u8, 184u8, 239u8, 121u8, 103u8, 160u8, 157u8, 94u8, 185u8, 143u8, 54u8, 133u8, 212u8, 219u8, 239u8, 207u8, ], [ 18u8, 42u8, 46u8, 66u8, 46u8, 190u8, 241u8, 37u8, 27u8, 20u8, 44u8, 153u8, 223u8, 221u8, 217u8, 11u8, 93u8, 23u8, 247u8, 221u8, 203u8, 170u8, 219u8, 122u8, 245u8, 22u8, 191u8, 210u8, 8u8, 212u8, 82u8, 173u8, 31u8, 138u8, 13u8, 103u8, 251u8, 83u8, 246u8, 211u8, 248u8, 52u8, 106u8, 120u8, 254u8, 173u8, 199u8, 77u8, 15u8, 195u8, 141u8, 37u8, 154u8, 154u8, 130u8, 146u8, 122u8, 240u8, 184u8, 245u8, 89u8, 14u8, 75u8, 28u8, ], [ 19u8, 219u8, 153u8, 170u8, 114u8, 143u8, 189u8, 225u8, 47u8, 147u8, 39u8, 107u8, 111u8, 161u8, 6u8, 2u8, 8u8, 140u8, 93u8, 231u8, 176u8, 143u8, 104u8, 152u8, 51u8, 191u8, 20u8, 71u8, 134u8, 108u8, 83u8, 94u8, 3u8, 191u8, 123u8, 56u8, 62u8, 50u8, 235u8, 186u8, 205u8, 251u8, 170u8, 204u8, 160u8, 229u8, 76u8, 220u8, 101u8, 62u8, 0u8, 186u8, 151u8, 53u8, 140u8, 255u8, 169u8, 17u8, 91u8, 102u8, 49u8, 249u8, 151u8, 115u8, ], [ 43u8, 35u8, 172u8, 181u8, 232u8, 12u8, 165u8, 224u8, 110u8, 175u8, 254u8, 11u8, 176u8, 85u8, 101u8, 195u8, 71u8, 119u8, 200u8, 125u8, 167u8, 46u8, 143u8, 29u8, 81u8, 202u8, 185u8, 142u8, 41u8, 128u8, 137u8, 126u8, 22u8, 232u8, 3u8, 208u8, 155u8, 239u8, 53u8, 118u8, 27u8, 133u8, 166u8, 91u8, 236u8, 146u8, 36u8, 3u8, 103u8, 104u8, 159u8, 39u8, 250u8, 3u8, 72u8, 128u8, 24u8, 109u8, 17u8, 18u8, 210u8, 23u8, 241u8, 93u8, ], [ 0u8, 164u8, 96u8, 244u8, 58u8, 84u8, 169u8, 192u8, 178u8, 154u8, 26u8, 56u8, 131u8, 188u8, 120u8, 33u8, 89u8, 166u8, 25u8, 209u8, 251u8, 142u8, 87u8, 212u8, 122u8, 94u8, 153u8, 48u8, 105u8, 146u8, 234u8, 155u8, 15u8, 229u8, 123u8, 253u8, 10u8, 188u8, 64u8, 98u8, 59u8, 105u8, 173u8, 110u8, 207u8, 139u8, 64u8, 221u8, 54u8, 178u8, 223u8, 235u8, 43u8, 106u8, 108u8, 46u8, 128u8, 239u8, 29u8, 184u8, 67u8, 122u8, 99u8, 127u8, ], [ 0u8, 208u8, 156u8, 40u8, 151u8, 104u8, 230u8, 94u8, 158u8, 23u8, 242u8, 80u8, 202u8, 136u8, 124u8, 126u8, 52u8, 50u8, 45u8, 1u8, 4u8, 213u8, 245u8, 127u8, 188u8, 67u8, 121u8, 113u8, 100u8, 27u8, 114u8, 210u8, 21u8, 93u8, 125u8, 162u8, 74u8, 171u8, 121u8, 244u8, 183u8, 74u8, 25u8, 231u8, 7u8, 47u8, 170u8, 246u8, 17u8, 152u8, 86u8, 108u8, 101u8, 101u8, 100u8, 235u8, 184u8, 72u8, 191u8, 40u8, 183u8, 193u8, 141u8, 34u8, ], [ 24u8, 105u8, 97u8, 171u8, 183u8, 160u8, 50u8, 68u8, 5u8, 35u8, 171u8, 112u8, 208u8, 251u8, 245u8, 79u8, 96u8, 97u8, 4u8, 213u8, 241u8, 88u8, 227u8, 225u8, 142u8, 23u8, 214u8, 100u8, 110u8, 112u8, 96u8, 8u8, 1u8, 113u8, 255u8, 95u8, 55u8, 56u8, 168u8, 144u8, 123u8, 49u8, 43u8, 214u8, 125u8, 51u8, 49u8, 31u8, 255u8, 160u8, 18u8, 49u8, 57u8, 174u8, 103u8, 72u8, 253u8, 112u8, 230u8, 107u8, 225u8, 201u8, 79u8, 193u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_proofs_26_500.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 33u8, 198u8, 24u8, 113u8, 74u8, 188u8, 22u8, 212u8, 204u8, 217u8, 228u8, 11u8, 13u8, 20u8, 154u8, 84u8, 128u8, 251u8, 185u8, 243u8, 137u8, 232u8, 10u8, 58u8, 29u8, 195u8, 102u8, 74u8, 91u8, 204u8, 178u8, 232u8, 46u8, 100u8, 217u8, 15u8, 99u8, 86u8, 168u8, 79u8, 145u8, 18u8, 103u8, 184u8, 114u8, 147u8, 147u8, 28u8, 172u8, 156u8, 43u8, 60u8, 238u8, 108u8, 227u8, 205u8, 11u8, 100u8, 71u8, 60u8, 103u8, 43u8, 244u8, 243u8, ], vk_beta_g2: [ 13u8, 89u8, 243u8, 182u8, 77u8, 66u8, 95u8, 22u8, 7u8, 44u8, 12u8, 135u8, 40u8, 37u8, 129u8, 15u8, 237u8, 194u8, 114u8, 49u8, 91u8, 31u8, 173u8, 103u8, 187u8, 44u8, 253u8, 40u8, 83u8, 165u8, 244u8, 81u8, 6u8, 176u8, 173u8, 208u8, 156u8, 173u8, 116u8, 182u8, 141u8, 160u8, 241u8, 29u8, 87u8, 208u8, 25u8, 34u8, 218u8, 82u8, 0u8, 181u8, 29u8, 56u8, 45u8, 191u8, 37u8, 152u8, 53u8, 9u8, 63u8, 48u8, 159u8, 163u8, 1u8, 135u8, 206u8, 132u8, 20u8, 86u8, 25u8, 153u8, 33u8, 232u8, 206u8, 134u8, 88u8, 95u8, 200u8, 136u8, 180u8, 100u8, 19u8, 236u8, 5u8, 86u8, 15u8, 182u8, 115u8, 189u8, 101u8, 233u8, 26u8, 111u8, 202u8, 47u8, 33u8, 131u8, 201u8, 232u8, 175u8, 32u8, 77u8, 233u8, 34u8, 44u8, 138u8, 108u8, 61u8, 150u8, 211u8, 6u8, 11u8, 255u8, 154u8, 142u8, 166u8, 61u8, 197u8, 105u8, 82u8, 121u8, 4u8, 155u8, 171u8, 113u8, 105u8, 118u8, ], vk_gamme_g2: [ 21u8, 42u8, 166u8, 127u8, 190u8, 21u8, 229u8, 129u8, 224u8, 103u8, 142u8, 105u8, 252u8, 34u8, 43u8, 129u8, 191u8, 242u8, 211u8, 122u8, 232u8, 209u8, 47u8, 103u8, 146u8, 216u8, 208u8, 0u8, 197u8, 59u8, 99u8, 210u8, 6u8, 96u8, 80u8, 232u8, 134u8, 195u8, 153u8, 111u8, 129u8, 111u8, 221u8, 44u8, 12u8, 26u8, 151u8, 7u8, 63u8, 86u8, 189u8, 34u8, 38u8, 77u8, 55u8, 212u8, 175u8, 225u8, 29u8, 80u8, 99u8, 127u8, 154u8, 185u8, 17u8, 50u8, 227u8, 43u8, 179u8, 226u8, 234u8, 122u8, 24u8, 241u8, 49u8, 148u8, 142u8, 177u8, 121u8, 59u8, 225u8, 28u8, 80u8, 138u8, 184u8, 87u8, 88u8, 31u8, 196u8, 47u8, 212u8, 75u8, 105u8, 224u8, 180u8, 108u8, 40u8, 97u8, 131u8, 232u8, 4u8, 156u8, 120u8, 224u8, 141u8, 210u8, 184u8, 136u8, 37u8, 60u8, 75u8, 188u8, 252u8, 55u8, 105u8, 114u8, 205u8, 197u8, 231u8, 229u8, 231u8, 33u8, 98u8, 195u8, 182u8, 35u8, 253u8, 45u8, ], vk_delta_g2: [ 23u8, 93u8, 211u8, 59u8, 91u8, 224u8, 167u8, 244u8, 79u8, 107u8, 96u8, 238u8, 130u8, 227u8, 14u8, 162u8, 50u8, 34u8, 118u8, 35u8, 161u8, 189u8, 141u8, 61u8, 171u8, 176u8, 99u8, 3u8, 168u8, 205u8, 174u8, 239u8, 36u8, 114u8, 45u8, 225u8, 246u8, 202u8, 63u8, 26u8, 97u8, 81u8, 75u8, 71u8, 180u8, 238u8, 69u8, 19u8, 189u8, 12u8, 132u8, 102u8, 120u8, 195u8, 248u8, 55u8, 18u8, 241u8, 41u8, 84u8, 253u8, 221u8, 250u8, 156u8, 29u8, 32u8, 232u8, 112u8, 156u8, 130u8, 95u8, 84u8, 252u8, 58u8, 128u8, 162u8, 154u8, 17u8, 47u8, 171u8, 180u8, 34u8, 9u8, 180u8, 209u8, 182u8, 113u8, 231u8, 185u8, 210u8, 164u8, 77u8, 26u8, 76u8, 94u8, 206u8, 20u8, 108u8, 0u8, 187u8, 237u8, 142u8, 251u8, 211u8, 55u8, 159u8, 89u8, 199u8, 34u8, 225u8, 253u8, 203u8, 28u8, 118u8, 170u8, 195u8, 68u8, 191u8, 172u8, 129u8, 253u8, 32u8, 180u8, 187u8, 211u8, 96u8, 0u8, 214u8, ], vk_ic: &[ [ 17u8, 68u8, 13u8, 137u8, 71u8, 89u8, 92u8, 77u8, 153u8, 105u8, 219u8, 137u8, 88u8, 207u8, 241u8, 57u8, 48u8, 142u8, 220u8, 220u8, 162u8, 83u8, 209u8, 190u8, 236u8, 172u8, 122u8, 80u8, 25u8, 206u8, 96u8, 165u8, 39u8, 86u8, 101u8, 163u8, 97u8, 178u8, 84u8, 114u8, 42u8, 179u8, 39u8, 52u8, 17u8, 178u8, 79u8, 53u8, 203u8, 253u8, 128u8, 127u8, 38u8, 65u8, 175u8, 210u8, 117u8, 129u8, 101u8, 62u8, 89u8, 113u8, 37u8, 234u8, ], [ 45u8, 40u8, 246u8, 223u8, 63u8, 6u8, 173u8, 29u8, 207u8, 95u8, 182u8, 184u8, 156u8, 178u8, 105u8, 245u8, 60u8, 99u8, 43u8, 43u8, 135u8, 246u8, 70u8, 110u8, 167u8, 84u8, 45u8, 27u8, 49u8, 182u8, 151u8, 196u8, 6u8, 112u8, 174u8, 44u8, 29u8, 202u8, 125u8, 160u8, 139u8, 124u8, 237u8, 25u8, 84u8, 174u8, 185u8, 77u8, 36u8, 175u8, 0u8, 99u8, 224u8, 23u8, 112u8, 23u8, 83u8, 132u8, 115u8, 231u8, 155u8, 218u8, 127u8, 254u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/inclusion_26_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 2usize, vk_alpha_g1: [ 46u8, 130u8, 56u8, 121u8, 255u8, 184u8, 21u8, 1u8, 85u8, 53u8, 76u8, 143u8, 151u8, 102u8, 84u8, 233u8, 22u8, 237u8, 90u8, 88u8, 111u8, 162u8, 182u8, 231u8, 7u8, 116u8, 25u8, 67u8, 72u8, 138u8, 2u8, 106u8, 0u8, 80u8, 208u8, 15u8, 180u8, 216u8, 153u8, 113u8, 199u8, 142u8, 171u8, 234u8, 150u8, 44u8, 74u8, 41u8, 155u8, 170u8, 104u8, 88u8, 230u8, 192u8, 20u8, 170u8, 151u8, 72u8, 77u8, 109u8, 127u8, 233u8, 233u8, 153u8, ], vk_beta_g2: [ 8u8, 117u8, 16u8, 231u8, 105u8, 252u8, 16u8, 20u8, 208u8, 195u8, 243u8, 160u8, 46u8, 77u8, 79u8, 30u8, 76u8, 213u8, 103u8, 201u8, 70u8, 223u8, 114u8, 222u8, 38u8, 198u8, 236u8, 0u8, 96u8, 96u8, 186u8, 36u8, 46u8, 238u8, 192u8, 184u8, 185u8, 86u8, 212u8, 207u8, 128u8, 156u8, 114u8, 189u8, 164u8, 151u8, 155u8, 238u8, 122u8, 144u8, 215u8, 13u8, 182u8, 3u8, 38u8, 241u8, 187u8, 96u8, 137u8, 45u8, 185u8, 130u8, 133u8, 207u8, 22u8, 81u8, 53u8, 180u8, 106u8, 208u8, 57u8, 132u8, 51u8, 52u8, 110u8, 234u8, 31u8, 74u8, 141u8, 88u8, 159u8, 168u8, 73u8, 71u8, 126u8, 225u8, 182u8, 79u8, 45u8, 184u8, 204u8, 228u8, 22u8, 0u8, 1u8, 33u8, 30u8, 25u8, 0u8, 67u8, 74u8, 150u8, 97u8, 206u8, 169u8, 191u8, 57u8, 9u8, 56u8, 159u8, 246u8, 15u8, 11u8, 146u8, 181u8, 101u8, 137u8, 234u8, 80u8, 197u8, 173u8, 97u8, 203u8, 111u8, 129u8, 16u8, 62u8, 181u8, ], vk_gamme_g2: [ 39u8, 110u8, 103u8, 177u8, 24u8, 109u8, 169u8, 227u8, 156u8, 105u8, 219u8, 204u8, 23u8, 39u8, 131u8, 12u8, 198u8, 63u8, 147u8, 25u8, 192u8, 232u8, 253u8, 239u8, 140u8, 27u8, 215u8, 156u8, 76u8, 67u8, 27u8, 255u8, 44u8, 132u8, 65u8, 185u8, 132u8, 52u8, 84u8, 129u8, 167u8, 225u8, 77u8, 101u8, 182u8, 79u8, 117u8, 49u8, 152u8, 69u8, 161u8, 128u8, 150u8, 12u8, 174u8, 133u8, 243u8, 10u8, 60u8, 158u8, 9u8, 226u8, 27u8, 89u8, 20u8, 188u8, 247u8, 141u8, 108u8, 45u8, 150u8, 12u8, 165u8, 135u8, 30u8, 73u8, 12u8, 202u8, 125u8, 158u8, 167u8, 98u8, 142u8, 200u8, 174u8, 233u8, 169u8, 126u8, 220u8, 98u8, 167u8, 117u8, 251u8, 241u8, 153u8, 245u8, 4u8, 23u8, 13u8, 141u8, 212u8, 37u8, 68u8, 165u8, 235u8, 71u8, 207u8, 208u8, 171u8, 11u8, 43u8, 117u8, 100u8, 179u8, 106u8, 131u8, 77u8, 48u8, 148u8, 1u8, 178u8, 184u8, 234u8, 232u8, 153u8, 80u8, 239u8, 50u8, ], vk_delta_g2: [ 17u8, 252u8, 49u8, 29u8, 67u8, 37u8, 152u8, 90u8, 163u8, 233u8, 49u8, 112u8, 73u8, 216u8, 40u8, 153u8, 251u8, 204u8, 194u8, 57u8, 112u8, 114u8, 18u8, 137u8, 247u8, 137u8, 60u8, 10u8, 23u8, 168u8, 32u8, 119u8, 12u8, 37u8, 93u8, 1u8, 216u8, 173u8, 177u8, 108u8, 57u8, 119u8, 63u8, 96u8, 74u8, 111u8, 47u8, 249u8, 226u8, 18u8, 81u8, 156u8, 129u8, 140u8, 98u8, 234u8, 207u8, 204u8, 194u8, 143u8, 222u8, 249u8, 96u8, 231u8, 42u8, 203u8, 5u8, 240u8, 162u8, 187u8, 156u8, 213u8, 254u8, 169u8, 90u8, 5u8, 40u8, 244u8, 22u8, 87u8, 94u8, 103u8, 103u8, 171u8, 167u8, 115u8, 154u8, 76u8, 231u8, 243u8, 243u8, 10u8, 46u8, 247u8, 40u8, 255u8, 14u8, 93u8, 164u8, 2u8, 142u8, 72u8, 87u8, 179u8, 45u8, 251u8, 175u8, 41u8, 40u8, 22u8, 177u8, 125u8, 91u8, 83u8, 208u8, 253u8, 253u8, 173u8, 161u8, 253u8, 95u8, 196u8, 231u8, 15u8, 31u8, 87u8, 28u8, 216u8, ], vk_ic: &[ [ 34u8, 4u8, 63u8, 234u8, 130u8, 215u8, 165u8, 158u8, 222u8, 71u8, 115u8, 183u8, 227u8, 57u8, 111u8, 193u8, 10u8, 229u8, 83u8, 8u8, 74u8, 186u8, 224u8, 195u8, 58u8, 82u8, 151u8, 87u8, 193u8, 151u8, 253u8, 157u8, 5u8, 83u8, 213u8, 190u8, 48u8, 117u8, 53u8, 223u8, 52u8, 254u8, 158u8, 93u8, 27u8, 52u8, 38u8, 121u8, 57u8, 238u8, 38u8, 101u8, 169u8, 247u8, 202u8, 144u8, 87u8, 251u8, 254u8, 123u8, 26u8, 248u8, 243u8, 85u8, ], [ 7u8, 31u8, 180u8, 137u8, 201u8, 228u8, 45u8, 186u8, 99u8, 110u8, 8u8, 40u8, 165u8, 81u8, 102u8, 29u8, 182u8, 227u8, 195u8, 108u8, 21u8, 110u8, 45u8, 100u8, 117u8, 88u8, 68u8, 117u8, 24u8, 92u8, 93u8, 223u8, 17u8, 145u8, 95u8, 10u8, 189u8, 96u8, 106u8, 217u8, 73u8, 78u8, 120u8, 170u8, 124u8, 119u8, 134u8, 115u8, 112u8, 69u8, 216u8, 126u8, 203u8, 15u8, 19u8, 163u8, 203u8, 247u8, 72u8, 53u8, 42u8, 25u8, 122u8, 88u8, ], [ 20u8, 62u8, 91u8, 19u8, 68u8, 17u8, 32u8, 26u8, 106u8, 47u8, 47u8, 86u8, 226u8, 168u8, 148u8, 237u8, 28u8, 159u8, 196u8, 86u8, 5u8, 3u8, 70u8, 220u8, 217u8, 136u8, 240u8, 72u8, 124u8, 232u8, 61u8, 169u8, 34u8, 83u8, 125u8, 137u8, 181u8, 207u8, 225u8, 220u8, 228u8, 248u8, 74u8, 222u8, 186u8, 154u8, 207u8, 117u8, 150u8, 231u8, 161u8, 38u8, 30u8, 9u8, 41u8, 62u8, 14u8, 218u8, 105u8, 142u8, 236u8, 10u8, 177u8, 71u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/update_26_500.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 12u8, 48u8, 3u8, 6u8, 214u8, 235u8, 213u8, 216u8, 250u8, 163u8, 162u8, 30u8, 42u8, 252u8, 144u8, 12u8, 11u8, 192u8, 60u8, 174u8, 82u8, 53u8, 51u8, 164u8, 175u8, 65u8, 183u8, 99u8, 162u8, 10u8, 164u8, 217u8, 34u8, 121u8, 172u8, 56u8, 66u8, 147u8, 17u8, 2u8, 174u8, 36u8, 126u8, 219u8, 46u8, 117u8, 179u8, 201u8, 79u8, 101u8, 134u8, 98u8, 129u8, 31u8, 55u8, 65u8, 114u8, 228u8, 112u8, 149u8, 242u8, 99u8, 1u8, 6u8, ], vk_beta_g2: [ 35u8, 101u8, 157u8, 125u8, 114u8, 208u8, 138u8, 74u8, 101u8, 132u8, 205u8, 241u8, 145u8, 104u8, 57u8, 69u8, 203u8, 141u8, 72u8, 123u8, 10u8, 138u8, 238u8, 136u8, 86u8, 201u8, 97u8, 171u8, 166u8, 64u8, 48u8, 162u8, 39u8, 240u8, 190u8, 157u8, 82u8, 141u8, 228u8, 237u8, 11u8, 58u8, 4u8, 44u8, 176u8, 172u8, 134u8, 84u8, 5u8, 213u8, 195u8, 218u8, 52u8, 166u8, 68u8, 240u8, 183u8, 200u8, 92u8, 76u8, 85u8, 221u8, 42u8, 48u8, 8u8, 191u8, 174u8, 62u8, 238u8, 191u8, 223u8, 124u8, 100u8, 137u8, 14u8, 162u8, 62u8, 4u8, 93u8, 200u8, 20u8, 246u8, 197u8, 197u8, 45u8, 135u8, 127u8, 218u8, 143u8, 49u8, 44u8, 121u8, 213u8, 61u8, 26u8, 70u8, 38u8, 126u8, 231u8, 108u8, 169u8, 80u8, 56u8, 43u8, 88u8, 115u8, 120u8, 151u8, 97u8, 78u8, 205u8, 127u8, 87u8, 1u8, 211u8, 117u8, 167u8, 80u8, 82u8, 7u8, 73u8, 156u8, 166u8, 130u8, 243u8, 29u8, 80u8, 99u8, ], vk_gamme_g2: [ 2u8, 26u8, 223u8, 160u8, 137u8, 79u8, 163u8, 196u8, 158u8, 255u8, 152u8, 2u8, 94u8, 180u8, 126u8, 102u8, 63u8, 111u8, 18u8, 241u8, 68u8, 104u8, 101u8, 95u8, 248u8, 140u8, 186u8, 118u8, 249u8, 211u8, 142u8, 157u8, 39u8, 113u8, 110u8, 77u8, 90u8, 180u8, 252u8, 83u8, 126u8, 244u8, 12u8, 235u8, 96u8, 191u8, 167u8, 31u8, 96u8, 169u8, 150u8, 9u8, 110u8, 239u8, 239u8, 4u8, 169u8, 253u8, 84u8, 158u8, 32u8, 5u8, 120u8, 195u8, 4u8, 123u8, 74u8, 69u8, 43u8, 165u8, 15u8, 237u8, 41u8, 228u8, 101u8, 127u8, 19u8, 157u8, 15u8, 0u8, 207u8, 227u8, 190u8, 98u8, 181u8, 200u8, 24u8, 154u8, 7u8, 185u8, 210u8, 152u8, 97u8, 136u8, 122u8, 29u8, 14u8, 146u8, 219u8, 53u8, 205u8, 96u8, 220u8, 21u8, 44u8, 62u8, 63u8, 58u8, 189u8, 175u8, 192u8, 33u8, 20u8, 222u8, 74u8, 46u8, 71u8, 195u8, 145u8, 7u8, 237u8, 54u8, 168u8, 118u8, 249u8, 101u8, 109u8, 123u8, ], vk_delta_g2: [ 13u8, 236u8, 161u8, 66u8, 142u8, 78u8, 74u8, 100u8, 238u8, 232u8, 86u8, 156u8, 158u8, 174u8, 31u8, 227u8, 164u8, 248u8, 40u8, 53u8, 18u8, 176u8, 78u8, 247u8, 130u8, 153u8, 222u8, 105u8, 187u8, 239u8, 105u8, 145u8, 32u8, 46u8, 63u8, 68u8, 87u8, 197u8, 119u8, 68u8, 224u8, 209u8, 127u8, 69u8, 47u8, 209u8, 91u8, 88u8, 56u8, 213u8, 113u8, 8u8, 16u8, 85u8, 208u8, 122u8, 60u8, 246u8, 59u8, 229u8, 13u8, 21u8, 27u8, 217u8, 16u8, 63u8, 122u8, 214u8, 179u8, 12u8, 252u8, 3u8, 51u8, 237u8, 246u8, 13u8, 134u8, 86u8, 161u8, 19u8, 212u8, 30u8, 79u8, 152u8, 68u8, 34u8, 79u8, 168u8, 213u8, 227u8, 216u8, 231u8, 34u8, 180u8, 163u8, 48u8, 19u8, 162u8, 236u8, 217u8, 129u8, 12u8, 56u8, 102u8, 133u8, 44u8, 67u8, 193u8, 0u8, 189u8, 158u8, 177u8, 58u8, 163u8, 57u8, 103u8, 225u8, 180u8, 0u8, 192u8, 161u8, 215u8, 103u8, 180u8, 186u8, 168u8, 227u8, 239u8, ], vk_ic: &[ [ 43u8, 187u8, 41u8, 114u8, 126u8, 142u8, 63u8, 78u8, 238u8, 213u8, 254u8, 157u8, 78u8, 90u8, 61u8, 230u8, 82u8, 72u8, 58u8, 157u8, 129u8, 29u8, 149u8, 196u8, 127u8, 228u8, 170u8, 8u8, 210u8, 173u8, 2u8, 177u8, 12u8, 255u8, 106u8, 118u8, 201u8, 208u8, 126u8, 140u8, 28u8, 146u8, 236u8, 200u8, 162u8, 247u8, 247u8, 66u8, 244u8, 144u8, 103u8, 103u8, 103u8, 176u8, 218u8, 75u8, 109u8, 170u8, 214u8, 151u8, 90u8, 7u8, 79u8, 84u8, ], [ 6u8, 51u8, 44u8, 185u8, 109u8, 105u8, 217u8, 36u8, 195u8, 208u8, 251u8, 150u8, 197u8, 173u8, 113u8, 138u8, 234u8, 54u8, 2u8, 109u8, 205u8, 0u8, 102u8, 37u8, 229u8, 97u8, 156u8, 39u8, 79u8, 202u8, 171u8, 24u8, 23u8, 109u8, 22u8, 175u8, 43u8, 63u8, 35u8, 243u8, 87u8, 119u8, 219u8, 150u8, 76u8, 224u8, 27u8, 131u8, 220u8, 250u8, 86u8, 164u8, 161u8, 22u8, 37u8, 199u8, 246u8, 180u8, 11u8, 38u8, 240u8, 189u8, 124u8, 189u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_1_2.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 6usize, vk_alpha_g1: [ 41u8, 166u8, 31u8, 104u8, 246u8, 245u8, 226u8, 247u8, 36u8, 63u8, 22u8, 170u8, 100u8, 221u8, 210u8, 236u8, 154u8, 188u8, 255u8, 24u8, 19u8, 69u8, 186u8, 158u8, 46u8, 9u8, 69u8, 135u8, 197u8, 103u8, 14u8, 107u8, 13u8, 6u8, 7u8, 179u8, 6u8, 174u8, 160u8, 225u8, 50u8, 215u8, 73u8, 176u8, 218u8, 78u8, 187u8, 207u8, 222u8, 246u8, 223u8, 237u8, 140u8, 127u8, 129u8, 229u8, 250u8, 15u8, 143u8, 100u8, 194u8, 7u8, 79u8, 22u8, ], vk_beta_g2: [ 32u8, 252u8, 149u8, 132u8, 169u8, 88u8, 249u8, 227u8, 62u8, 115u8, 85u8, 213u8, 105u8, 255u8, 217u8, 37u8, 27u8, 53u8, 46u8, 4u8, 252u8, 84u8, 102u8, 202u8, 175u8, 173u8, 144u8, 27u8, 68u8, 69u8, 152u8, 188u8, 19u8, 146u8, 198u8, 135u8, 169u8, 171u8, 228u8, 48u8, 90u8, 191u8, 61u8, 167u8, 10u8, 151u8, 104u8, 34u8, 24u8, 152u8, 81u8, 33u8, 62u8, 213u8, 100u8, 233u8, 226u8, 117u8, 196u8, 214u8, 188u8, 201u8, 226u8, 28u8, 12u8, 209u8, 189u8, 35u8, 25u8, 23u8, 111u8, 185u8, 50u8, 139u8, 251u8, 189u8, 149u8, 159u8, 253u8, 244u8, 21u8, 182u8, 118u8, 37u8, 95u8, 194u8, 181u8, 8u8, 140u8, 39u8, 185u8, 23u8, 70u8, 250u8, 62u8, 123u8, 3u8, 183u8, 220u8, 12u8, 72u8, 212u8, 73u8, 106u8, 134u8, 219u8, 113u8, 205u8, 175u8, 129u8, 10u8, 141u8, 63u8, 66u8, 53u8, 120u8, 200u8, 23u8, 172u8, 176u8, 105u8, 64u8, 142u8, 129u8, 250u8, 99u8, 187u8, 93u8, ], vk_gamme_g2: [ 28u8, 137u8, 150u8, 171u8, 96u8, 236u8, 118u8, 107u8, 177u8, 172u8, 6u8, 117u8, 230u8, 76u8, 177u8, 13u8, 6u8, 121u8, 222u8, 240u8, 56u8, 96u8, 104u8, 237u8, 146u8, 159u8, 50u8, 251u8, 204u8, 158u8, 218u8, 238u8, 4u8, 101u8, 152u8, 222u8, 4u8, 160u8, 49u8, 114u8, 114u8, 145u8, 204u8, 42u8, 91u8, 51u8, 156u8, 45u8, 60u8, 80u8, 225u8, 200u8, 158u8, 27u8, 229u8, 235u8, 92u8, 235u8, 60u8, 57u8, 198u8, 93u8, 182u8, 92u8, 40u8, 1u8, 148u8, 185u8, 179u8, 170u8, 45u8, 235u8, 104u8, 49u8, 29u8, 154u8, 242u8, 80u8, 115u8, 243u8, 241u8, 53u8, 169u8, 182u8, 24u8, 121u8, 156u8, 182u8, 182u8, 12u8, 110u8, 53u8, 187u8, 97u8, 33u8, 109u8, 30u8, 159u8, 46u8, 232u8, 25u8, 157u8, 231u8, 217u8, 157u8, 151u8, 47u8, 251u8, 59u8, 49u8, 82u8, 133u8, 63u8, 148u8, 113u8, 102u8, 158u8, 203u8, 104u8, 1u8, 145u8, 134u8, 61u8, 248u8, 4u8, 75u8, 28u8, 234u8, ], vk_delta_g2: [ 44u8, 135u8, 206u8, 52u8, 21u8, 163u8, 170u8, 236u8, 131u8, 117u8, 240u8, 74u8, 50u8, 45u8, 198u8, 39u8, 222u8, 76u8, 243u8, 5u8, 160u8, 249u8, 90u8, 75u8, 79u8, 245u8, 108u8, 69u8, 169u8, 141u8, 145u8, 158u8, 18u8, 82u8, 51u8, 169u8, 104u8, 163u8, 133u8, 168u8, 152u8, 165u8, 21u8, 16u8, 204u8, 206u8, 205u8, 179u8, 140u8, 6u8, 115u8, 40u8, 208u8, 142u8, 179u8, 131u8, 200u8, 180u8, 244u8, 144u8, 205u8, 78u8, 14u8, 132u8, 44u8, 156u8, 167u8, 62u8, 79u8, 80u8, 150u8, 217u8, 173u8, 183u8, 47u8, 63u8, 235u8, 169u8, 80u8, 93u8, 139u8, 155u8, 28u8, 87u8, 104u8, 117u8, 78u8, 86u8, 91u8, 246u8, 45u8, 200u8, 177u8, 99u8, 119u8, 244u8, 24u8, 240u8, 74u8, 39u8, 110u8, 5u8, 62u8, 165u8, 252u8, 218u8, 50u8, 5u8, 54u8, 119u8, 140u8, 152u8, 133u8, 218u8, 217u8, 254u8, 134u8, 75u8, 126u8, 210u8, 97u8, 50u8, 33u8, 74u8, 17u8, 184u8, 245u8, 203u8, ], vk_ic: &[ [ 35u8, 221u8, 238u8, 37u8, 193u8, 99u8, 221u8, 240u8, 47u8, 68u8, 26u8, 36u8, 129u8, 200u8, 211u8, 144u8, 89u8, 151u8, 99u8, 88u8, 86u8, 196u8, 98u8, 165u8, 129u8, 141u8, 229u8, 193u8, 8u8, 12u8, 252u8, 72u8, 39u8, 111u8, 55u8, 48u8, 127u8, 93u8, 137u8, 243u8, 198u8, 104u8, 246u8, 108u8, 124u8, 151u8, 128u8, 243u8, 232u8, 188u8, 185u8, 97u8, 128u8, 200u8, 34u8, 183u8, 211u8, 76u8, 48u8, 43u8, 85u8, 63u8, 89u8, 86u8, ], [ 33u8, 204u8, 35u8, 211u8, 227u8, 161u8, 77u8, 191u8, 114u8, 75u8, 25u8, 248u8, 120u8, 49u8, 166u8, 120u8, 254u8, 188u8, 169u8, 233u8, 203u8, 123u8, 65u8, 207u8, 202u8, 219u8, 173u8, 34u8, 173u8, 95u8, 224u8, 217u8, 47u8, 207u8, 2u8, 166u8, 35u8, 226u8, 54u8, 130u8, 70u8, 222u8, 221u8, 199u8, 24u8, 46u8, 141u8, 245u8, 13u8, 239u8, 127u8, 149u8, 213u8, 197u8, 200u8, 69u8, 221u8, 58u8, 108u8, 225u8, 10u8, 106u8, 91u8, 106u8, ], [ 22u8, 179u8, 216u8, 87u8, 98u8, 230u8, 90u8, 138u8, 131u8, 223u8, 215u8, 25u8, 181u8, 26u8, 67u8, 30u8, 44u8, 163u8, 207u8, 160u8, 70u8, 21u8, 117u8, 109u8, 179u8, 109u8, 166u8, 242u8, 177u8, 185u8, 62u8, 122u8, 6u8, 119u8, 75u8, 0u8, 153u8, 160u8, 106u8, 222u8, 216u8, 137u8, 127u8, 66u8, 70u8, 244u8, 5u8, 56u8, 182u8, 89u8, 74u8, 137u8, 236u8, 181u8, 96u8, 45u8, 249u8, 55u8, 138u8, 91u8, 122u8, 51u8, 45u8, 84u8, ], [ 21u8, 144u8, 50u8, 139u8, 139u8, 178u8, 31u8, 4u8, 239u8, 151u8, 248u8, 60u8, 92u8, 238u8, 231u8, 119u8, 206u8, 238u8, 93u8, 205u8, 56u8, 69u8, 252u8, 22u8, 24u8, 40u8, 89u8, 40u8, 87u8, 201u8, 234u8, 159u8, 40u8, 200u8, 174u8, 74u8, 157u8, 239u8, 19u8, 139u8, 214u8, 162u8, 253u8, 59u8, 217u8, 165u8, 225u8, 17u8, 34u8, 103u8, 248u8, 34u8, 156u8, 68u8, 206u8, 230u8, 82u8, 107u8, 26u8, 255u8, 197u8, 97u8, 150u8, 158u8, ], [ 11u8, 245u8, 208u8, 23u8, 212u8, 122u8, 65u8, 151u8, 154u8, 235u8, 87u8, 16u8, 148u8, 90u8, 156u8, 83u8, 190u8, 17u8, 83u8, 184u8, 123u8, 78u8, 95u8, 81u8, 217u8, 52u8, 92u8, 183u8, 240u8, 140u8, 8u8, 155u8, 27u8, 129u8, 121u8, 112u8, 184u8, 45u8, 162u8, 202u8, 20u8, 220u8, 78u8, 220u8, 234u8, 115u8, 183u8, 0u8, 248u8, 41u8, 47u8, 65u8, 241u8, 252u8, 174u8, 219u8, 179u8, 114u8, 116u8, 169u8, 195u8, 177u8, 218u8, 110u8, ], [ 25u8, 150u8, 93u8, 193u8, 41u8, 162u8, 123u8, 74u8, 204u8, 182u8, 99u8, 234u8, 84u8, 121u8, 0u8, 9u8, 156u8, 67u8, 240u8, 19u8, 107u8, 92u8, 25u8, 176u8, 112u8, 83u8, 181u8, 231u8, 127u8, 242u8, 51u8, 253u8, 20u8, 42u8, 78u8, 56u8, 222u8, 179u8, 233u8, 24u8, 74u8, 223u8, 11u8, 190u8, 123u8, 161u8, 116u8, 56u8, 244u8, 0u8, 234u8, 236u8, 48u8, 142u8, 72u8, 174u8, 51u8, 100u8, 147u8, 69u8, 135u8, 253u8, 110u8, 223u8, ], [ 16u8, 4u8, 81u8, 162u8, 136u8, 169u8, 58u8, 11u8, 25u8, 85u8, 95u8, 99u8, 100u8, 164u8, 39u8, 60u8, 95u8, 75u8, 120u8, 85u8, 131u8, 235u8, 252u8, 127u8, 175u8, 193u8, 192u8, 208u8, 93u8, 230u8, 6u8, 169u8, 36u8, 59u8, 83u8, 151u8, 183u8, 5u8, 24u8, 112u8, 243u8, 211u8, 18u8, 83u8, 73u8, 137u8, 1u8, 74u8, 225u8, 124u8, 29u8, 165u8, 64u8, 146u8, 88u8, 123u8, 109u8, 53u8, 242u8, 140u8, 66u8, 99u8, 151u8, 228u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/update_26_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 3u8, 41u8, 50u8, 176u8, 101u8, 160u8, 197u8, 88u8, 19u8, 231u8, 141u8, 33u8, 201u8, 22u8, 82u8, 45u8, 82u8, 195u8, 141u8, 82u8, 55u8, 90u8, 39u8, 29u8, 146u8, 53u8, 196u8, 8u8, 253u8, 21u8, 67u8, 18u8, 2u8, 32u8, 129u8, 66u8, 177u8, 48u8, 238u8, 96u8, 124u8, 24u8, 210u8, 210u8, 73u8, 207u8, 47u8, 48u8, 246u8, 241u8, 183u8, 40u8, 113u8, 242u8, 171u8, 144u8, 204u8, 108u8, 235u8, 121u8, 205u8, 155u8, 193u8, 211u8, ], vk_beta_g2: [ 43u8, 194u8, 68u8, 228u8, 65u8, 145u8, 207u8, 140u8, 206u8, 212u8, 41u8, 60u8, 237u8, 234u8, 220u8, 155u8, 119u8, 153u8, 175u8, 114u8, 93u8, 135u8, 142u8, 22u8, 179u8, 56u8, 244u8, 184u8, 98u8, 35u8, 169u8, 229u8, 31u8, 199u8, 19u8, 123u8, 199u8, 176u8, 21u8, 94u8, 75u8, 176u8, 195u8, 192u8, 131u8, 105u8, 255u8, 219u8, 4u8, 5u8, 80u8, 162u8, 218u8, 146u8, 224u8, 45u8, 215u8, 147u8, 138u8, 253u8, 114u8, 12u8, 179u8, 87u8, 40u8, 62u8, 212u8, 144u8, 175u8, 87u8, 167u8, 233u8, 108u8, 240u8, 225u8, 109u8, 46u8, 195u8, 96u8, 214u8, 154u8, 138u8, 0u8, 123u8, 202u8, 235u8, 155u8, 201u8, 221u8, 55u8, 160u8, 173u8, 205u8, 223u8, 106u8, 144u8, 36u8, 163u8, 215u8, 109u8, 94u8, 54u8, 39u8, 132u8, 112u8, 91u8, 236u8, 135u8, 167u8, 167u8, 100u8, 245u8, 103u8, 252u8, 166u8, 157u8, 122u8, 28u8, 225u8, 124u8, 95u8, 206u8, 14u8, 25u8, 170u8, 135u8, 86u8, 198u8, ], vk_gamme_g2: [ 0u8, 220u8, 21u8, 130u8, 9u8, 220u8, 59u8, 68u8, 174u8, 239u8, 111u8, 208u8, 246u8, 9u8, 206u8, 188u8, 83u8, 184u8, 26u8, 161u8, 101u8, 201u8, 136u8, 102u8, 108u8, 14u8, 208u8, 151u8, 76u8, 220u8, 59u8, 255u8, 31u8, 210u8, 82u8, 208u8, 185u8, 66u8, 174u8, 187u8, 69u8, 116u8, 194u8, 249u8, 132u8, 192u8, 170u8, 78u8, 214u8, 160u8, 11u8, 243u8, 55u8, 49u8, 80u8, 121u8, 193u8, 176u8, 147u8, 149u8, 136u8, 56u8, 2u8, 147u8, 32u8, 92u8, 239u8, 36u8, 231u8, 191u8, 17u8, 96u8, 235u8, 185u8, 119u8, 228u8, 197u8, 32u8, 202u8, 209u8, 196u8, 224u8, 13u8, 194u8, 193u8, 253u8, 248u8, 230u8, 182u8, 47u8, 252u8, 135u8, 122u8, 31u8, 159u8, 133u8, 42u8, 174u8, 136u8, 111u8, 4u8, 176u8, 158u8, 104u8, 206u8, 205u8, 120u8, 206u8, 224u8, 85u8, 104u8, 180u8, 69u8, 226u8, 232u8, 122u8, 124u8, 121u8, 147u8, 56u8, 221u8, 132u8, 105u8, 112u8, 148u8, 191u8, 29u8, 104u8, ], vk_delta_g2: [ 28u8, 181u8, 51u8, 29u8, 128u8, 104u8, 17u8, 245u8, 217u8, 107u8, 192u8, 254u8, 232u8, 205u8, 219u8, 25u8, 24u8, 34u8, 247u8, 119u8, 60u8, 14u8, 220u8, 178u8, 109u8, 96u8, 171u8, 182u8, 14u8, 57u8, 126u8, 22u8, 34u8, 69u8, 247u8, 239u8, 31u8, 172u8, 147u8, 107u8, 181u8, 2u8, 14u8, 49u8, 102u8, 178u8, 167u8, 95u8, 252u8, 70u8, 169u8, 230u8, 17u8, 225u8, 212u8, 251u8, 54u8, 132u8, 130u8, 110u8, 72u8, 231u8, 62u8, 81u8, 17u8, 184u8, 20u8, 108u8, 87u8, 53u8, 95u8, 109u8, 202u8, 204u8, 205u8, 176u8, 81u8, 53u8, 204u8, 19u8, 127u8, 12u8, 168u8, 57u8, 157u8, 69u8, 191u8, 31u8, 164u8, 68u8, 62u8, 197u8, 82u8, 70u8, 38u8, 139u8, 0u8, 117u8, 54u8, 3u8, 90u8, 125u8, 48u8, 91u8, 137u8, 128u8, 158u8, 247u8, 2u8, 89u8, 178u8, 89u8, 142u8, 140u8, 199u8, 228u8, 67u8, 208u8, 29u8, 152u8, 208u8, 238u8, 39u8, 250u8, 170u8, 144u8, 247u8, 118u8, ], vk_ic: &[ [ 42u8, 128u8, 175u8, 250u8, 216u8, 122u8, 245u8, 151u8, 27u8, 133u8, 244u8, 32u8, 0u8, 68u8, 155u8, 80u8, 50u8, 160u8, 68u8, 113u8, 4u8, 137u8, 226u8, 240u8, 59u8, 236u8, 51u8, 57u8, 231u8, 59u8, 223u8, 26u8, 18u8, 3u8, 187u8, 201u8, 75u8, 8u8, 17u8, 247u8, 104u8, 23u8, 91u8, 110u8, 95u8, 17u8, 66u8, 147u8, 60u8, 212u8, 6u8, 112u8, 97u8, 4u8, 144u8, 110u8, 167u8, 108u8, 174u8, 255u8, 236u8, 174u8, 144u8, 47u8, ], [ 11u8, 88u8, 117u8, 14u8, 82u8, 222u8, 218u8, 202u8, 85u8, 82u8, 254u8, 178u8, 97u8, 235u8, 135u8, 254u8, 163u8, 13u8, 170u8, 8u8, 67u8, 123u8, 254u8, 205u8, 156u8, 18u8, 133u8, 105u8, 19u8, 120u8, 11u8, 144u8, 15u8, 202u8, 165u8, 136u8, 173u8, 201u8, 46u8, 16u8, 52u8, 141u8, 178u8, 139u8, 132u8, 148u8, 143u8, 156u8, 167u8, 255u8, 222u8, 148u8, 7u8, 11u8, 139u8, 76u8, 104u8, 236u8, 0u8, 177u8, 224u8, 15u8, 160u8, 88u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_26_1000.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 7u8, 122u8, 121u8, 108u8, 149u8, 42u8, 9u8, 39u8, 49u8, 158u8, 55u8, 151u8, 237u8, 112u8, 133u8, 222u8, 3u8, 43u8, 203u8, 30u8, 73u8, 188u8, 128u8, 183u8, 31u8, 150u8, 182u8, 2u8, 247u8, 87u8, 11u8, 251u8, 31u8, 67u8, 171u8, 194u8, 93u8, 32u8, 199u8, 236u8, 243u8, 123u8, 1u8, 107u8, 121u8, 87u8, 205u8, 45u8, 88u8, 115u8, 249u8, 43u8, 68u8, 230u8, 79u8, 199u8, 69u8, 36u8, 139u8, 61u8, 96u8, 187u8, 149u8, 158u8, ], vk_beta_g2: [ 15u8, 26u8, 231u8, 164u8, 6u8, 193u8, 110u8, 164u8, 87u8, 25u8, 247u8, 113u8, 155u8, 65u8, 127u8, 77u8, 17u8, 41u8, 6u8, 254u8, 17u8, 87u8, 81u8, 136u8, 185u8, 9u8, 212u8, 30u8, 176u8, 120u8, 103u8, 143u8, 28u8, 94u8, 13u8, 38u8, 45u8, 75u8, 12u8, 123u8, 57u8, 119u8, 38u8, 116u8, 47u8, 7u8, 231u8, 28u8, 90u8, 90u8, 29u8, 239u8, 96u8, 54u8, 94u8, 56u8, 5u8, 143u8, 73u8, 36u8, 204u8, 151u8, 87u8, 221u8, 9u8, 118u8, 93u8, 172u8, 159u8, 72u8, 252u8, 155u8, 153u8, 190u8, 138u8, 1u8, 0u8, 212u8, 4u8, 172u8, 229u8, 20u8, 126u8, 231u8, 147u8, 42u8, 38u8, 22u8, 9u8, 210u8, 169u8, 55u8, 173u8, 226u8, 176u8, 68u8, 9u8, 248u8, 18u8, 221u8, 159u8, 188u8, 221u8, 93u8, 235u8, 148u8, 111u8, 105u8, 145u8, 46u8, 223u8, 131u8, 58u8, 154u8, 178u8, 244u8, 106u8, 200u8, 163u8, 149u8, 189u8, 56u8, 144u8, 242u8, 88u8, 93u8, 194u8, 228u8, ], vk_gamme_g2: [ 17u8, 90u8, 58u8, 137u8, 32u8, 112u8, 101u8, 9u8, 78u8, 147u8, 117u8, 240u8, 226u8, 24u8, 202u8, 187u8, 228u8, 36u8, 249u8, 242u8, 179u8, 250u8, 162u8, 36u8, 158u8, 226u8, 164u8, 24u8, 30u8, 76u8, 85u8, 181u8, 40u8, 108u8, 95u8, 159u8, 252u8, 69u8, 32u8, 240u8, 142u8, 103u8, 75u8, 219u8, 148u8, 51u8, 139u8, 143u8, 126u8, 209u8, 253u8, 222u8, 109u8, 156u8, 56u8, 142u8, 56u8, 39u8, 64u8, 218u8, 118u8, 32u8, 104u8, 65u8, 35u8, 182u8, 28u8, 27u8, 56u8, 58u8, 162u8, 112u8, 170u8, 76u8, 68u8, 181u8, 42u8, 195u8, 84u8, 235u8, 31u8, 64u8, 102u8, 242u8, 2u8, 173u8, 69u8, 169u8, 232u8, 6u8, 189u8, 16u8, 79u8, 69u8, 241u8, 65u8, 14u8, 181u8, 143u8, 255u8, 193u8, 3u8, 26u8, 205u8, 8u8, 61u8, 108u8, 46u8, 209u8, 85u8, 223u8, 175u8, 50u8, 164u8, 252u8, 64u8, 192u8, 219u8, 133u8, 221u8, 191u8, 148u8, 157u8, 78u8, 120u8, 42u8, 50u8, 12u8, ], vk_delta_g2: [ 21u8, 194u8, 241u8, 50u8, 61u8, 25u8, 17u8, 37u8, 105u8, 212u8, 19u8, 9u8, 185u8, 69u8, 211u8, 194u8, 14u8, 199u8, 38u8, 63u8, 138u8, 65u8, 238u8, 183u8, 215u8, 238u8, 33u8, 144u8, 127u8, 241u8, 126u8, 16u8, 26u8, 164u8, 145u8, 51u8, 76u8, 213u8, 1u8, 172u8, 214u8, 217u8, 35u8, 125u8, 56u8, 1u8, 59u8, 196u8, 103u8, 30u8, 41u8, 230u8, 31u8, 89u8, 80u8, 195u8, 201u8, 242u8, 253u8, 99u8, 147u8, 56u8, 4u8, 127u8, 38u8, 135u8, 238u8, 79u8, 49u8, 235u8, 63u8, 86u8, 248u8, 240u8, 38u8, 106u8, 6u8, 159u8, 10u8, 58u8, 110u8, 112u8, 49u8, 198u8, 158u8, 247u8, 101u8, 28u8, 217u8, 70u8, 212u8, 215u8, 143u8, 156u8, 155u8, 239u8, 40u8, 64u8, 153u8, 29u8, 47u8, 54u8, 129u8, 12u8, 118u8, 136u8, 95u8, 28u8, 15u8, 46u8, 87u8, 13u8, 186u8, 0u8, 203u8, 66u8, 63u8, 143u8, 32u8, 132u8, 232u8, 216u8, 128u8, 90u8, 220u8, 111u8, 43u8, 127u8, ], vk_ic: &[ [ 46u8, 40u8, 68u8, 141u8, 143u8, 190u8, 46u8, 195u8, 17u8, 173u8, 182u8, 54u8, 174u8, 64u8, 156u8, 6u8, 162u8, 218u8, 78u8, 154u8, 246u8, 223u8, 63u8, 51u8, 105u8, 133u8, 62u8, 28u8, 234u8, 33u8, 28u8, 218u8, 1u8, 168u8, 11u8, 196u8, 173u8, 222u8, 125u8, 178u8, 198u8, 109u8, 188u8, 172u8, 197u8, 150u8, 85u8, 127u8, 173u8, 198u8, 11u8, 62u8, 175u8, 165u8, 205u8, 72u8, 220u8, 29u8, 150u8, 112u8, 107u8, 155u8, 185u8, 172u8, ], [ 9u8, 107u8, 75u8, 255u8, 39u8, 41u8, 65u8, 27u8, 172u8, 195u8, 212u8, 139u8, 90u8, 176u8, 233u8, 52u8, 60u8, 113u8, 105u8, 82u8, 3u8, 3u8, 10u8, 152u8, 67u8, 54u8, 123u8, 48u8, 202u8, 90u8, 140u8, 61u8, 25u8, 171u8, 9u8, 119u8, 176u8, 16u8, 59u8, 38u8, 231u8, 37u8, 84u8, 99u8, 196u8, 51u8, 129u8, 68u8, 205u8, 87u8, 236u8, 50u8, 224u8, 13u8, 135u8, 195u8, 54u8, 215u8, 111u8, 50u8, 76u8, 119u8, 207u8, 53u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/non_inclusion_26_2.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 4usize, vk_alpha_g1: [ 38u8, 43u8, 35u8, 139u8, 97u8, 142u8, 190u8, 63u8, 118u8, 176u8, 225u8, 37u8, 108u8, 0u8, 250u8, 22u8, 8u8, 40u8, 128u8, 135u8, 173u8, 38u8, 30u8, 119u8, 246u8, 72u8, 34u8, 157u8, 236u8, 73u8, 94u8, 247u8, 12u8, 213u8, 215u8, 60u8, 5u8, 41u8, 13u8, 100u8, 75u8, 190u8, 11u8, 47u8, 26u8, 158u8, 218u8, 85u8, 141u8, 125u8, 215u8, 49u8, 70u8, 222u8, 204u8, 182u8, 121u8, 70u8, 146u8, 24u8, 75u8, 139u8, 76u8, 148u8, ], vk_beta_g2: [ 30u8, 176u8, 77u8, 141u8, 252u8, 63u8, 43u8, 80u8, 249u8, 211u8, 249u8, 67u8, 99u8, 82u8, 164u8, 200u8, 84u8, 253u8, 121u8, 162u8, 6u8, 56u8, 128u8, 96u8, 58u8, 81u8, 70u8, 112u8, 242u8, 135u8, 225u8, 88u8, 30u8, 154u8, 192u8, 249u8, 73u8, 127u8, 64u8, 173u8, 97u8, 13u8, 49u8, 27u8, 223u8, 134u8, 6u8, 171u8, 50u8, 110u8, 12u8, 232u8, 184u8, 163u8, 147u8, 28u8, 114u8, 24u8, 116u8, 158u8, 251u8, 137u8, 41u8, 160u8, 42u8, 249u8, 151u8, 234u8, 43u8, 32u8, 21u8, 34u8, 149u8, 182u8, 202u8, 69u8, 37u8, 62u8, 129u8, 73u8, 3u8, 46u8, 255u8, 69u8, 56u8, 153u8, 213u8, 158u8, 88u8, 90u8, 246u8, 199u8, 165u8, 4u8, 143u8, 52u8, 46u8, 109u8, 43u8, 159u8, 188u8, 158u8, 96u8, 241u8, 223u8, 61u8, 251u8, 213u8, 69u8, 197u8, 156u8, 238u8, 231u8, 163u8, 246u8, 201u8, 240u8, 43u8, 144u8, 109u8, 157u8, 146u8, 111u8, 139u8, 147u8, 95u8, 143u8, 94u8, ], vk_gamme_g2: [ 36u8, 82u8, 226u8, 179u8, 4u8, 218u8, 208u8, 92u8, 83u8, 231u8, 239u8, 236u8, 71u8, 105u8, 80u8, 157u8, 205u8, 68u8, 120u8, 163u8, 8u8, 34u8, 212u8, 253u8, 245u8, 130u8, 157u8, 170u8, 156u8, 183u8, 156u8, 66u8, 33u8, 67u8, 253u8, 17u8, 67u8, 162u8, 141u8, 173u8, 163u8, 57u8, 3u8, 14u8, 221u8, 10u8, 115u8, 193u8, 201u8, 252u8, 90u8, 142u8, 182u8, 239u8, 49u8, 220u8, 70u8, 129u8, 150u8, 183u8, 225u8, 171u8, 153u8, 111u8, 16u8, 49u8, 13u8, 197u8, 144u8, 37u8, 46u8, 162u8, 22u8, 82u8, 26u8, 115u8, 3u8, 208u8, 57u8, 153u8, 238u8, 170u8, 241u8, 71u8, 204u8, 189u8, 56u8, 179u8, 214u8, 15u8, 159u8, 116u8, 206u8, 235u8, 212u8, 217u8, 21u8, 129u8, 55u8, 25u8, 16u8, 165u8, 244u8, 121u8, 4u8, 7u8, 7u8, 47u8, 185u8, 203u8, 190u8, 7u8, 4u8, 224u8, 153u8, 206u8, 195u8, 76u8, 114u8, 9u8, 13u8, 128u8, 112u8, 13u8, 101u8, 105u8, 215u8, 38u8, ], vk_delta_g2: [ 35u8, 182u8, 210u8, 162u8, 219u8, 244u8, 68u8, 167u8, 255u8, 77u8, 84u8, 59u8, 145u8, 243u8, 53u8, 226u8, 10u8, 212u8, 173u8, 81u8, 81u8, 101u8, 44u8, 235u8, 233u8, 225u8, 76u8, 187u8, 251u8, 51u8, 98u8, 32u8, 10u8, 74u8, 150u8, 140u8, 136u8, 47u8, 23u8, 47u8, 158u8, 80u8, 193u8, 233u8, 162u8, 251u8, 112u8, 212u8, 218u8, 229u8, 198u8, 43u8, 20u8, 129u8, 28u8, 42u8, 117u8, 32u8, 248u8, 222u8, 162u8, 243u8, 19u8, 49u8, 42u8, 125u8, 165u8, 133u8, 244u8, 7u8, 2u8, 78u8, 250u8, 224u8, 244u8, 103u8, 255u8, 15u8, 249u8, 71u8, 148u8, 152u8, 105u8, 204u8, 178u8, 202u8, 18u8, 93u8, 191u8, 236u8, 170u8, 157u8, 28u8, 153u8, 245u8, 193u8, 2u8, 32u8, 41u8, 75u8, 92u8, 188u8, 202u8, 31u8, 115u8, 34u8, 99u8, 170u8, 16u8, 149u8, 57u8, 231u8, 95u8, 132u8, 158u8, 240u8, 233u8, 3u8, 34u8, 103u8, 125u8, 55u8, 137u8, 243u8, 232u8, 48u8, 216u8, 27u8, ], vk_ic: &[ [ 28u8, 253u8, 97u8, 199u8, 58u8, 192u8, 26u8, 119u8, 149u8, 72u8, 250u8, 49u8, 130u8, 196u8, 83u8, 230u8, 6u8, 91u8, 129u8, 196u8, 246u8, 19u8, 214u8, 59u8, 152u8, 132u8, 177u8, 92u8, 181u8, 202u8, 195u8, 197u8, 31u8, 41u8, 99u8, 150u8, 59u8, 185u8, 78u8, 191u8, 174u8, 42u8, 127u8, 179u8, 36u8, 206u8, 40u8, 86u8, 123u8, 38u8, 202u8, 224u8, 95u8, 218u8, 85u8, 254u8, 114u8, 62u8, 249u8, 14u8, 3u8, 8u8, 194u8, 210u8, ], [ 23u8, 231u8, 148u8, 82u8, 211u8, 227u8, 176u8, 105u8, 103u8, 176u8, 66u8, 13u8, 252u8, 9u8, 194u8, 146u8, 132u8, 157u8, 8u8, 55u8, 238u8, 44u8, 66u8, 16u8, 184u8, 188u8, 49u8, 145u8, 244u8, 249u8, 106u8, 76u8, 7u8, 243u8, 214u8, 20u8, 144u8, 132u8, 39u8, 93u8, 110u8, 110u8, 176u8, 9u8, 140u8, 185u8, 178u8, 249u8, 149u8, 170u8, 114u8, 104u8, 153u8, 136u8, 165u8, 41u8, 137u8, 137u8, 166u8, 146u8, 158u8, 80u8, 63u8, 2u8, ], [ 11u8, 53u8, 153u8, 214u8, 13u8, 80u8, 148u8, 135u8, 177u8, 249u8, 109u8, 27u8, 118u8, 116u8, 125u8, 175u8, 144u8, 242u8, 67u8, 195u8, 73u8, 73u8, 31u8, 237u8, 196u8, 34u8, 137u8, 102u8, 209u8, 201u8, 68u8, 25u8, 15u8, 215u8, 219u8, 3u8, 129u8, 86u8, 51u8, 109u8, 131u8, 197u8, 217u8, 126u8, 126u8, 11u8, 4u8, 23u8, 161u8, 166u8, 198u8, 160u8, 18u8, 21u8, 74u8, 114u8, 211u8, 190u8, 149u8, 102u8, 212u8, 100u8, 48u8, 196u8, ], [ 33u8, 126u8, 116u8, 163u8, 124u8, 233u8, 161u8, 76u8, 129u8, 14u8, 59u8, 136u8, 50u8, 165u8, 72u8, 43u8, 141u8, 114u8, 81u8, 234u8, 83u8, 129u8, 66u8, 208u8, 96u8, 31u8, 201u8, 9u8, 57u8, 224u8, 8u8, 186u8, 2u8, 85u8, 129u8, 99u8, 138u8, 204u8, 24u8, 80u8, 106u8, 70u8, 161u8, 134u8, 30u8, 16u8, 21u8, 119u8, 247u8, 97u8, 113u8, 32u8, 253u8, 88u8, 206u8, 21u8, 7u8, 240u8, 44u8, 253u8, 227u8, 100u8, 71u8, 31u8, ], [ 17u8, 5u8, 221u8, 187u8, 19u8, 32u8, 149u8, 84u8, 89u8, 196u8, 144u8, 229u8, 240u8, 218u8, 40u8, 152u8, 230u8, 54u8, 161u8, 79u8, 143u8, 153u8, 240u8, 103u8, 8u8, 155u8, 221u8, 101u8, 204u8, 216u8, 98u8, 140u8, 43u8, 203u8, 108u8, 186u8, 239u8, 170u8, 165u8, 185u8, 68u8, 17u8, 145u8, 127u8, 176u8, 232u8, 29u8, 140u8, 95u8, 176u8, 243u8, 241u8, 75u8, 130u8, 63u8, 175u8, 145u8, 150u8, 236u8, 80u8, 243u8, 33u8, 74u8, 150u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_40_250.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 15u8, 81u8, 245u8, 105u8, 58u8, 211u8, 139u8, 222u8, 62u8, 255u8, 219u8, 64u8, 246u8, 223u8, 54u8, 191u8, 110u8, 36u8, 82u8, 63u8, 193u8, 67u8, 130u8, 35u8, 105u8, 231u8, 200u8, 220u8, 121u8, 253u8, 173u8, 250u8, 21u8, 14u8, 28u8, 181u8, 104u8, 6u8, 63u8, 177u8, 2u8, 86u8, 92u8, 161u8, 98u8, 148u8, 9u8, 178u8, 215u8, 180u8, 174u8, 193u8, 113u8, 83u8, 240u8, 145u8, 162u8, 151u8, 74u8, 20u8, 179u8, 78u8, 143u8, 48u8, ], vk_beta_g2: [ 1u8, 220u8, 39u8, 105u8, 116u8, 225u8, 115u8, 230u8, 114u8, 27u8, 253u8, 109u8, 243u8, 60u8, 93u8, 41u8, 227u8, 133u8, 157u8, 149u8, 66u8, 178u8, 165u8, 101u8, 13u8, 223u8, 150u8, 26u8, 220u8, 71u8, 41u8, 118u8, 47u8, 213u8, 109u8, 213u8, 88u8, 130u8, 111u8, 193u8, 41u8, 7u8, 192u8, 29u8, 178u8, 0u8, 231u8, 40u8, 255u8, 112u8, 50u8, 250u8, 101u8, 55u8, 177u8, 9u8, 74u8, 141u8, 61u8, 172u8, 53u8, 152u8, 67u8, 125u8, 29u8, 115u8, 61u8, 5u8, 154u8, 47u8, 186u8, 172u8, 30u8, 246u8, 65u8, 204u8, 214u8, 170u8, 25u8, 4u8, 11u8, 63u8, 20u8, 197u8, 211u8, 39u8, 7u8, 170u8, 102u8, 111u8, 23u8, 211u8, 216u8, 102u8, 65u8, 178u8, 21u8, 204u8, 171u8, 42u8, 97u8, 206u8, 194u8, 165u8, 65u8, 155u8, 22u8, 151u8, 154u8, 49u8, 49u8, 67u8, 49u8, 123u8, 164u8, 226u8, 184u8, 60u8, 160u8, 239u8, 146u8, 17u8, 8u8, 3u8, 247u8, 224u8, 33u8, 178u8, ], vk_gamme_g2: [ 36u8, 165u8, 1u8, 133u8, 156u8, 124u8, 66u8, 249u8, 115u8, 49u8, 214u8, 215u8, 113u8, 11u8, 60u8, 13u8, 42u8, 126u8, 15u8, 84u8, 51u8, 127u8, 207u8, 224u8, 28u8, 242u8, 78u8, 28u8, 25u8, 184u8, 196u8, 183u8, 40u8, 175u8, 119u8, 79u8, 134u8, 54u8, 192u8, 139u8, 193u8, 111u8, 31u8, 226u8, 67u8, 226u8, 195u8, 165u8, 132u8, 71u8, 82u8, 108u8, 77u8, 199u8, 29u8, 203u8, 70u8, 197u8, 91u8, 128u8, 213u8, 185u8, 12u8, 5u8, 16u8, 179u8, 171u8, 83u8, 57u8, 31u8, 23u8, 190u8, 93u8, 177u8, 60u8, 229u8, 171u8, 145u8, 226u8, 82u8, 149u8, 163u8, 240u8, 172u8, 108u8, 135u8, 42u8, 47u8, 63u8, 107u8, 182u8, 166u8, 223u8, 65u8, 80u8, 186u8, 19u8, 216u8, 56u8, 44u8, 250u8, 14u8, 126u8, 241u8, 25u8, 214u8, 168u8, 23u8, 228u8, 187u8, 162u8, 90u8, 115u8, 47u8, 166u8, 17u8, 152u8, 86u8, 197u8, 25u8, 48u8, 40u8, 146u8, 214u8, 247u8, 209u8, 72u8, 166u8, ], vk_delta_g2: [ 31u8, 34u8, 73u8, 248u8, 159u8, 123u8, 45u8, 242u8, 99u8, 25u8, 250u8, 25u8, 68u8, 36u8, 4u8, 44u8, 41u8, 94u8, 255u8, 193u8, 154u8, 180u8, 77u8, 252u8, 138u8, 110u8, 191u8, 169u8, 84u8, 155u8, 206u8, 22u8, 21u8, 92u8, 80u8, 80u8, 58u8, 45u8, 212u8, 44u8, 41u8, 129u8, 93u8, 109u8, 86u8, 18u8, 251u8, 174u8, 144u8, 225u8, 63u8, 81u8, 84u8, 249u8, 144u8, 236u8, 98u8, 114u8, 228u8, 65u8, 85u8, 26u8, 103u8, 11u8, 8u8, 71u8, 151u8, 209u8, 193u8, 107u8, 233u8, 89u8, 190u8, 153u8, 182u8, 122u8, 27u8, 163u8, 2u8, 15u8, 59u8, 154u8, 32u8, 83u8, 141u8, 176u8, 162u8, 228u8, 90u8, 51u8, 125u8, 20u8, 182u8, 158u8, 194u8, 14u8, 1u8, 89u8, 29u8, 210u8, 132u8, 31u8, 142u8, 226u8, 247u8, 168u8, 224u8, 202u8, 69u8, 149u8, 86u8, 251u8, 1u8, 220u8, 113u8, 86u8, 65u8, 157u8, 243u8, 82u8, 210u8, 172u8, 66u8, 212u8, 225u8, 135u8, 64u8, 69u8, ], vk_ic: &[ [ 38u8, 242u8, 102u8, 200u8, 230u8, 251u8, 142u8, 12u8, 92u8, 118u8, 209u8, 157u8, 208u8, 7u8, 94u8, 172u8, 2u8, 11u8, 39u8, 1u8, 193u8, 235u8, 41u8, 10u8, 65u8, 40u8, 123u8, 42u8, 183u8, 52u8, 238u8, 116u8, 11u8, 191u8, 27u8, 181u8, 244u8, 66u8, 236u8, 10u8, 50u8, 139u8, 216u8, 55u8, 168u8, 61u8, 70u8, 158u8, 169u8, 161u8, 16u8, 123u8, 114u8, 8u8, 84u8, 118u8, 244u8, 179u8, 60u8, 65u8, 126u8, 55u8, 124u8, 155u8, ], [ 5u8, 86u8, 222u8, 66u8, 96u8, 253u8, 16u8, 31u8, 209u8, 22u8, 114u8, 39u8, 42u8, 65u8, 96u8, 10u8, 111u8, 112u8, 111u8, 87u8, 61u8, 165u8, 48u8, 151u8, 189u8, 246u8, 77u8, 13u8, 145u8, 21u8, 206u8, 221u8, 1u8, 60u8, 231u8, 167u8, 107u8, 91u8, 219u8, 162u8, 110u8, 236u8, 36u8, 235u8, 235u8, 129u8, 4u8, 210u8, 101u8, 102u8, 167u8, 230u8, 47u8, 146u8, 239u8, 186u8, 124u8, 52u8, 64u8, 217u8, 213u8, 107u8, 209u8, 171u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/append_with_subtrees_26_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 4u8, 35u8, 179u8, 5u8, 245u8, 113u8, 253u8, 229u8, 166u8, 65u8, 122u8, 30u8, 105u8, 207u8, 162u8, 85u8, 132u8, 190u8, 181u8, 54u8, 70u8, 148u8, 223u8, 135u8, 211u8, 141u8, 73u8, 2u8, 198u8, 61u8, 53u8, 23u8, 42u8, 21u8, 179u8, 89u8, 172u8, 137u8, 243u8, 161u8, 244u8, 171u8, 43u8, 206u8, 113u8, 232u8, 223u8, 190u8, 63u8, 197u8, 118u8, 141u8, 152u8, 44u8, 228u8, 14u8, 88u8, 143u8, 130u8, 119u8, 24u8, 3u8, 166u8, 85u8, ], vk_beta_g2: [ 16u8, 133u8, 239u8, 200u8, 109u8, 176u8, 231u8, 83u8, 140u8, 209u8, 143u8, 227u8, 244u8, 27u8, 49u8, 165u8, 39u8, 61u8, 168u8, 46u8, 241u8, 88u8, 107u8, 139u8, 155u8, 84u8, 66u8, 43u8, 107u8, 81u8, 132u8, 76u8, 31u8, 122u8, 122u8, 165u8, 147u8, 66u8, 162u8, 0u8, 170u8, 208u8, 23u8, 142u8, 61u8, 218u8, 247u8, 40u8, 249u8, 159u8, 212u8, 254u8, 236u8, 22u8, 17u8, 152u8, 218u8, 12u8, 51u8, 238u8, 116u8, 18u8, 240u8, 4u8, 7u8, 254u8, 241u8, 122u8, 143u8, 151u8, 138u8, 11u8, 65u8, 69u8, 191u8, 97u8, 249u8, 8u8, 137u8, 192u8, 46u8, 91u8, 90u8, 32u8, 174u8, 137u8, 58u8, 131u8, 232u8, 116u8, 76u8, 136u8, 164u8, 159u8, 200u8, 183u8, 23u8, 16u8, 246u8, 152u8, 252u8, 21u8, 103u8, 24u8, 103u8, 211u8, 226u8, 82u8, 240u8, 245u8, 7u8, 237u8, 185u8, 43u8, 64u8, 53u8, 253u8, 71u8, 82u8, 3u8, 232u8, 98u8, 84u8, 228u8, 187u8, 215u8, 77u8, 239u8, ], vk_gamme_g2: [ 29u8, 88u8, 141u8, 54u8, 237u8, 188u8, 125u8, 166u8, 31u8, 12u8, 249u8, 247u8, 60u8, 30u8, 116u8, 222u8, 64u8, 152u8, 212u8, 25u8, 155u8, 218u8, 70u8, 11u8, 206u8, 156u8, 142u8, 31u8, 140u8, 184u8, 99u8, 27u8, 30u8, 198u8, 176u8, 20u8, 166u8, 210u8, 177u8, 120u8, 62u8, 178u8, 152u8, 182u8, 22u8, 56u8, 188u8, 19u8, 99u8, 182u8, 114u8, 208u8, 248u8, 98u8, 23u8, 178u8, 147u8, 83u8, 80u8, 173u8, 147u8, 160u8, 132u8, 54u8, 8u8, 234u8, 224u8, 216u8, 6u8, 223u8, 94u8, 199u8, 232u8, 161u8, 9u8, 169u8, 195u8, 195u8, 70u8, 200u8, 76u8, 129u8, 143u8, 60u8, 114u8, 217u8, 176u8, 247u8, 167u8, 248u8, 88u8, 137u8, 251u8, 29u8, 198u8, 189u8, 5u8, 187u8, 80u8, 145u8, 227u8, 82u8, 152u8, 247u8, 190u8, 72u8, 8u8, 251u8, 58u8, 152u8, 89u8, 23u8, 219u8, 148u8, 90u8, 253u8, 11u8, 112u8, 4u8, 70u8, 8u8, 191u8, 117u8, 40u8, 99u8, 33u8, 140u8, 214u8, ], vk_delta_g2: [ 16u8, 253u8, 105u8, 173u8, 85u8, 83u8, 227u8, 147u8, 27u8, 189u8, 163u8, 199u8, 80u8, 46u8, 236u8, 166u8, 59u8, 239u8, 191u8, 65u8, 217u8, 9u8, 145u8, 46u8, 127u8, 89u8, 35u8, 221u8, 239u8, 70u8, 69u8, 72u8, 38u8, 110u8, 181u8, 72u8, 35u8, 45u8, 111u8, 213u8, 33u8, 156u8, 11u8, 229u8, 30u8, 247u8, 182u8, 245u8, 174u8, 91u8, 32u8, 54u8, 81u8, 31u8, 222u8, 236u8, 226u8, 29u8, 47u8, 243u8, 172u8, 110u8, 198u8, 135u8, 24u8, 45u8, 152u8, 8u8, 75u8, 224u8, 214u8, 164u8, 211u8, 27u8, 126u8, 39u8, 223u8, 74u8, 202u8, 198u8, 244u8, 69u8, 158u8, 52u8, 188u8, 158u8, 190u8, 152u8, 148u8, 220u8, 118u8, 200u8, 224u8, 220u8, 171u8, 70u8, 15u8, 244u8, 203u8, 166u8, 21u8, 86u8, 98u8, 94u8, 49u8, 78u8, 171u8, 146u8, 38u8, 132u8, 249u8, 78u8, 74u8, 187u8, 166u8, 226u8, 70u8, 132u8, 60u8, 201u8, 135u8, 183u8, 13u8, 115u8, 208u8, 233u8, 118u8, 240u8, ], vk_ic: &[ [ 21u8, 36u8, 170u8, 76u8, 56u8, 208u8, 11u8, 161u8, 225u8, 82u8, 148u8, 114u8, 4u8, 172u8, 166u8, 146u8, 207u8, 99u8, 227u8, 107u8, 38u8, 9u8, 233u8, 9u8, 186u8, 189u8, 178u8, 212u8, 180u8, 37u8, 36u8, 89u8, 11u8, 36u8, 34u8, 22u8, 129u8, 164u8, 153u8, 228u8, 6u8, 119u8, 112u8, 172u8, 159u8, 217u8, 42u8, 24u8, 34u8, 63u8, 45u8, 185u8, 170u8, 140u8, 93u8, 6u8, 232u8, 36u8, 22u8, 207u8, 60u8, 138u8, 93u8, 49u8, ], [ 19u8, 92u8, 40u8, 66u8, 178u8, 26u8, 118u8, 143u8, 145u8, 100u8, 200u8, 98u8, 145u8, 68u8, 73u8, 198u8, 215u8, 189u8, 19u8, 69u8, 125u8, 213u8, 231u8, 114u8, 195u8, 27u8, 244u8, 170u8, 102u8, 75u8, 62u8, 61u8, 41u8, 203u8, 194u8, 14u8, 125u8, 67u8, 63u8, 156u8, 193u8, 96u8, 242u8, 26u8, 51u8, 236u8, 228u8, 243u8, 94u8, 137u8, 229u8, 170u8, 231u8, 56u8, 221u8, 77u8, 105u8, 98u8, 40u8, 2u8, 254u8, 225u8, 19u8, 25u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_40_10.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 28u8, 86u8, 211u8, 55u8, 223u8, 160u8, 165u8, 232u8, 135u8, 129u8, 171u8, 7u8, 33u8, 136u8, 33u8, 252u8, 22u8, 151u8, 155u8, 82u8, 176u8, 155u8, 1u8, 91u8, 146u8, 191u8, 42u8, 113u8, 68u8, 74u8, 101u8, 127u8, 41u8, 7u8, 50u8, 151u8, 161u8, 68u8, 48u8, 79u8, 247u8, 41u8, 94u8, 146u8, 170u8, 91u8, 187u8, 124u8, 28u8, 216u8, 143u8, 75u8, 175u8, 173u8, 116u8, 228u8, 121u8, 85u8, 125u8, 45u8, 53u8, 190u8, 178u8, 94u8, ], vk_beta_g2: [ 26u8, 78u8, 2u8, 117u8, 66u8, 11u8, 249u8, 53u8, 58u8, 2u8, 206u8, 51u8, 179u8, 50u8, 169u8, 62u8, 109u8, 218u8, 144u8, 172u8, 131u8, 222u8, 203u8, 173u8, 210u8, 40u8, 28u8, 200u8, 200u8, 149u8, 182u8, 67u8, 12u8, 154u8, 226u8, 237u8, 182u8, 27u8, 212u8, 172u8, 225u8, 231u8, 134u8, 200u8, 123u8, 218u8, 43u8, 234u8, 98u8, 170u8, 28u8, 204u8, 146u8, 188u8, 174u8, 215u8, 185u8, 53u8, 211u8, 19u8, 225u8, 12u8, 34u8, 221u8, 14u8, 187u8, 109u8, 52u8, 40u8, 66u8, 63u8, 15u8, 40u8, 115u8, 88u8, 151u8, 76u8, 203u8, 125u8, 87u8, 168u8, 184u8, 172u8, 57u8, 197u8, 142u8, 63u8, 74u8, 228u8, 190u8, 10u8, 222u8, 98u8, 72u8, 206u8, 89u8, 22u8, 106u8, 239u8, 146u8, 250u8, 19u8, 167u8, 38u8, 90u8, 172u8, 188u8, 197u8, 156u8, 84u8, 74u8, 207u8, 152u8, 245u8, 132u8, 135u8, 39u8, 195u8, 112u8, 194u8, 164u8, 152u8, 204u8, 75u8, 250u8, 237u8, 19u8, 222u8, ], vk_gamme_g2: [ 10u8, 90u8, 209u8, 128u8, 197u8, 98u8, 242u8, 104u8, 81u8, 82u8, 129u8, 93u8, 44u8, 66u8, 27u8, 150u8, 127u8, 208u8, 43u8, 114u8, 96u8, 246u8, 32u8, 45u8, 15u8, 228u8, 36u8, 158u8, 204u8, 78u8, 25u8, 183u8, 8u8, 67u8, 123u8, 105u8, 152u8, 207u8, 232u8, 184u8, 134u8, 180u8, 81u8, 30u8, 6u8, 125u8, 118u8, 251u8, 70u8, 253u8, 76u8, 94u8, 138u8, 140u8, 55u8, 20u8, 139u8, 171u8, 177u8, 213u8, 62u8, 26u8, 95u8, 152u8, 4u8, 249u8, 169u8, 244u8, 99u8, 177u8, 215u8, 235u8, 69u8, 146u8, 35u8, 148u8, 244u8, 162u8, 24u8, 76u8, 31u8, 240u8, 121u8, 144u8, 250u8, 107u8, 25u8, 109u8, 21u8, 98u8, 231u8, 17u8, 109u8, 125u8, 215u8, 11u8, 34u8, 126u8, 68u8, 36u8, 56u8, 215u8, 141u8, 39u8, 128u8, 178u8, 44u8, 155u8, 211u8, 186u8, 59u8, 176u8, 22u8, 58u8, 183u8, 247u8, 26u8, 245u8, 143u8, 200u8, 18u8, 14u8, 66u8, 149u8, 179u8, 20u8, 6u8, 215u8, ], vk_delta_g2: [ 14u8, 153u8, 8u8, 99u8, 125u8, 251u8, 72u8, 67u8, 113u8, 152u8, 44u8, 3u8, 157u8, 104u8, 183u8, 45u8, 67u8, 78u8, 255u8, 205u8, 131u8, 213u8, 213u8, 63u8, 154u8, 1u8, 3u8, 192u8, 221u8, 130u8, 9u8, 195u8, 12u8, 254u8, 120u8, 130u8, 232u8, 125u8, 125u8, 217u8, 7u8, 183u8, 65u8, 207u8, 79u8, 241u8, 84u8, 150u8, 222u8, 199u8, 0u8, 111u8, 119u8, 189u8, 140u8, 100u8, 211u8, 44u8, 243u8, 210u8, 203u8, 219u8, 143u8, 15u8, 41u8, 238u8, 94u8, 29u8, 18u8, 123u8, 17u8, 212u8, 22u8, 108u8, 46u8, 50u8, 155u8, 113u8, 66u8, 198u8, 227u8, 218u8, 51u8, 248u8, 116u8, 169u8, 67u8, 8u8, 161u8, 66u8, 200u8, 6u8, 241u8, 95u8, 127u8, 45u8, 14u8, 130u8, 229u8, 33u8, 186u8, 64u8, 230u8, 176u8, 108u8, 84u8, 29u8, 116u8, 27u8, 247u8, 206u8, 109u8, 98u8, 252u8, 36u8, 85u8, 52u8, 196u8, 193u8, 110u8, 58u8, 98u8, 120u8, 157u8, 188u8, 160u8, 246u8, 214u8, ], vk_ic: &[ [ 7u8, 163u8, 75u8, 207u8, 95u8, 10u8, 63u8, 52u8, 137u8, 68u8, 235u8, 245u8, 178u8, 255u8, 42u8, 28u8, 80u8, 35u8, 192u8, 200u8, 42u8, 123u8, 87u8, 19u8, 244u8, 88u8, 138u8, 173u8, 192u8, 62u8, 64u8, 191u8, 0u8, 74u8, 229u8, 0u8, 85u8, 24u8, 99u8, 190u8, 31u8, 85u8, 7u8, 116u8, 216u8, 199u8, 73u8, 24u8, 125u8, 17u8, 84u8, 216u8, 185u8, 182u8, 141u8, 125u8, 229u8, 101u8, 24u8, 96u8, 220u8, 58u8, 2u8, 4u8, ], [ 33u8, 226u8, 62u8, 214u8, 163u8, 192u8, 209u8, 112u8, 73u8, 125u8, 18u8, 99u8, 151u8, 30u8, 176u8, 215u8, 80u8, 66u8, 27u8, 189u8, 0u8, 17u8, 211u8, 63u8, 193u8, 61u8, 58u8, 37u8, 131u8, 195u8, 210u8, 123u8, 44u8, 45u8, 95u8, 16u8, 253u8, 60u8, 201u8, 168u8, 237u8, 109u8, 98u8, 12u8, 36u8, 49u8, 153u8, 88u8, 25u8, 36u8, 138u8, 37u8, 233u8, 96u8, 51u8, 33u8, 234u8, 158u8, 233u8, 170u8, 131u8, 12u8, 224u8, 227u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/combined_26_4_1.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 10usize, vk_alpha_g1: [ 6u8, 190u8, 93u8, 150u8, 238u8, 163u8, 234u8, 51u8, 159u8, 99u8, 20u8, 202u8, 24u8, 196u8, 41u8, 10u8, 199u8, 239u8, 54u8, 179u8, 238u8, 38u8, 101u8, 61u8, 244u8, 54u8, 172u8, 166u8, 32u8, 28u8, 111u8, 53u8, 13u8, 131u8, 60u8, 21u8, 235u8, 101u8, 104u8, 32u8, 98u8, 58u8, 74u8, 107u8, 130u8, 40u8, 105u8, 164u8, 208u8, 159u8, 193u8, 226u8, 81u8, 157u8, 235u8, 31u8, 87u8, 234u8, 131u8, 189u8, 244u8, 119u8, 248u8, 216u8, ], vk_beta_g2: [ 27u8, 66u8, 6u8, 228u8, 83u8, 156u8, 127u8, 5u8, 179u8, 244u8, 193u8, 186u8, 237u8, 94u8, 96u8, 1u8, 145u8, 126u8, 94u8, 62u8, 36u8, 163u8, 34u8, 133u8, 226u8, 250u8, 187u8, 80u8, 183u8, 230u8, 49u8, 26u8, 38u8, 181u8, 110u8, 99u8, 116u8, 131u8, 123u8, 242u8, 31u8, 182u8, 177u8, 241u8, 53u8, 42u8, 208u8, 93u8, 164u8, 159u8, 188u8, 232u8, 23u8, 208u8, 42u8, 226u8, 100u8, 78u8, 10u8, 50u8, 127u8, 235u8, 172u8, 1u8, 23u8, 160u8, 199u8, 125u8, 49u8, 187u8, 146u8, 186u8, 169u8, 38u8, 69u8, 201u8, 42u8, 163u8, 107u8, 226u8, 207u8, 246u8, 53u8, 116u8, 174u8, 236u8, 35u8, 77u8, 13u8, 83u8, 2u8, 186u8, 81u8, 3u8, 174u8, 41u8, 45u8, 78u8, 230u8, 75u8, 222u8, 150u8, 21u8, 235u8, 10u8, 101u8, 53u8, 199u8, 44u8, 208u8, 25u8, 250u8, 59u8, 186u8, 208u8, 138u8, 164u8, 77u8, 140u8, 70u8, 223u8, 94u8, 0u8, 213u8, 20u8, 99u8, 155u8, 234u8, ], vk_gamme_g2: [ 19u8, 86u8, 121u8, 88u8, 197u8, 28u8, 0u8, 173u8, 188u8, 101u8, 77u8, 239u8, 172u8, 49u8, 244u8, 39u8, 9u8, 132u8, 53u8, 101u8, 75u8, 130u8, 25u8, 57u8, 99u8, 133u8, 67u8, 131u8, 199u8, 102u8, 137u8, 145u8, 37u8, 113u8, 230u8, 220u8, 107u8, 235u8, 87u8, 133u8, 153u8, 95u8, 163u8, 48u8, 122u8, 108u8, 210u8, 193u8, 36u8, 56u8, 233u8, 68u8, 17u8, 161u8, 73u8, 18u8, 40u8, 73u8, 203u8, 201u8, 70u8, 9u8, 164u8, 192u8, 19u8, 110u8, 67u8, 238u8, 222u8, 112u8, 113u8, 10u8, 117u8, 44u8, 178u8, 42u8, 151u8, 74u8, 90u8, 130u8, 201u8, 220u8, 47u8, 158u8, 209u8, 141u8, 121u8, 18u8, 237u8, 106u8, 43u8, 74u8, 4u8, 72u8, 215u8, 170u8, 41u8, 36u8, 192u8, 203u8, 32u8, 186u8, 178u8, 71u8, 128u8, 139u8, 104u8, 161u8, 34u8, 70u8, 183u8, 176u8, 33u8, 177u8, 152u8, 152u8, 177u8, 115u8, 43u8, 41u8, 36u8, 203u8, 206u8, 201u8, 88u8, 195u8, 250u8, 11u8, ], vk_delta_g2: [ 47u8, 7u8, 79u8, 95u8, 64u8, 68u8, 64u8, 106u8, 92u8, 68u8, 63u8, 109u8, 254u8, 98u8, 179u8, 174u8, 91u8, 213u8, 21u8, 82u8, 184u8, 201u8, 151u8, 124u8, 136u8, 0u8, 25u8, 196u8, 129u8, 43u8, 143u8, 162u8, 43u8, 161u8, 127u8, 137u8, 10u8, 26u8, 175u8, 241u8, 129u8, 27u8, 247u8, 191u8, 153u8, 224u8, 240u8, 240u8, 153u8, 1u8, 28u8, 133u8, 85u8, 64u8, 227u8, 96u8, 246u8, 41u8, 172u8, 138u8, 38u8, 135u8, 60u8, 200u8, 5u8, 16u8, 207u8, 37u8, 3u8, 213u8, 191u8, 49u8, 111u8, 157u8, 158u8, 230u8, 167u8, 136u8, 252u8, 45u8, 204u8, 57u8, 41u8, 240u8, 34u8, 158u8, 137u8, 165u8, 110u8, 15u8, 92u8, 15u8, 92u8, 253u8, 228u8, 227u8, 29u8, 114u8, 255u8, 178u8, 88u8, 161u8, 78u8, 135u8, 20u8, 146u8, 174u8, 138u8, 92u8, 8u8, 74u8, 108u8, 99u8, 243u8, 48u8, 91u8, 217u8, 57u8, 93u8, 57u8, 190u8, 91u8, 86u8, 149u8, 187u8, 239u8, 50u8, 187u8, ], vk_ic: &[ [ 43u8, 202u8, 159u8, 175u8, 130u8, 225u8, 84u8, 253u8, 38u8, 158u8, 136u8, 58u8, 39u8, 211u8, 211u8, 34u8, 170u8, 64u8, 49u8, 90u8, 190u8, 143u8, 198u8, 44u8, 129u8, 24u8, 189u8, 205u8, 168u8, 112u8, 154u8, 101u8, 24u8, 10u8, 238u8, 123u8, 248u8, 123u8, 72u8, 133u8, 83u8, 242u8, 48u8, 110u8, 140u8, 70u8, 52u8, 30u8, 71u8, 187u8, 81u8, 57u8, 203u8, 196u8, 81u8, 45u8, 18u8, 251u8, 211u8, 149u8, 163u8, 245u8, 153u8, 173u8, ], [ 39u8, 231u8, 196u8, 86u8, 119u8, 83u8, 193u8, 16u8, 36u8, 202u8, 245u8, 64u8, 153u8, 39u8, 46u8, 191u8, 98u8, 49u8, 173u8, 253u8, 247u8, 197u8, 232u8, 196u8, 217u8, 157u8, 159u8, 250u8, 125u8, 54u8, 241u8, 105u8, 28u8, 136u8, 142u8, 185u8, 179u8, 121u8, 48u8, 29u8, 99u8, 108u8, 124u8, 26u8, 23u8, 85u8, 210u8, 47u8, 72u8, 180u8, 28u8, 113u8, 167u8, 224u8, 205u8, 225u8, 81u8, 77u8, 122u8, 141u8, 24u8, 97u8, 8u8, 62u8, ], [ 34u8, 194u8, 121u8, 219u8, 101u8, 37u8, 9u8, 141u8, 146u8, 180u8, 18u8, 251u8, 17u8, 137u8, 170u8, 197u8, 52u8, 170u8, 171u8, 9u8, 44u8, 130u8, 67u8, 218u8, 135u8, 0u8, 160u8, 67u8, 185u8, 30u8, 66u8, 17u8, 29u8, 144u8, 250u8, 219u8, 27u8, 59u8, 132u8, 38u8, 151u8, 174u8, 102u8, 55u8, 65u8, 71u8, 152u8, 217u8, 117u8, 32u8, 212u8, 200u8, 235u8, 120u8, 69u8, 91u8, 192u8, 123u8, 134u8, 150u8, 54u8, 198u8, 233u8, 194u8, ], [ 8u8, 98u8, 10u8, 55u8, 30u8, 26u8, 78u8, 102u8, 12u8, 1u8, 249u8, 109u8, 39u8, 147u8, 188u8, 34u8, 140u8, 149u8, 94u8, 177u8, 74u8, 16u8, 38u8, 143u8, 52u8, 12u8, 204u8, 42u8, 124u8, 233u8, 102u8, 1u8, 2u8, 228u8, 214u8, 183u8, 110u8, 246u8, 253u8, 140u8, 217u8, 130u8, 219u8, 8u8, 69u8, 98u8, 159u8, 180u8, 21u8, 55u8, 62u8, 216u8, 18u8, 175u8, 137u8, 18u8, 245u8, 167u8, 2u8, 56u8, 206u8, 88u8, 76u8, 160u8, ], [ 15u8, 46u8, 43u8, 87u8, 109u8, 90u8, 108u8, 230u8, 67u8, 229u8, 144u8, 171u8, 174u8, 71u8, 74u8, 95u8, 143u8, 96u8, 16u8, 83u8, 97u8, 123u8, 246u8, 6u8, 110u8, 52u8, 181u8, 4u8, 170u8, 7u8, 51u8, 162u8, 34u8, 3u8, 75u8, 113u8, 4u8, 61u8, 148u8, 93u8, 154u8, 13u8, 225u8, 86u8, 30u8, 123u8, 204u8, 189u8, 46u8, 180u8, 184u8, 162u8, 119u8, 249u8, 213u8, 169u8, 153u8, 73u8, 15u8, 1u8, 107u8, 45u8, 180u8, 118u8, ], [ 39u8, 223u8, 174u8, 135u8, 123u8, 216u8, 225u8, 213u8, 26u8, 67u8, 142u8, 14u8, 170u8, 120u8, 220u8, 32u8, 104u8, 177u8, 176u8, 12u8, 104u8, 0u8, 7u8, 103u8, 49u8, 57u8, 212u8, 103u8, 115u8, 52u8, 139u8, 130u8, 5u8, 206u8, 139u8, 6u8, 5u8, 204u8, 35u8, 91u8, 64u8, 194u8, 244u8, 248u8, 114u8, 214u8, 52u8, 187u8, 56u8, 106u8, 46u8, 197u8, 82u8, 189u8, 139u8, 113u8, 252u8, 47u8, 246u8, 194u8, 141u8, 50u8, 202u8, 105u8, ], [ 1u8, 91u8, 6u8, 210u8, 75u8, 222u8, 85u8, 68u8, 48u8, 237u8, 159u8, 181u8, 192u8, 241u8, 42u8, 55u8, 89u8, 16u8, 153u8, 81u8, 204u8, 222u8, 201u8, 64u8, 237u8, 155u8, 58u8, 233u8, 206u8, 13u8, 73u8, 60u8, 15u8, 48u8, 88u8, 45u8, 243u8, 153u8, 234u8, 170u8, 60u8, 180u8, 204u8, 73u8, 184u8, 89u8, 228u8, 13u8, 233u8, 220u8, 57u8, 226u8, 115u8, 223u8, 20u8, 188u8, 204u8, 45u8, 137u8, 225u8, 13u8, 36u8, 33u8, 240u8, ], [ 38u8, 204u8, 238u8, 175u8, 236u8, 52u8, 249u8, 121u8, 183u8, 160u8, 230u8, 93u8, 229u8, 59u8, 32u8, 233u8, 97u8, 234u8, 189u8, 40u8, 233u8, 141u8, 41u8, 229u8, 81u8, 69u8, 56u8, 212u8, 173u8, 99u8, 143u8, 247u8, 45u8, 129u8, 244u8, 65u8, 208u8, 57u8, 45u8, 194u8, 37u8, 207u8, 179u8, 62u8, 151u8, 154u8, 63u8, 11u8, 211u8, 183u8, 211u8, 248u8, 223u8, 3u8, 136u8, 232u8, 142u8, 161u8, 166u8, 20u8, 20u8, 161u8, 206u8, 144u8, ], [ 16u8, 5u8, 115u8, 184u8, 234u8, 157u8, 73u8, 241u8, 222u8, 173u8, 225u8, 160u8, 114u8, 184u8, 214u8, 234u8, 129u8, 63u8, 168u8, 53u8, 240u8, 95u8, 40u8, 34u8, 69u8, 187u8, 176u8, 246u8, 28u8, 113u8, 88u8, 130u8, 33u8, 115u8, 174u8, 25u8, 182u8, 23u8, 206u8, 134u8, 64u8, 126u8, 244u8, 254u8, 76u8, 49u8, 63u8, 183u8, 172u8, 12u8, 69u8, 223u8, 36u8, 0u8, 28u8, 172u8, 182u8, 0u8, 74u8, 231u8, 126u8, 203u8, 90u8, 41u8, ], [ 38u8, 108u8, 243u8, 244u8, 149u8, 168u8, 82u8, 224u8, 190u8, 229u8, 196u8, 184u8, 125u8, 160u8, 49u8, 222u8, 33u8, 34u8, 133u8, 131u8, 202u8, 80u8, 92u8, 100u8, 75u8, 100u8, 84u8, 117u8, 38u8, 145u8, 0u8, 48u8, 26u8, 98u8, 121u8, 188u8, 201u8, 37u8, 28u8, 45u8, 88u8, 249u8, 36u8, 151u8, 181u8, 220u8, 137u8, 18u8, 192u8, 23u8, 164u8, 43u8, 106u8, 138u8, 72u8, 252u8, 82u8, 47u8, 156u8, 11u8, 6u8, 212u8, 157u8, 229u8, ], [ 15u8, 204u8, 125u8, 217u8, 230u8, 56u8, 94u8, 66u8, 17u8, 229u8, 145u8, 199u8, 112u8, 172u8, 132u8, 142u8, 133u8, 169u8, 107u8, 127u8, 226u8, 83u8, 245u8, 213u8, 163u8, 73u8, 2u8, 13u8, 195u8, 242u8, 103u8, 190u8, 19u8, 109u8, 58u8, 148u8, 57u8, 248u8, 187u8, 180u8, 67u8, 202u8, 202u8, 198u8, 126u8, 236u8, 175u8, 205u8, 230u8, 216u8, 160u8, 81u8, 126u8, 80u8, 69u8, 72u8, 76u8, 120u8, 74u8, 221u8, 166u8, 14u8, 198u8, 179u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src
solana_public_repos/Lightprotocol/light-protocol/circuit-lib/verifier/src/verifying_keys/address_append_26_100.rs
// This file is generated by xtask. Do not edit it manually. use groth16_solana::groth16::Groth16Verifyingkey; pub const VERIFYINGKEY: Groth16Verifyingkey = Groth16Verifyingkey { nr_pubinputs: 1usize, vk_alpha_g1: [ 37u8, 145u8, 36u8, 88u8, 17u8, 223u8, 165u8, 224u8, 83u8, 174u8, 53u8, 50u8, 151u8, 153u8, 137u8, 131u8, 187u8, 99u8, 224u8, 113u8, 41u8, 56u8, 119u8, 183u8, 217u8, 157u8, 83u8, 80u8, 87u8, 145u8, 126u8, 74u8, 27u8, 218u8, 21u8, 165u8, 38u8, 153u8, 181u8, 234u8, 110u8, 145u8, 35u8, 190u8, 13u8, 70u8, 184u8, 151u8, 50u8, 126u8, 136u8, 109u8, 187u8, 120u8, 97u8, 7u8, 188u8, 46u8, 102u8, 91u8, 63u8, 176u8, 123u8, 228u8, ], vk_beta_g2: [ 31u8, 15u8, 124u8, 130u8, 56u8, 172u8, 82u8, 34u8, 136u8, 128u8, 234u8, 159u8, 12u8, 250u8, 121u8, 33u8, 164u8, 180u8, 183u8, 243u8, 211u8, 181u8, 67u8, 54u8, 162u8, 103u8, 219u8, 65u8, 164u8, 71u8, 161u8, 35u8, 17u8, 17u8, 32u8, 144u8, 141u8, 133u8, 57u8, 65u8, 255u8, 16u8, 249u8, 163u8, 190u8, 151u8, 43u8, 212u8, 22u8, 242u8, 57u8, 97u8, 222u8, 194u8, 8u8, 124u8, 133u8, 218u8, 70u8, 21u8, 158u8, 29u8, 15u8, 54u8, 18u8, 41u8, 144u8, 67u8, 159u8, 213u8, 165u8, 170u8, 179u8, 33u8, 99u8, 150u8, 157u8, 157u8, 166u8, 4u8, 33u8, 55u8, 35u8, 182u8, 121u8, 198u8, 105u8, 76u8, 246u8, 6u8, 121u8, 236u8, 79u8, 142u8, 192u8, 158u8, 39u8, 61u8, 91u8, 68u8, 139u8, 82u8, 223u8, 233u8, 123u8, 151u8, 209u8, 245u8, 143u8, 223u8, 109u8, 236u8, 32u8, 34u8, 185u8, 134u8, 75u8, 223u8, 102u8, 172u8, 62u8, 225u8, 184u8, 55u8, 81u8, 49u8, 171u8, 245u8, ], vk_gamme_g2: [ 0u8, 77u8, 179u8, 160u8, 193u8, 96u8, 108u8, 215u8, 122u8, 213u8, 107u8, 132u8, 92u8, 219u8, 61u8, 239u8, 235u8, 107u8, 238u8, 236u8, 94u8, 129u8, 195u8, 248u8, 221u8, 242u8, 167u8, 86u8, 233u8, 147u8, 197u8, 122u8, 0u8, 112u8, 180u8, 102u8, 134u8, 242u8, 129u8, 30u8, 39u8, 196u8, 8u8, 148u8, 194u8, 247u8, 200u8, 16u8, 238u8, 160u8, 220u8, 94u8, 174u8, 208u8, 145u8, 13u8, 104u8, 175u8, 61u8, 66u8, 8u8, 62u8, 37u8, 223u8, 44u8, 206u8, 129u8, 92u8, 139u8, 126u8, 44u8, 162u8, 190u8, 239u8, 97u8, 107u8, 62u8, 8u8, 100u8, 135u8, 152u8, 81u8, 25u8, 53u8, 71u8, 55u8, 4u8, 77u8, 188u8, 13u8, 79u8, 208u8, 160u8, 180u8, 37u8, 210u8, 12u8, 211u8, 191u8, 201u8, 234u8, 50u8, 91u8, 78u8, 96u8, 72u8, 152u8, 173u8, 228u8, 50u8, 159u8, 8u8, 71u8, 244u8, 114u8, 135u8, 227u8, 5u8, 213u8, 129u8, 88u8, 83u8, 19u8, 31u8, 220u8, 63u8, 66u8, 245u8, ], vk_delta_g2: [ 0u8, 227u8, 136u8, 147u8, 11u8, 105u8, 250u8, 89u8, 61u8, 216u8, 249u8, 29u8, 109u8, 26u8, 224u8, 100u8, 2u8, 79u8, 39u8, 51u8, 233u8, 253u8, 3u8, 254u8, 36u8, 61u8, 206u8, 142u8, 14u8, 111u8, 202u8, 212u8, 5u8, 237u8, 32u8, 204u8, 92u8, 15u8, 251u8, 233u8, 153u8, 142u8, 60u8, 251u8, 33u8, 148u8, 244u8, 22u8, 104u8, 241u8, 58u8, 187u8, 178u8, 236u8, 235u8, 239u8, 172u8, 221u8, 240u8, 187u8, 85u8, 40u8, 47u8, 79u8, 25u8, 131u8, 59u8, 216u8, 196u8, 249u8, 19u8, 4u8, 74u8, 217u8, 16u8, 211u8, 161u8, 160u8, 94u8, 198u8, 16u8, 14u8, 72u8, 139u8, 155u8, 172u8, 104u8, 135u8, 178u8, 132u8, 79u8, 163u8, 137u8, 46u8, 227u8, 76u8, 28u8, 177u8, 147u8, 180u8, 144u8, 41u8, 181u8, 248u8, 234u8, 37u8, 118u8, 11u8, 7u8, 98u8, 140u8, 83u8, 25u8, 26u8, 64u8, 134u8, 65u8, 15u8, 114u8, 224u8, 45u8, 81u8, 51u8, 109u8, 202u8, 129u8, 131u8, 148u8, ], vk_ic: &[ [ 18u8, 214u8, 38u8, 228u8, 132u8, 5u8, 19u8, 229u8, 247u8, 150u8, 112u8, 216u8, 67u8, 95u8, 71u8, 249u8, 2u8, 117u8, 33u8, 200u8, 206u8, 62u8, 242u8, 232u8, 66u8, 81u8, 242u8, 106u8, 112u8, 2u8, 109u8, 199u8, 14u8, 238u8, 70u8, 109u8, 140u8, 181u8, 250u8, 1u8, 133u8, 109u8, 253u8, 120u8, 170u8, 57u8, 45u8, 111u8, 27u8, 118u8, 126u8, 240u8, 116u8, 32u8, 162u8, 113u8, 154u8, 54u8, 63u8, 19u8, 88u8, 150u8, 12u8, 209u8, ], [ 15u8, 248u8, 253u8, 218u8, 141u8, 182u8, 165u8, 83u8, 157u8, 201u8, 130u8, 44u8, 157u8, 138u8, 79u8, 112u8, 73u8, 36u8, 153u8, 247u8, 18u8, 156u8, 66u8, 75u8, 55u8, 246u8, 56u8, 111u8, 49u8, 6u8, 23u8, 162u8, 29u8, 165u8, 27u8, 129u8, 17u8, 195u8, 3u8, 71u8, 120u8, 0u8, 185u8, 235u8, 202u8, 186u8, 199u8, 165u8, 69u8, 75u8, 159u8, 123u8, 114u8, 3u8, 126u8, 73u8, 20u8, 94u8, 38u8, 107u8, 30u8, 65u8, 134u8, 145u8, ], ], };
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.npmignore
bin/proving-keys/append-with-proofs_26_10.key bin/proving-keys/append-with-proofs_26_10.vkey bin/proving-keys/append-with-subtrees_26_10.key bin/proving-keys/append-with-subtrees_26_10.vkey bin/proving-keys/update_26_10.key bin/proving-keys/update_26_10.vkey bin/proving-keys/address-append_26_1.vkey bin/proving-keys/address-append_26_1.vkey bin/proving-keys/address-append_26_10.vkey bin/proving-keys/address-append_26_10.vkey
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/pnpm-lock.yaml
lockfileVersion: '6.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false dependencies: '@oclif/core': specifier: ^2.15 version: 2.15.0(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-autocomplete': specifier: ^2.3.8 version: 2.3.10(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-help': specifier: ^5.2.15 version: 5.2.20(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-not-found': specifier: ^2.4 version: 2.4.3(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-plugins': specifier: ^3.8 version: 3.9.4(@types/node@16.18.61)(typescript@4.9.5) '@solana/spl-token': specifier: ^0.3.7 version: 0.3.8(@solana/web3.js@1.87.6) '@solana/web3.js': specifier: ^1.76.0 version: 1.87.6 '@typescript-eslint/eslint-plugin': specifier: ^6.7.3 version: 6.10.0(@typescript-eslint/parser@6.10.0)(eslint@8.53.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^6.7.3 version: 6.10.0(eslint@8.53.0)(typescript@4.9.5) chai: specifier: ^4.3.7 version: 4.3.10 cli-progress: specifier: ^3.12.0 version: 3.12.0 cli-spinners: specifier: ^2.9.0 version: 2.9.1 dotenv: specifier: ^16.0.3 version: 16.3.1 ffjavascript: specifier: 0.2.60 version: 0.2.60 find-process: specifier: ^1.4.7 version: 1.4.7 fs: specifier: ^0.0.1-security version: 0.0.1-security node-fetch: specifier: ^3.3.1 version: 3.3.2 path: specifier: ^0.12.7 version: 0.12.7 snake-case: specifier: ^3.0.4 version: 3.0.4 tar: specifier: ^6.1.15 version: 6.2.0 ts-mocha: specifier: ^10.0.0 version: 10.0.0(mocha@10.2.0) tweetnacl: specifier: ^1.0.3 version: 1.0.3 zlib: specifier: ^1.0.5 version: 1.0.5 devDependencies: '@lightprotocol/programs': specifier: workspace:* version: link:../programs '@oclif/test': specifier: 2.3.33 version: 2.3.33(@types/node@16.18.61)(typescript@4.9.5) '@types/bn.js': specifier: ^5.1.1 version: 5.1.5 '@types/chai': specifier: ^4.3.5 version: 4.3.10 '@types/cli-progress': specifier: ^3.11.3 version: 3.11.5 '@types/mocha': specifier: ^10.0.1 version: 10.0.4 '@types/node': specifier: ^16.18.26 version: 16.18.61 '@types/tar': specifier: ^6.1.5 version: 6.1.9 axios: specifier: ^1.5.0 version: 1.6.1 eslint: specifier: ^8.50.0 version: 8.53.0 eslint-config-oclif: specifier: ^5 version: 5.0.0(eslint@8.53.0) eslint-config-oclif-typescript: specifier: ^2 version: 2.0.1(eslint@8.53.0)(typescript@4.9.5) mocha: specifier: ^10.2.0 version: 10.2.0 oclif: specifier: ^3.10.0 version: 3.17.2(@types/node@16.18.61)(typescript@4.9.5) prettier: specifier: ^2.6.2 version: 2.8.8 shx: specifier: ^0.3.3 version: 0.3.4 ts-node: specifier: ^10.9.1 version: 10.9.1(@types/node@16.18.61)(typescript@4.9.5) tslib: specifier: ^2.5.0 version: 2.6.2 typescript: specifier: ^4.9.5 version: 4.9.5 packages: /@aashutoshrathi/word-wrap@1.2.6: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} /@babel/code-frame@7.22.13: resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.20 chalk: 2.4.2 dev: true /@babel/helper-validator-identifier@7.22.20: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} dev: true /@babel/highlight@7.22.20: resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 dev: true /@babel/runtime@7.23.2: resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 /@coral-xyz/anchor@0.28.0: resolution: {integrity: sha512-kQ02Hv2ZqxtWP30WN1d4xxT4QqlOXYDxmEd3k/bbneqhV3X5QMO4LAtoUFs7otxyivOgoqam5Il5qx81FuI4vw==} engines: {node: '>=11'} dependencies: '@coral-xyz/borsh': 0.28.0(@solana/web3.js@1.87.6) '@solana/web3.js': 1.87.6 base64-js: 1.5.1 bn.js: 5.2.1 bs58: 4.0.1 buffer-layout: 1.2.2 camelcase: 6.3.0 cross-fetch: 3.1.8 crypto-hash: 1.3.0 eventemitter3: 4.0.7 js-sha256: 0.9.0 pako: 2.1.0 snake-case: 3.0.4 superstruct: 0.15.5 toml: 3.0.0 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate dev: false /@coral-xyz/borsh@0.26.0(@solana/web3.js@1.87.6): resolution: {integrity: sha512-uCZ0xus0CszQPHYfWAqKS5swS1UxvePu83oOF+TWpUkedsNlg6p2p4azxZNSSqwXb9uXMFgxhuMBX9r3Xoi0vQ==} engines: {node: '>=10'} peerDependencies: '@solana/web3.js': ^1.68.0 dependencies: '@solana/web3.js': 1.87.6 bn.js: 5.2.1 buffer-layout: 1.2.2 dev: false /@coral-xyz/borsh@0.28.0(@solana/web3.js@1.87.6): resolution: {integrity: sha512-/u1VTzw7XooK7rqeD7JLUSwOyRSesPUk0U37BV9zK0axJc1q0nRbKFGFLYCQ16OtdOJTTwGfGp11Lx9B45bRCQ==} engines: {node: '>=10'} peerDependencies: '@solana/web3.js': ^1.68.0 dependencies: '@solana/web3.js': 1.87.6 bn.js: 5.2.1 buffer-layout: 1.2.2 dev: false /@cspotcode/source-map-support@0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 /@eslint-community/eslint-utils@4.4.0(eslint@8.53.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.53.0 eslint-visitor-keys: 3.4.3 /@eslint-community/regexpp@4.10.0: resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} /@eslint/eslintrc@2.1.3: resolution: {integrity: sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) espree: 9.6.1 globals: 13.23.0 ignore: 5.2.4 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color /@eslint/js@8.53.0: resolution: {integrity: sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} /@gar/promisify@1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} dev: true /@humanwhocodes/config-array@0.11.13: resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 2.0.1 debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color /@humanwhocodes/module-importer@1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} /@humanwhocodes/object-schema@2.0.1: resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} /@isaacs/cliui@8.0.2: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} dependencies: string-width: 5.1.2 string-width-cjs: /string-width@4.2.3 strip-ansi: 7.1.0 strip-ansi-cjs: /strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: /wrap-ansi@7.0.0 dev: true /@isaacs/string-locale-compare@1.1.0: resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} dev: true /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 /@noble/curves@1.2.0: resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} dependencies: '@noble/hashes': 1.3.2 dev: false /@noble/hashes@1.3.2: resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} engines: {node: '>= 16'} dev: false /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 /@nodelib/fs.stat@2.0.5: resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} engines: {node: '>= 8'} /@nodelib/fs.walk@1.2.8: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 /@npmcli/arborist@4.3.1: resolution: {integrity: sha512-yMRgZVDpwWjplorzt9SFSaakWx6QIK248Nw4ZFgkrAy/GvJaFRaSZzE6nD7JBK5r8g/+PTxFq5Wj/sfciE7x+A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} hasBin: true dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/installed-package-contents': 1.0.7 '@npmcli/map-workspaces': 2.0.4 '@npmcli/metavuln-calculator': 2.0.0 '@npmcli/move-file': 1.1.2 '@npmcli/name-from-folder': 1.0.1 '@npmcli/node-gyp': 1.0.3 '@npmcli/package-json': 1.0.1 '@npmcli/run-script': 2.0.0 bin-links: 3.0.3 cacache: 15.3.0 common-ancestor-path: 1.0.1 json-parse-even-better-errors: 2.3.1 json-stringify-nice: 1.1.4 mkdirp: 1.0.4 mkdirp-infer-owner: 2.0.0 npm-install-checks: 4.0.0 npm-package-arg: 8.1.5 npm-pick-manifest: 6.1.1 npm-registry-fetch: 12.0.2 pacote: 12.0.3 parse-conflict-json: 2.0.2 proc-log: 1.0.0 promise-all-reject-late: 1.0.1 promise-call-limit: 1.0.2 read-package-json-fast: 2.0.3 readdir-scoped-modules: 1.1.0 rimraf: 3.0.2 semver: 7.5.4 ssri: 8.0.1 treeverse: 1.0.4 walk-up-path: 1.0.0 transitivePeerDependencies: - bluebird - supports-color dev: true /@npmcli/fs@1.1.1: resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} dependencies: '@gar/promisify': 1.1.3 semver: 7.5.4 dev: true /@npmcli/fs@2.1.2: resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@gar/promisify': 1.1.3 semver: 7.5.4 dev: true /@npmcli/fs@3.1.0: resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: semver: 7.5.4 dev: true /@npmcli/git@2.1.0: resolution: {integrity: sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==} dependencies: '@npmcli/promise-spawn': 1.3.2 lru-cache: 6.0.0 mkdirp: 1.0.4 npm-pick-manifest: 6.1.1 promise-inflight: 1.0.1 promise-retry: 2.0.1 semver: 7.5.4 which: 2.0.2 transitivePeerDependencies: - bluebird dev: true /@npmcli/git@4.1.0: resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@npmcli/promise-spawn': 6.0.2 lru-cache: 7.18.3 npm-pick-manifest: 8.0.2 proc-log: 3.0.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 semver: 7.5.4 which: 3.0.1 transitivePeerDependencies: - bluebird dev: true /@npmcli/installed-package-contents@1.0.7: resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} engines: {node: '>= 10'} hasBin: true dependencies: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 dev: true /@npmcli/installed-package-contents@2.0.2: resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: npm-bundled: 3.0.0 npm-normalize-package-bin: 3.0.1 dev: true /@npmcli/map-workspaces@2.0.4: resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/name-from-folder': 1.0.1 glob: 8.1.0 minimatch: 5.1.6 read-package-json-fast: 2.0.3 dev: true /@npmcli/metavuln-calculator@2.0.0: resolution: {integrity: sha512-VVW+JhWCKRwCTE+0xvD6p3uV4WpqocNYYtzyvenqL/u1Q3Xx6fGTJ+6UoIoii07fbuEO9U3IIyuGY0CYHDv1sg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} dependencies: cacache: 15.3.0 json-parse-even-better-errors: 2.3.1 pacote: 12.0.3 semver: 7.5.4 transitivePeerDependencies: - bluebird - supports-color dev: true /@npmcli/move-file@1.1.2: resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} engines: {node: '>=10'} deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 dev: true /@npmcli/move-file@2.0.1: resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 dev: true /@npmcli/name-from-folder@1.0.1: resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} dev: true /@npmcli/node-gyp@1.0.3: resolution: {integrity: sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==} dev: true /@npmcli/node-gyp@3.0.0: resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /@npmcli/package-json@1.0.1: resolution: {integrity: sha512-y6jnu76E9C23osz8gEMBayZmaZ69vFOIk8vR1FJL/wbEJ54+9aVG9rLTjQKSXfgYZEr50nw1txBBFfBZZe+bYg==} dependencies: json-parse-even-better-errors: 2.3.1 dev: true /@npmcli/promise-spawn@1.3.2: resolution: {integrity: sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==} dependencies: infer-owner: 1.0.4 dev: true /@npmcli/promise-spawn@6.0.2: resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: which: 3.0.1 dev: true /@npmcli/run-script@2.0.0: resolution: {integrity: sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==} dependencies: '@npmcli/node-gyp': 1.0.3 '@npmcli/promise-spawn': 1.3.2 node-gyp: 8.4.1 read-package-json-fast: 2.0.3 transitivePeerDependencies: - bluebird - supports-color dev: true /@npmcli/run-script@6.0.2: resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@npmcli/node-gyp': 3.0.0 '@npmcli/promise-spawn': 6.0.2 node-gyp: 9.4.1 read-package-json-fast: 3.0.2 which: 3.0.1 transitivePeerDependencies: - bluebird - supports-color dev: true /@oclif/core@2.15.0(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-fNEMG5DzJHhYmI3MgpByTvltBOMyFcnRIUMxbiz2ai8rhaYgaTHMG3Q38HcosfIvtw9nCjxpcQtC8MN8QtVCcA==} engines: {node: '>=14.0.0'} dependencies: '@types/cli-progress': 3.11.5 ansi-escapes: 4.3.2 ansi-styles: 4.3.0 cardinal: 2.1.1 chalk: 4.1.2 clean-stack: 3.0.1 cli-progress: 3.12.0 debug: 4.3.4(supports-color@8.1.1) ejs: 3.1.9 get-package-type: 0.1.0 globby: 11.1.0 hyperlinker: 1.0.0 indent-string: 4.0.0 is-wsl: 2.2.0 js-yaml: 3.14.1 natural-orderby: 2.0.3 object-treeify: 1.1.33 password-prompt: 1.1.3 slice-ansi: 4.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 supports-color: 8.1.1 supports-hyperlinks: 2.3.0 ts-node: 10.9.1(@types/node@16.18.61)(typescript@4.9.5) tslib: 2.6.2 widest-line: 3.1.0 wordwrap: 1.0.0 wrap-ansi: 7.0.0 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - typescript /@oclif/plugin-autocomplete@2.3.10(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-Ow1AR8WtjzlyCtiWWPgzMyT8SbcDJFr47009riLioHa+MHX2BCDtVn2DVnN/E6b9JlPV5ptQpjefoRSNWBesmg==} engines: {node: '>=12.0.0'} dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) chalk: 4.1.2 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - supports-color - typescript dev: false /@oclif/plugin-help@5.2.20(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-u+GXX/KAGL9S10LxAwNUaWdzbEBARJ92ogmM7g3gDVud2HioCmvWQCDohNRVZ9GYV9oKwZ/M8xwd6a1d95rEKQ==} engines: {node: '>=12.0.0'} dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - typescript /@oclif/plugin-not-found@2.4.3(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-nIyaR4y692frwh7wIHZ3fb+2L6XEecQwRDIb4zbEam0TvaVmBQWZoColQyWA84ljFBPZ8XWiQyTz+ixSwdRkqg==} engines: {node: '>=12.0.0'} dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) chalk: 4.1.2 fast-levenshtein: 3.0.0 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - typescript /@oclif/plugin-plugins@3.9.4(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-JtumjspRdzJgHk1S10wu68tdlqSnyYRmSgCsmsc6AEvU+Orb0DQfrAgJEO77rPKPNo5MfnVAj0WyCDTi0JT/vw==} engines: {node: '>=16'} dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) chalk: 4.1.2 debug: 4.3.4(supports-color@8.1.1) http-call: 5.3.0 load-json-file: 5.3.0 npm: 9.8.1 npm-run-path: 4.0.1 semver: 7.5.4 shelljs: 0.8.5 tslib: 2.6.2 validate-npm-package-name: 5.0.0 yarn: 1.22.19 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - supports-color - typescript dev: false /@oclif/plugin-warn-if-update-available@2.1.1(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-y7eSzT6R5bmTIJbiMMXgOlbBpcWXGlVhNeQJBLBCCy1+90Wbjyqf6uvY0i2WcO4sh/THTJ20qCW80j3XUlgDTA==} engines: {node: '>=12.0.0'} dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) chalk: 4.1.2 debug: 4.3.4(supports-color@8.1.1) http-call: 5.3.0 lodash.template: 4.5.0 semver: 7.5.4 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - supports-color - typescript dev: true /@oclif/test@2.3.33(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-AmhsxZRDDqJHTk1mDQ+Rl3mNUvb7GIXNcNdP7G7r5l3fRYBUsbzflSy3M760WZfAW4r85rnB+SNG5OBvmajWow==} engines: {node: '>=12.0.0'} dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) fancy-test: 2.0.42 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - supports-color - typescript dev: true /@octokit/auth-token@2.5.0: resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} dependencies: '@octokit/types': 6.41.0 dev: true /@octokit/core@3.6.0: resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} dependencies: '@octokit/auth-token': 2.5.0 '@octokit/graphql': 4.8.0 '@octokit/request': 5.6.3 '@octokit/request-error': 2.1.0 '@octokit/types': 6.41.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding dev: true /@octokit/endpoint@6.0.12: resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} dependencies: '@octokit/types': 6.41.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 dev: true /@octokit/graphql@4.8.0: resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} dependencies: '@octokit/request': 5.6.3 '@octokit/types': 6.41.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding dev: true /@octokit/openapi-types@12.11.0: resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} dev: true /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0): resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} peerDependencies: '@octokit/core': '>=2' dependencies: '@octokit/core': 3.6.0 '@octokit/types': 6.41.0 dev: true /@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0): resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} peerDependencies: '@octokit/core': '>=3' dependencies: '@octokit/core': 3.6.0 dev: true /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0): resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} peerDependencies: '@octokit/core': '>=3' dependencies: '@octokit/core': 3.6.0 '@octokit/types': 6.41.0 deprecation: 2.3.1 dev: true /@octokit/request-error@2.1.0: resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} dependencies: '@octokit/types': 6.41.0 deprecation: 2.3.1 once: 1.4.0 dev: true /@octokit/request@5.6.3: resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} dependencies: '@octokit/endpoint': 6.0.12 '@octokit/request-error': 2.1.0 '@octokit/types': 6.41.0 is-plain-object: 5.0.0 node-fetch: 2.7.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding dev: true /@octokit/rest@18.12.0: resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} dependencies: '@octokit/core': 3.6.0 '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0) '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0) '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0) transitivePeerDependencies: - encoding dev: true /@octokit/types@6.41.0: resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} dependencies: '@octokit/openapi-types': 12.11.0 dev: true /@pkgjs/parseargs@0.11.0: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} requiresBuild: true dev: true optional: true /@project-serum/anchor@0.26.0: resolution: {integrity: sha512-Nq+COIjE1135T7qfnOHEn7E0q39bQTgXLFk837/rgFe6Hkew9WML7eHsS+lSYD2p3OJaTiUOHTAq1lHy36oIqQ==} engines: {node: '>=11'} dependencies: '@coral-xyz/borsh': 0.26.0(@solana/web3.js@1.87.6) '@solana/web3.js': 1.87.6 base64-js: 1.5.1 bn.js: 5.2.1 bs58: 4.0.1 buffer-layout: 1.2.2 camelcase: 6.3.0 cross-fetch: 3.1.8 crypto-hash: 1.3.0 eventemitter3: 4.0.7 js-sha256: 0.9.0 pako: 2.1.0 snake-case: 3.0.4 superstruct: 0.15.5 toml: 3.0.0 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate dev: false /@sigstore/bundle@1.1.0: resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@sigstore/protobuf-specs': 0.2.1 dev: true /@sigstore/protobuf-specs@0.2.1: resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /@sigstore/sign@1.0.0: resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@sigstore/bundle': 1.1.0 '@sigstore/protobuf-specs': 0.2.1 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color dev: true /@sigstore/tuf@1.0.3: resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@sigstore/protobuf-specs': 0.2.1 tuf-js: 1.1.7 transitivePeerDependencies: - supports-color dev: true /@sindresorhus/is@4.6.0: resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} dev: true /@solana/buffer-layout-utils@0.2.0: resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} engines: {node: '>= 10'} dependencies: '@solana/buffer-layout': 4.0.1 '@solana/web3.js': 1.87.6 bigint-buffer: 1.1.5 bignumber.js: 9.1.2 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate dev: false /@solana/buffer-layout@4.0.1: resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} engines: {node: '>=5.10'} dependencies: buffer: 6.0.3 dev: false /@solana/spl-token@0.3.8(@solana/web3.js@1.87.6): resolution: {integrity: sha512-ogwGDcunP9Lkj+9CODOWMiVJEdRtqHAtX2rWF62KxnnSWtMZtV9rDhTrZFshiyJmxDnRL/1nKE1yJHg4jjs3gg==} engines: {node: '>=16'} peerDependencies: '@solana/web3.js': ^1.47.4 dependencies: '@solana/buffer-layout': 4.0.1 '@solana/buffer-layout-utils': 0.2.0 '@solana/web3.js': 1.87.6 buffer: 6.0.3 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate dev: false /@solana/web3.js@1.87.6: resolution: {integrity: sha512-LkqsEBgTZztFiccZZXnawWa8qNCATEqE97/d0vIwjTclmVlc8pBpD1DmjfVHtZ1HS5fZorFlVhXfpwnCNDZfyg==} dependencies: '@babel/runtime': 7.23.2 '@noble/curves': 1.2.0 '@noble/hashes': 1.3.2 '@solana/buffer-layout': 4.0.1 agentkeepalive: 4.5.0 bigint-buffer: 1.1.5 bn.js: 5.2.1 borsh: 0.7.0 bs58: 4.0.1 buffer: 6.0.3 fast-stable-stringify: 1.0.0 jayson: 4.1.0 node-fetch: 2.7.0 rpc-websockets: 7.6.2 superstruct: 0.14.2 transitivePeerDependencies: - bufferutil - encoding - utf-8-validate dev: false /@szmarczak/http-timer@4.0.6: resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} engines: {node: '>=10'} dependencies: defer-to-connect: 2.0.1 dev: true /@tootallnate/once@1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} dev: true /@tootallnate/once@2.0.0: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} dev: true /@tsconfig/node10@1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} /@tsconfig/node12@1.0.11: resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} /@tsconfig/node14@1.0.3: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} /@tsconfig/node16@1.0.4: resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} /@tufjs/canonical-json@1.0.0: resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /@tufjs/models@1.0.4: resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@tufjs/canonical-json': 1.0.0 minimatch: 9.0.3 dev: true /@types/bn.js@5.1.5: resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} dependencies: '@types/node': 16.18.61 dev: true /@types/cacheable-request@6.0.3: resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 '@types/node': 16.18.61 '@types/responselike': 1.0.3 dev: true /@types/chai@4.3.10: resolution: {integrity: sha512-of+ICnbqjmFCiixUnqRulbylyXQrPqIGf/B3Jax1wIF3DvSheysQxAWvqHhZiW3IQrycvokcLcFQlveGp+vyNg==} dev: true /@types/cli-progress@3.11.5: resolution: {integrity: sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==} dependencies: '@types/node': 16.18.61 /@types/connect@3.4.38: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: '@types/node': 16.18.61 dev: false /@types/expect@1.20.4: resolution: {integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==} dev: true /@types/http-cache-semantics@4.0.4: resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} dev: true /@types/json-schema@7.0.15: resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} requiresBuild: true /@types/keyv@3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: '@types/node': 16.18.61 dev: true /@types/lodash@4.14.201: resolution: {integrity: sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==} dev: true /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} dev: true /@types/mocha@10.0.4: resolution: {integrity: sha512-xKU7bUjiFTIttpWaIZ9qvgg+22O1nmbA+HRxdlR+u6TWsGfmFdXrheJoK4fFxrHNVIOBDvDNKZG+LYBpMHpX3w==} dev: true /@types/node@12.20.55: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: false /@types/node@15.14.9: resolution: {integrity: sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==} dev: true /@types/node@16.18.61: resolution: {integrity: sha512-k0N7BqGhJoJzdh6MuQg1V1ragJiXTh8VUBAZTWjJ9cUq23SG0F0xavOwZbhiP4J3y20xd6jxKx+xNUhkMAi76Q==} /@types/normalize-package-data@2.4.4: resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} dev: true /@types/responselike@1.0.3: resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} dependencies: '@types/node': 16.18.61 dev: true /@types/semver@7.5.5: resolution: {integrity: sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==} /@types/sinon@17.0.1: resolution: {integrity: sha512-Q2Go6TJetYn5Za1+RJA1Aik61Oa2FS8SuJ0juIqUuJ5dZR4wvhKfmSdIqWtQ3P6gljKWjW0/R7FZkA4oXVL6OA==} dependencies: '@types/sinonjs__fake-timers': 8.1.5 dev: true /@types/sinonjs__fake-timers@8.1.5: resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==} dev: true /@types/tar@6.1.9: resolution: {integrity: sha512-T3+O+OQd9cdGmOXuKQY9+B0ceZHRlGVPQ7M5QZqkaPyP/vWnxPXM2aCegq8GP/n1n9dBfq2EBUqCSKKjQAVOPA==} dependencies: '@types/node': 16.18.61 minipass: 4.2.8 dev: true /@types/vinyl@2.0.10: resolution: {integrity: sha512-DqN5BjCrmjAtZ1apqzcq2vk2PSW0m1nFfjIafBFkAyddmHxuw3ZAK3omLiSdpuu81+8h07i6U4DtaE38Xsf2xQ==} dependencies: '@types/expect': 1.20.4 '@types/node': 16.18.61 dev: true /@types/ws@7.4.7: resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} dependencies: '@types/node': 16.18.61 dev: false /@typescript-eslint/eslint-plugin@6.10.0(@typescript-eslint/parser@6.10.0)(eslint@8.53.0)(typescript@4.9.5): resolution: {integrity: sha512-uoLj4g2OTL8rfUQVx2AFO1hp/zja1wABJq77P6IclQs6I/m9GLrm7jCdgzZkvWdDCQf1uEvoa8s8CupsgWQgVg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 6.10.0 '@typescript-eslint/type-utils': 6.10.0(eslint@8.53.0)(typescript@4.9.5) '@typescript-eslint/utils': 6.10.0(eslint@8.53.0)(typescript@4.9.5) '@typescript-eslint/visitor-keys': 6.10.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.53.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 semver: 7.5.4 ts-api-utils: 1.0.3(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color /@typescript-eslint/parser@6.10.0(eslint@8.53.0)(typescript@4.9.5): resolution: {integrity: sha512-+sZwIj+s+io9ozSxIWbNB5873OSdfeBEH/FR0re14WLI6BaKuSOnnwCJ2foUiu8uXf4dRp1UqHP0vrZ1zXGrog==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: '@typescript-eslint/scope-manager': 6.10.0 '@typescript-eslint/types': 6.10.0 '@typescript-eslint/typescript-estree': 6.10.0(typescript@4.9.5) '@typescript-eslint/visitor-keys': 6.10.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.53.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color /@typescript-eslint/scope-manager@6.10.0: resolution: {integrity: sha512-TN/plV7dzqqC2iPNf1KrxozDgZs53Gfgg5ZHyw8erd6jd5Ta/JIEcdCheXFt9b1NYb93a1wmIIVW/2gLkombDg==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: '@typescript-eslint/types': 6.10.0 '@typescript-eslint/visitor-keys': 6.10.0 /@typescript-eslint/type-utils@6.10.0(eslint@8.53.0)(typescript@4.9.5): resolution: {integrity: sha512-wYpPs3hgTFblMYwbYWPT3eZtaDOjbLyIYuqpwuLBBqhLiuvJ+9sEp2gNRJEtR5N/c9G1uTtQQL5AhV0fEPJYcg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: '@typescript-eslint/typescript-estree': 6.10.0(typescript@4.9.5) '@typescript-eslint/utils': 6.10.0(eslint@8.53.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) eslint: 8.53.0 ts-api-utils: 1.0.3(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color /@typescript-eslint/types@6.10.0: resolution: {integrity: sha512-36Fq1PWh9dusgo3vH7qmQAj5/AZqARky1Wi6WpINxB6SkQdY5vQoT2/7rW7uBIsPDcvvGCLi4r10p0OJ7ITAeg==} engines: {node: ^16.0.0 || >=18.0.0} /@typescript-eslint/typescript-estree@6.10.0(typescript@4.9.5): resolution: {integrity: sha512-ek0Eyuy6P15LJVeghbWhSrBCj/vJpPXXR+EpaRZqou7achUWL8IdYnMSC5WHAeTWswYQuP2hAZgij/bC9fanBg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: '@typescript-eslint/types': 6.10.0 '@typescript-eslint/visitor-keys': 6.10.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 ts-api-utils: 1.0.3(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color /@typescript-eslint/utils@6.10.0(eslint@8.53.0)(typescript@4.9.5): resolution: {integrity: sha512-v+pJ1/RcVyRc0o4wAGux9x42RHmAjIGzPRo538Z8M1tVx6HOnoQBCX/NoadHQlZeC+QO2yr4nNSFWOoraZCAyg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.5 '@typescript-eslint/scope-manager': 6.10.0 '@typescript-eslint/types': 6.10.0 '@typescript-eslint/typescript-estree': 6.10.0(typescript@4.9.5) eslint: 8.53.0 semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript /@typescript-eslint/visitor-keys@6.10.0: resolution: {integrity: sha512-xMGluxQIEtOM7bqFCo+rCMh5fqI+ZxV5RUUOa29iVPz1OgCZrtc7rFnz5cLUazlkPKYqX+75iuDq7m0HQ48nCg==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: '@typescript-eslint/types': 6.10.0 eslint-visitor-keys: 3.4.3 /@ungap/structured-clone@1.2.0: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true dependencies: jsonparse: 1.3.1 through: 2.3.8 dev: false /abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} dev: true /abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} dependencies: event-target-shim: 5.0.1 dev: true /acorn-jsx@5.3.2(acorn@8.11.2): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.11.2 /acorn-walk@8.3.0: resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==} engines: {node: '>=0.4.0'} /acorn@8.11.2: resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==} engines: {node: '>=0.4.0'} hasBin: true /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true /agentkeepalive@4.5.0: resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} engines: {node: '>= 8.0.0'} dependencies: humanize-ms: 1.2.1 /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 dev: true /ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 /ansi-colors@4.1.1: resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} engines: {node: '>=6'} /ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} dependencies: type-fest: 0.21.3 /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} dev: true /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} dependencies: color-convert: 1.9.3 dev: true /ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} dependencies: color-convert: 2.0.1 /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} dev: true /ansicolors@0.3.2: resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==} /anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 /aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} dev: true /are-we-there-yet@2.0.0: resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} engines: {node: '>=10'} dependencies: delegates: 1.0.0 readable-stream: 3.6.2 dev: true /are-we-there-yet@3.0.1: resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: delegates: 1.0.0 readable-stream: 3.6.2 dev: true /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} /array-buffer-byte-length@1.0.0: resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: call-bind: 1.0.5 is-array-buffer: 3.0.2 dev: true /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} dev: true /array-includes@3.1.7: resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 get-intrinsic: 1.2.2 is-string: 1.0.7 dev: true /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} /array.prototype.findlastindex@1.2.3: resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 get-intrinsic: 1.2.2 dev: true /array.prototype.flat@1.3.2: resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 dev: true /array.prototype.flatmap@1.3.2: resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 es-shim-unscopables: 1.0.2 dev: true /arraybuffer.prototype.slice@1.0.2: resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 get-intrinsic: 1.2.2 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 dev: true /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: false /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} dev: true /asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} dev: true /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: false /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} /async-retry@1.3.3: resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} dependencies: retry: 0.13.1 dev: true /async@3.2.5: resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: true /available-typed-arrays@1.0.5: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} dev: true /aws-sdk@2.1494.0: resolution: {integrity: sha512-i7wIEBUzhIOuCeE8moB4rXUr7y+5rviiGJ6hsdQJdqwDxzStkmV7+cvKllNVx3+kuv0jdNbkVZ+wHBANi91Wxw==} engines: {node: '>= 10.0.0'} dependencies: buffer: 4.9.2 events: 1.1.1 ieee754: 1.1.13 jmespath: 0.16.0 querystring: 0.2.0 sax: 1.2.1 url: 0.10.3 util: 0.12.5 uuid: 8.0.0 xml2js: 0.5.0 dev: true /axios@1.6.1: resolution: {integrity: sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==} dependencies: follow-redirects: 1.15.3 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug dev: true /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} /base-x@3.0.9: resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} dependencies: safe-buffer: 5.2.1 dev: false /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} /before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} dev: true /bigint-buffer@1.1.5: resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==} engines: {node: '>= 10.0.0'} requiresBuild: true dependencies: bindings: 1.5.0 dev: false /bignumber.js@9.1.2: resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} dev: false /bin-links@3.0.3: resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: cmd-shim: 5.0.0 mkdirp-infer-owner: 2.0.0 npm-normalize-package-bin: 2.0.0 read-cmd-shim: 3.0.1 rimraf: 3.0.2 write-file-atomic: 4.0.2 dev: true /binary-extensions@2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} /binaryextensions@4.19.0: resolution: {integrity: sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==} engines: {node: '>=0.8'} dev: true /bindings@1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} dependencies: file-uri-to-path: 1.0.0 dev: false /bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 dev: true /bn.js@5.2.1: resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: false /borsh@0.7.0: resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} dependencies: bn.js: 5.2.1 bs58: 4.0.1 text-encoding-utf-8: 1.0.2 dev: false /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 /brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} dependencies: fill-range: 7.0.1 /browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} /bs58@4.0.1: resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} dependencies: base-x: 3.0.9 dev: false /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} dev: false /buffer-layout@1.2.2: resolution: {integrity: sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA==} engines: {node: '>=4.5'} dev: false /buffer@4.9.2: resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} dependencies: base64-js: 1.5.1 ieee754: 1.1.13 isarray: 1.0.0 dev: true /buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 dev: true /buffer@6.0.3: resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 /bufferutil@4.0.8: resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} engines: {node: '>=6.14.2'} requiresBuild: true dependencies: node-gyp-build: 4.6.1 dev: false /builtin-modules@3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} dev: true /builtins@1.0.3: resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} dev: true /builtins@5.0.1: resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: semver: 7.5.4 /cacache@15.3.0: resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} engines: {node: '>= 10'} dependencies: '@npmcli/fs': 1.1.1 '@npmcli/move-file': 1.1.2 chownr: 2.0.0 fs-minipass: 2.1.0 glob: 7.2.3 infer-owner: 1.0.4 lru-cache: 6.0.0 minipass: 3.3.6 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 mkdirp: 1.0.4 p-map: 4.0.0 promise-inflight: 1.0.1 rimraf: 3.0.2 ssri: 8.0.1 tar: 6.2.0 unique-filename: 1.1.1 transitivePeerDependencies: - bluebird dev: true /cacache@16.1.3: resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/fs': 2.1.2 '@npmcli/move-file': 2.0.1 chownr: 2.0.0 fs-minipass: 2.1.0 glob: 8.1.0 infer-owner: 1.0.4 lru-cache: 7.18.3 minipass: 3.3.6 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 mkdirp: 1.0.4 p-map: 4.0.0 promise-inflight: 1.0.1 rimraf: 3.0.2 ssri: 9.0.1 tar: 6.2.0 unique-filename: 2.0.1 transitivePeerDependencies: - bluebird dev: true /cacache@17.1.4: resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@npmcli/fs': 3.1.0 fs-minipass: 3.0.3 glob: 10.3.10 lru-cache: 7.18.3 minipass: 7.0.4 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 p-map: 4.0.0 ssri: 10.0.5 tar: 6.2.0 unique-filename: 3.0.0 dev: true /cacheable-lookup@5.0.4: resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} engines: {node: '>=10.6.0'} dev: true /cacheable-request@7.0.4: resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} engines: {node: '>=8'} dependencies: clone-response: 1.0.3 get-stream: 5.2.0 http-cache-semantics: 4.1.1 keyv: 4.5.4 lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 dev: true /call-bind@1.0.5: resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: function-bind: 1.1.2 get-intrinsic: 1.2.2 set-function-length: 1.1.1 dev: true /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} /cardinal@2.1.1: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true dependencies: ansicolors: 0.3.2 redeyed: 2.1.1 /chai@4.3.10: resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==} engines: {node: '>=4'} dependencies: assertion-error: 1.1.0 check-error: 1.0.3 deep-eql: 4.1.3 get-func-name: 2.0.2 loupe: 2.3.7 pathval: 1.1.1 type-detect: 4.0.8 dev: false /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 dev: true /chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 /chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true /check-error@1.0.3: resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} dependencies: get-func-name: 2.0.2 dev: false /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} dependencies: anymatch: 3.1.3 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 is-glob: 4.0.3 normalize-path: 3.0.0 readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.3 /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} /ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} dev: true /clean-regexp@1.0.0: resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} engines: {node: '>=4'} dependencies: escape-string-regexp: 1.0.5 dev: true /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} dev: true /clean-stack@3.0.1: resolution: {integrity: sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==} engines: {node: '>=10'} dependencies: escape-string-regexp: 4.0.0 /cli-cursor@3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 dev: true /cli-progress@3.12.0: resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==} engines: {node: '>=4'} dependencies: string-width: 4.2.3 /cli-spinners@2.9.1: resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==} engines: {node: '>=6'} /cli-table@0.3.11: resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==} engines: {node: '>= 0.2.0'} dependencies: colors: 1.0.3 dev: true /cli-width@3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} dev: true /cliui@7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 /cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 dev: true /clone-buffer@1.0.0: resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} engines: {node: '>= 0.10'} dev: true /clone-response@1.0.3: resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} dependencies: mimic-response: 1.0.1 dev: true /clone-stats@1.0.0: resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} dev: true /clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} dev: true /clone@2.1.2: resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} engines: {node: '>=0.8'} dev: true /cloneable-readable@1.1.3: resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==} dependencies: inherits: 2.0.4 process-nextick-args: 2.0.1 readable-stream: 2.3.8 dev: true /cmd-shim@5.0.0: resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: mkdirp-infer-owner: 2.0.0 dev: true /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 dev: true /color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 /color-name@1.1.3: resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} dev: true /color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} /color-support@1.1.3: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true dev: true /colors@1.0.3: resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} dev: true /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 dev: true /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: false /commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} dev: false /commander@7.1.0: resolution: {integrity: sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==} engines: {node: '>= 10'} dev: true /common-ancestor-path@1.0.1: resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} dev: true /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} dev: true /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} /concurrently@7.6.0: resolution: {integrity: sha512-BKtRgvcJGeZ4XttiDiNcFiRlxoAeZOseqUvyYRUp/Vtd+9p1ULmeoSqGsDA+2ivdeDFpqrJvGvmI+StKfKl5hw==} engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0} hasBin: true dependencies: chalk: 4.1.2 date-fns: 2.30.0 lodash: 4.17.21 rxjs: 7.8.1 shell-quote: 1.8.1 spawn-command: 0.0.2-1 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 dev: true /confusing-browser-globals@1.0.11: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} dev: true /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true /content-type@1.0.5: resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} engines: {node: '>= 0.6'} /core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} /cross-fetch@3.1.8: resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} dependencies: node-fetch: 2.7.0 transitivePeerDependencies: - encoding dev: false /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 /crypto-hash@1.3.0: resolution: {integrity: sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg==} engines: {node: '>=8'} dev: false /dargs@7.0.0: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} engines: {node: '>=8'} dev: true /data-uri-to-buffer@4.0.1: resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} engines: {node: '>= 12'} dev: false /date-fns@2.30.0: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} dependencies: '@babel/runtime': 7.23.2 dev: true /dateformat@4.6.3: resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} dev: true /debug@3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: supports-color: '*' peerDependenciesMeta: supports-color: optional: true dependencies: ms: 2.1.3 dev: true /debug@4.3.4(supports-color@8.1.1): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' peerDependenciesMeta: supports-color: optional: true dependencies: ms: 2.1.2 supports-color: 8.1.1 /debuglog@1.0.1: resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dev: true /decamelize@4.0.0: resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} engines: {node: '>=10'} /decompress-response@6.0.0: resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} engines: {node: '>=10'} dependencies: mimic-response: 3.1.0 dev: true /deep-eql@4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} engines: {node: '>=6'} dependencies: type-detect: 4.0.8 dev: false /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} dev: true /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 dev: true /defer-to-connect@2.0.1: resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} engines: {node: '>=10'} dev: true /define-data-property@1.1.1: resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 gopd: 1.0.1 has-property-descriptors: 1.0.1 dev: true /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.1 has-property-descriptors: 1.0.1 object-keys: 1.1.1 dev: true /delay@5.0.0: resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} engines: {node: '>=10'} dev: false /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} dev: true /delegates@1.0.0: resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} dev: true /deprecation@2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: true /dezalgo@1.0.4: resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} dependencies: asap: 2.0.6 wrappy: 1.0.2 dev: true /diff@3.5.0: resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==} engines: {node: '>=0.3.1'} dev: false /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} /diff@5.0.0: resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} engines: {node: '>=0.3.1'} /diff@5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} dev: true /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} dependencies: path-type: 4.0.0 /doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 dev: true /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 /dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 tslib: 2.6.2 dev: false /dotenv@16.3.1: resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} engines: {node: '>=12'} dev: false /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} dev: true /ejs@3.1.9: resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.7 /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} /emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} dev: true /encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} requiresBuild: true dependencies: iconv-lite: 0.6.3 dev: true optional: true /end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 dev: true /enhanced-resolve@5.15.0: resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 dev: true /env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} dev: true /err-code@2.0.3: resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} dev: true /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 /error@10.4.0: resolution: {integrity: sha512-YxIFEJuhgcICugOUvRx5th0UM+ActZ9sjY0QJmeVwsQdvosZ7kYzc9QqS0Da3R5iUmgU5meGIxh0xBeZpMVeLw==} dev: true /es-abstract@1.22.3: resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 call-bind: 1.0.5 es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 hasown: 2.0.0 internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 object-inspect: 1.13.1 object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.5.1 safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 string.prototype.trim: 1.2.8 string.prototype.trimend: 1.0.7 string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 which-typed-array: 1.1.13 dev: true /es-set-tostringtag@2.0.2: resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 hasown: 2.0.0 dev: true /es-shim-unscopables@1.0.2: resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 dev: true /es6-promise@4.2.8: resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} dev: false /es6-promisify@5.0.0: resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==} dependencies: es6-promise: 4.2.8 dev: false /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} dev: true /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} /eslint-config-oclif-typescript@2.0.1(eslint@8.53.0)(typescript@4.9.5): resolution: {integrity: sha512-Z0U0KVNXGcTzYdSoDsrHulkspS1ZW/NrNgv/IAvpd7F2ZdrLUEmRlJn7Kwnk8CdUufJb/GsW+qVKIG/fPhwKpg==} engines: {node: '>=18.0.0'} dependencies: '@typescript-eslint/eslint-plugin': 6.10.0(@typescript-eslint/parser@6.10.0)(eslint@8.53.0)(typescript@4.9.5) '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@4.9.5) eslint-config-xo-space: 0.34.0(eslint@8.53.0) eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.10.0)(eslint-plugin-import@2.29.0)(eslint@8.53.0) eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) eslint-plugin-mocha: 10.2.0(eslint@8.53.0) eslint-plugin-node: 11.1.0(eslint@8.53.0) transitivePeerDependencies: - eslint - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - typescript dev: true /eslint-config-oclif@5.0.0(eslint@8.53.0): resolution: {integrity: sha512-yPxtUzU6eFL+WoW8DbRf7uoHxgiu0B/uY7k7rgHwFHij66WoI3qhBNhKI5R5FS5JeTuBOXKrNqQVDsSH0D/JvA==} engines: {node: '>=18.0.0'} dependencies: eslint-config-xo-space: 0.34.0(eslint@8.53.0) eslint-plugin-mocha: 10.2.0(eslint@8.53.0) eslint-plugin-node: 11.1.0(eslint@8.53.0) eslint-plugin-unicorn: 48.0.1(eslint@8.53.0) transitivePeerDependencies: - eslint dev: true /eslint-config-xo-space@0.34.0(eslint@8.53.0): resolution: {integrity: sha512-8ZI0Ta/loUIL1Wk/ouWvk2ZWN8X6Un49MqnBf2b6uMjC9c5Pcfr1OivEOrvd3niD6BKgMNH2Q9nG0CcCWC+iVA==} engines: {node: '>=12'} peerDependencies: eslint: '>=8.27.0' dependencies: eslint: 8.53.0 eslint-config-xo: 0.43.1(eslint@8.53.0) dev: true /eslint-config-xo@0.43.1(eslint@8.53.0): resolution: {integrity: sha512-azv1L2PysRA0NkZOgbndUpN+581L7wPqkgJOgxxw3hxwXAbJgD6Hqb/SjHRiACifXt/AvxCzE/jIKFAlI7XjvQ==} engines: {node: '>=12'} peerDependencies: eslint: '>=8.27.0' dependencies: confusing-browser-globals: 1.0.11 eslint: 8.53.0 dev: true /eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: debug: 3.2.7 is-core-module: 2.13.1 resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.10.0)(eslint-plugin-import@2.29.0)(eslint@8.53.0): resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' dependencies: debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.15.0 eslint: 8.53.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) fast-glob: 3.3.2 get-tsconfig: 4.7.2 is-core-module: 2.13.1 is-glob: 4.0.3 transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color dev: true /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' eslint: '*' eslint-import-resolver-node: '*' eslint-import-resolver-typescript: '*' eslint-import-resolver-webpack: '*' peerDependenciesMeta: '@typescript-eslint/parser': optional: true eslint: optional: true eslint-import-resolver-node: optional: true eslint-import-resolver-typescript: optional: true eslint-import-resolver-webpack: optional: true dependencies: '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@4.9.5) debug: 3.2.7 eslint: 8.53.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.10.0)(eslint-plugin-import@2.29.0)(eslint@8.53.0) transitivePeerDependencies: - supports-color dev: true /eslint-plugin-es@3.0.1(eslint@8.53.0): resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: eslint: 8.53.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0): resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: '@typescript-eslint/parser': optional: true dependencies: '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@4.9.5) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 eslint: 8.53.0 eslint-import-resolver-node: 0.3.9 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) hasown: 2.0.0 is-core-module: 2.13.1 is-glob: 4.0.3 minimatch: 3.1.2 object.fromentries: 2.0.7 object.groupby: 1.0.1 object.values: 1.1.7 semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: true /eslint-plugin-mocha@10.2.0(eslint@8.53.0): resolution: {integrity: sha512-ZhdxzSZnd1P9LqDPF0DBcFLpRIGdh1zkF2JHnQklKQOvrQtT73kdP5K9V2mzvbLR+cCAO9OI48NXK/Ax9/ciCQ==} engines: {node: '>=14.0.0'} peerDependencies: eslint: '>=7.0.0' dependencies: eslint: 8.53.0 eslint-utils: 3.0.0(eslint@8.53.0) rambda: 7.5.0 dev: true /eslint-plugin-node@11.1.0(eslint@8.53.0): resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=5.16.0' dependencies: eslint: 8.53.0 eslint-plugin-es: 3.0.1(eslint@8.53.0) eslint-utils: 2.1.0 ignore: 5.2.4 minimatch: 3.1.2 resolve: 1.22.8 semver: 6.3.1 dev: true /eslint-plugin-unicorn@48.0.1(eslint@8.53.0): resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==} engines: {node: '>=16'} peerDependencies: eslint: '>=8.44.0' dependencies: '@babel/helper-validator-identifier': 7.22.20 '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) ci-info: 3.9.0 clean-regexp: 1.0.0 eslint: 8.53.0 esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 jsesc: 3.0.2 lodash: 4.17.21 pluralize: 8.0.0 read-pkg-up: 7.0.1 regexp-tree: 0.1.27 regjsparser: 0.10.0 semver: 7.5.4 strip-indent: 3.0.0 dev: true /eslint-scope@7.2.2: resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 dev: true /eslint-utils@3.0.0(eslint@8.53.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: eslint: 8.53.0 eslint-visitor-keys: 2.1.0 dev: true /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} dev: true /eslint-visitor-keys@2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} dev: true /eslint-visitor-keys@3.4.3: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} /eslint@8.53.0: resolution: {integrity: sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) '@eslint-community/regexpp': 4.10.0 '@eslint/eslintrc': 2.1.3 '@eslint/js': 8.53.0 '@humanwhocodes/config-array': 0.11.13 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 globals: 13.23.0 graphemer: 1.4.0 ignore: 5.2.4 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.3 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color /espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.11.2 acorn-jsx: 5.3.2(acorn@8.11.2) eslint-visitor-keys: 3.4.3 /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} /event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} dev: true /eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} /events@1.1.1: resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} engines: {node: '>=0.4.x'} dev: true /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} dev: true /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 dev: true /exponential-backoff@3.1.1: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} dev: true /external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 dev: true /eyes@0.1.8: resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} engines: {node: '> 0.1.90'} dev: false /fancy-test@2.0.42: resolution: {integrity: sha512-TX8YTALYAmExny+f+G24MFxWry3Pk09+9uykwRjfwjibRxJ9ZjJzrnHYVBZK46XQdyli7d+rQc5U/KK7V6uLsw==} engines: {node: '>=12.0.0'} dependencies: '@types/chai': 4.3.10 '@types/lodash': 4.14.201 '@types/node': 16.18.61 '@types/sinon': 17.0.1 lodash: 4.17.21 mock-stdin: 1.0.0 nock: 13.3.8 stdout-stderr: 0.1.13 transitivePeerDependencies: - supports-color dev: true /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} /fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} /fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} /fast-levenshtein@3.0.0: resolution: {integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==} dependencies: fastest-levenshtein: 1.0.16 /fast-stable-stringify@1.0.0: resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==} dev: false /fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} /fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: reusify: 1.0.4 /fetch-blob@3.2.0: resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} engines: {node: ^12.20 || >= 14.13} dependencies: node-domexception: 1.0.0 web-streams-polyfill: 3.2.1 dev: false /ffjavascript@0.2.60: resolution: {integrity: sha512-T/9bnEL5xAZRDbQoEMf+pM9nrhK+C3JyZNmqiWub26EQorW7Jt+jR54gpqDhceA4Nj0YctPQwYnl8xa52/A26A==} dependencies: wasmbuilder: 0.0.16 wasmcurves: 0.2.2 web-worker: 1.2.0 dev: false /figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 dev: true /file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.2.0 /file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} dev: false /filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: minimatch: 5.1.6 /fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 /find-process@1.4.7: resolution: {integrity: sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==} hasBin: true dependencies: chalk: 4.1.2 commander: 5.1.0 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 dev: true /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 /find-yarn-workspace-root2@1.2.16: resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} dependencies: micromatch: 4.0.5 pkg-dir: 4.2.0 dev: true /find-yarn-workspace-root@2.0.0: resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} dependencies: micromatch: 4.0.5 dev: true /first-chunk-stream@2.0.0: resolution: {integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==} engines: {node: '>=0.10.0'} dependencies: readable-stream: 2.3.8 dev: true /flat-cache@3.2.0: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 /flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true /flatted@3.2.9: resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} /follow-redirects@1.15.3: resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} engines: {node: '>=4.0'} peerDependencies: debug: '*' peerDependenciesMeta: debug: optional: true dev: true /for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 dev: true /foreground-child@3.1.1: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 dev: true /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 dev: true /formdata-polyfill@4.0.10: resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} engines: {node: '>=12.20.0'} dependencies: fetch-blob: 3.2.0 dev: false /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 dev: true /fs-minipass@2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 /fs-minipass@3.0.3: resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minipass: 7.0.4 dev: true /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} /fs@0.0.1-security: resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} dev: false /fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true optional: true /function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} /function.prototype.name@1.1.6: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true /functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true /gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} engines: {node: '>=10'} dependencies: aproba: 2.0.0 color-support: 1.1.3 console-control-strings: 1.1.0 has-unicode: 2.0.1 object-assign: 4.1.1 signal-exit: 3.0.7 string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 dev: true /gauge@4.0.4: resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: aproba: 2.0.0 color-support: 1.1.3 console-control-strings: 1.1.0 has-unicode: 2.0.1 signal-exit: 3.0.7 string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 dev: true /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} /get-func-name@2.0.2: resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} dev: false /get-intrinsic@1.2.2: resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} dependencies: function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 hasown: 2.0.0 dev: true /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} /get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} dependencies: pump: 3.0.0 dev: true /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} dev: true /get-symbol-description@1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 dev: true /get-tsconfig@4.7.2: resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} dependencies: resolve-pkg-maps: 1.0.0 dev: true /github-slugger@1.5.0: resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} dev: true /github-username@6.0.0: resolution: {integrity: sha512-7TTrRjxblSI5l6adk9zd+cV5d6i1OrJSo3Vr9xdGqFLBQo0mz5P9eIfKCDJ7eekVGGFLbce0qbPSnktXV2BjDQ==} engines: {node: '>=10'} dependencies: '@octokit/rest': 18.12.0 transitivePeerDependencies: - encoding dev: true /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 /glob-parent@6.0.2: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 /glob@10.3.10: resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 minimatch: 9.0.3 minipass: 7.0.4 path-scurry: 1.10.1 dev: true /glob@7.2.0: resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 /glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} engines: {node: '>=12'} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 dev: true /globals@13.23.0: resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 /globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 dev: true /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.2 dev: true /got@11.8.6: resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} engines: {node: '>=10.19.0'} dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 '@types/cacheable-request': 6.0.3 '@types/responselike': 1.0.3 cacheable-lookup: 5.0.4 cacheable-request: 7.0.4 decompress-response: 6.0.0 http2-wrapper: 1.0.3 lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 dev: true /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} /graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} /grouped-queue@2.0.0: resolution: {integrity: sha512-/PiFUa7WIsl48dUeCvhIHnwNmAAzlI/eHoJl0vu3nsFA366JleY7Ff8EVTplZu5kO0MIdZjKTTnzItL61ahbnw==} engines: {node: '>=8.0.0'} dev: true /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} dev: true /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} /has-property-descriptors@1.0.1: resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: get-intrinsic: 1.2.2 dev: true /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} engines: {node: '>= 0.4'} dev: true /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} dev: true /has-tostringtag@1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /has-unicode@2.0.1: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: true /hasown@2.0.0: resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true /hosted-git-info@4.1.0: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 dev: true /hosted-git-info@6.1.1: resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: lru-cache: 7.18.3 dev: true /http-cache-semantics@4.1.1: resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} dev: true /http-call@5.3.0: resolution: {integrity: sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w==} engines: {node: '>=8.0.0'} dependencies: content-type: 1.0.5 debug: 4.3.4(supports-color@8.1.1) is-retry-allowed: 1.2.0 is-stream: 2.0.1 parse-json: 4.0.0 tunnel-agent: 0.6.0 transitivePeerDependencies: - supports-color /http-proxy-agent@4.0.1: resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} engines: {node: '>= 6'} dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true /http-proxy-agent@5.0.0: resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} engines: {node: '>= 6'} dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true /http2-wrapper@1.0.3: resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} engines: {node: '>=10.19.0'} dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 dev: true /https-proxy-agent@5.0.1: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} dev: true /humanize-ms@1.2.1: resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} dependencies: ms: 2.1.3 /hyperlinker@1.0.0: resolution: {integrity: sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==} engines: {node: '>=4'} /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 dev: true /iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} requiresBuild: true dependencies: safer-buffer: 2.1.2 dev: true optional: true /ieee754@1.1.13: resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==} dev: true /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} /ignore-walk@4.0.1: resolution: {integrity: sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==} engines: {node: '>=10'} dependencies: minimatch: 3.1.2 dev: true /ignore-walk@6.0.3: resolution: {integrity: sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minimatch: 9.0.3 dev: true /ignore@5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} /infer-owner@1.0.4: resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} dev: true /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 /inherits@2.0.3: resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} dev: false /inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} /inquirer@8.2.6: resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 figures: 3.2.0 lodash: 4.17.21 mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 rxjs: 7.8.1 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 dev: true /internal-slot@1.0.6: resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 hasown: 2.0.0 side-channel: 1.0.4 dev: true /interpret@1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} /ip@2.0.0: resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} dev: true /is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 dev: true /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} dependencies: binary-extensions: 2.2.0 /is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true /is-builtin-module@3.2.1: resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 dev: true /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} dev: true /is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: hasown: 2.0.0 /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} hasBin: true /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} /is-generator-function@1.0.10: resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} dev: true /is-lambda@1.0.1: resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} dev: true /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} dev: true /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} /is-path-inside@3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} /is-plain-obj@2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} /is-plain-object@5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} engines: {node: '>=0.10.0'} dev: true /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true /is-retry-allowed@1.2.0: resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} engines: {node: '>=0.10.0'} /is-scoped@2.1.0: resolution: {integrity: sha512-Cv4OpPTHAK9kHYzkzCrof3VJh7H/PrG2MBUMvvJebaaUMbqhm0YAtXnvh0I3Hnj2tMZWwrRROWLSgfJrKqWmlQ==} engines: {node: '>=8'} dependencies: scoped-regex: 2.1.0 dev: true /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: call-bind: 1.0.5 dev: true /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} /is-string@1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /is-typed-array@1.1.12: resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.13 dev: true /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} /is-utf8@0.2.1: resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} dev: true /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.5 dev: true /is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} dependencies: is-docker: 2.2.1 /isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} dev: true /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true /isbinaryfile@4.0.10: resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} engines: {node: '>= 8.0.0'} dev: true /isbinaryfile@5.0.0: resolution: {integrity: sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==} engines: {node: '>= 14.0.0'} dev: true /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} /isomorphic-ws@4.0.1(ws@7.5.9): resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} peerDependencies: ws: '*' dependencies: ws: 7.5.9 dev: false /jackspeak@2.3.6: resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 dev: true /jake@10.8.7: resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} engines: {node: '>=10'} hasBin: true dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 /jayson@4.1.0: resolution: {integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==} engines: {node: '>=8'} hasBin: true dependencies: '@types/connect': 3.4.38 '@types/node': 12.20.55 '@types/ws': 7.4.7 JSONStream: 1.3.5 commander: 2.20.3 delay: 5.0.0 es6-promisify: 5.0.0 eyes: 0.1.8 isomorphic-ws: 4.0.1(ws@7.5.9) json-stringify-safe: 5.0.1 uuid: 8.3.2 ws: 7.5.9 transitivePeerDependencies: - bufferutil - utf-8-validate dev: false /jmespath@0.16.0: resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} engines: {node: '>= 0.6.0'} dev: true /js-sha256@0.9.0: resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==} dev: false /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true /js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 /jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true dev: true /jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} hasBin: true dev: true /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} /json-parse-better-errors@1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true /json-parse-even-better-errors@3.0.0: resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} /json-stringify-nice@1.1.4: resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} dev: true /json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} /json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true requiresBuild: true dependencies: minimist: 1.2.8 /jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 dev: true /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} /just-diff-apply@5.5.0: resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} dev: true /just-diff@5.2.0: resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} dev: true /keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true /load-json-file@5.3.0: resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 4.0.1 strip-bom: 3.0.0 type-fest: 0.3.1 dev: false /load-yaml-file@0.2.0: resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 dev: true /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} dependencies: p-locate: 4.1.0 dev: true /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} dependencies: p-locate: 5.0.0 /lodash._reinterpolate@3.0.0: resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} dev: true /lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} /lodash.template@4.5.0: resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} dependencies: lodash._reinterpolate: 3.0.0 lodash.templatesettings: 4.2.0 dev: true /lodash.templatesettings@4.2.0: resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} dependencies: lodash._reinterpolate: 3.0.0 dev: true /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} dev: true /log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 /loupe@2.3.7: resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} dependencies: get-func-name: 2.0.2 dev: false /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: tslib: 2.6.2 dev: false /lowercase-keys@2.0.0: resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} engines: {node: '>=8'} dev: true /lru-cache@10.0.2: resolution: {integrity: sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==} engines: {node: 14 || >=16.14} dependencies: semver: 7.5.4 dev: true /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} dependencies: yallist: 4.0.0 /lru-cache@7.18.3: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} dev: true /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} /make-fetch-happen@10.2.1: resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: agentkeepalive: 4.5.0 cacache: 16.1.3 http-cache-semantics: 4.1.1 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 lru-cache: 7.18.3 minipass: 3.3.6 minipass-collect: 1.0.2 minipass-fetch: 2.1.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 socks-proxy-agent: 7.0.0 ssri: 9.0.1 transitivePeerDependencies: - bluebird - supports-color dev: true /make-fetch-happen@11.1.1: resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: agentkeepalive: 4.5.0 cacache: 17.1.4 http-cache-semantics: 4.1.1 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 lru-cache: 7.18.3 minipass: 5.0.0 minipass-fetch: 3.0.4 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 socks-proxy-agent: 7.0.0 ssri: 10.0.5 transitivePeerDependencies: - supports-color dev: true /make-fetch-happen@9.1.0: resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==} engines: {node: '>= 10'} dependencies: agentkeepalive: 4.5.0 cacache: 15.3.0 http-cache-semantics: 4.1.1 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 lru-cache: 6.0.0 minipass: 3.3.6 minipass-collect: 1.0.2 minipass-fetch: 1.4.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 socks-proxy-agent: 6.2.1 ssri: 8.0.1 transitivePeerDependencies: - bluebird - supports-color dev: true /mem-fs-editor@9.7.0(mem-fs@2.3.0): resolution: {integrity: sha512-ReB3YD24GNykmu4WeUL/FDIQtkoyGB6zfJv60yfCo3QjKeimNcTqv2FT83bP0ccs6uu+sm5zyoBlspAzigmsdg==} engines: {node: '>=12.10.0'} peerDependencies: mem-fs: ^2.1.0 peerDependenciesMeta: mem-fs: optional: true dependencies: binaryextensions: 4.19.0 commondir: 1.0.1 deep-extend: 0.6.0 ejs: 3.1.9 globby: 11.1.0 isbinaryfile: 5.0.0 mem-fs: 2.3.0 minimatch: 7.4.6 multimatch: 5.0.0 normalize-path: 3.0.0 textextensions: 5.16.0 dev: true /mem-fs@2.3.0: resolution: {integrity: sha512-GftCCBs6EN8sz3BoWO1bCj8t7YBtT713d8bUgbhg9Iel5kFSqnSvCK06TYIDJAtJ51cSiWkM/YemlT0dfoFycw==} engines: {node: '>=12'} dependencies: '@types/node': 15.14.9 '@types/vinyl': 2.0.10 vinyl: 2.2.1 vinyl-file: 3.0.0 dev: true /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} dependencies: braces: 3.0.2 picomatch: 2.3.1 /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} dev: true /mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 dev: true /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} dev: true /mimic-response@1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} dev: true /mimic-response@3.1.0: resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} engines: {node: '>=10'} dev: true /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} dev: true /minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 /minimatch@5.0.1: resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 /minimatch@5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 /minimatch@7.4.6: resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 dev: true /minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 dev: true /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} /minipass-collect@1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: true /minipass-fetch@1.4.1: resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==} engines: {node: '>=8'} dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 dev: true /minipass-fetch@2.1.2: resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 dev: true /minipass-fetch@3.0.4: resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minipass: 7.0.4 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 dev: true /minipass-flush@1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: true /minipass-json-stream@1.0.1: resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} dependencies: jsonparse: 1.3.1 minipass: 3.3.6 dev: true /minipass-pipeline@1.2.4: resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} engines: {node: '>=8'} dependencies: minipass: 3.3.6 dev: true /minipass-sized@1.0.3: resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} engines: {node: '>=8'} dependencies: minipass: 3.3.6 dev: true /minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 /minipass@4.2.8: resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} engines: {node: '>=8'} dev: true /minipass@5.0.0: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} /minipass@7.0.4: resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} engines: {node: '>=16 || 14 >=14.17'} dev: true /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 yallist: 4.0.0 /mkdirp-infer-owner@2.0.0: resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 infer-owner: 1.0.4 mkdirp: 1.0.4 dev: true /mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: minimist: 1.2.8 dev: false /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true /mocha@10.2.0: resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==} engines: {node: '>= 14.0.0'} hasBin: true dependencies: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.5.3 debug: 4.3.4(supports-color@8.1.1) diff: 5.0.0 escape-string-regexp: 4.0.0 find-up: 5.0.0 glob: 7.2.0 he: 1.2.0 js-yaml: 4.1.0 log-symbols: 4.1.0 minimatch: 5.0.1 ms: 2.1.3 nanoid: 3.3.3 serialize-javascript: 6.0.0 strip-json-comments: 3.1.1 supports-color: 8.1.1 workerpool: 6.2.1 yargs: 16.2.0 yargs-parser: 20.2.4 yargs-unparser: 2.0.0 /mock-stdin@1.0.0: resolution: {integrity: sha512-tukRdb9Beu27t6dN+XztSRHq9J0B/CoAOySGzHfn8UTfmqipA5yNT/sDUEyYdAV3Hpka6Wx6kOMxuObdOex60Q==} dev: true /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} /multimatch@5.0.0: resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} engines: {node: '>=10'} dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 dev: true /mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true /nanoid@3.3.3: resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} /natural-orderby@2.0.3: resolution: {integrity: sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==} /negotiator@0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} dev: true /no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 tslib: 2.6.2 dev: false /nock@13.3.8: resolution: {integrity: sha512-96yVFal0c/W1lG7mmfRe7eO+hovrhJYd2obzzOZ90f6fjpeU/XNvd9cYHZKZAQJumDfhXgoTpkpJ9pvMj+hqHw==} engines: {node: '>= 10.13'} dependencies: debug: 4.3.4(supports-color@8.1.1) json-stringify-safe: 5.0.1 propagate: 2.0.1 transitivePeerDependencies: - supports-color dev: true /node-domexception@1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} engines: {node: '>=10.5.0'} dev: false /node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: encoding: optional: true dependencies: whatwg-url: 5.0.0 /node-fetch@3.3.2: resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: data-uri-to-buffer: 4.0.1 fetch-blob: 3.2.0 formdata-polyfill: 4.0.10 dev: false /node-gyp-build@4.6.1: resolution: {integrity: sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==} hasBin: true requiresBuild: true dev: false /node-gyp@8.4.1: resolution: {integrity: sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==} engines: {node: '>= 10.12.0'} hasBin: true dependencies: env-paths: 2.2.1 glob: 7.2.3 graceful-fs: 4.2.11 make-fetch-happen: 9.1.0 nopt: 5.0.0 npmlog: 6.0.2 rimraf: 3.0.2 semver: 7.5.4 tar: 6.2.0 which: 2.0.2 transitivePeerDependencies: - bluebird - supports-color dev: true /node-gyp@9.4.1: resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} engines: {node: ^12.13 || ^14.13 || >=16} hasBin: true dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 glob: 7.2.3 graceful-fs: 4.2.11 make-fetch-happen: 10.2.1 nopt: 6.0.0 npmlog: 6.0.2 rimraf: 3.0.2 semver: 7.5.4 tar: 6.2.0 which: 2.0.2 transitivePeerDependencies: - bluebird - supports-color dev: true /nopt@5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} engines: {node: '>=6'} hasBin: true dependencies: abbrev: 1.1.1 dev: true /nopt@6.0.0: resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true dependencies: abbrev: 1.1.1 dev: true /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 dev: true /normalize-package-data@3.0.3: resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true /normalize-package-data@5.0.0: resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: hosted-git-info: 6.1.1 is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} /normalize-url@6.1.0: resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} engines: {node: '>=10'} dev: true /npm-bundled@1.1.2: resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} dependencies: npm-normalize-package-bin: 1.0.1 dev: true /npm-bundled@3.0.0: resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: npm-normalize-package-bin: 3.0.1 dev: true /npm-install-checks@4.0.0: resolution: {integrity: sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==} engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: true /npm-install-checks@6.3.0: resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: semver: 7.5.4 dev: true /npm-normalize-package-bin@1.0.1: resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} dev: true /npm-normalize-package-bin@2.0.0: resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true /npm-normalize-package-bin@3.0.1: resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /npm-package-arg@10.1.0: resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: hosted-git-info: 6.1.1 proc-log: 3.0.0 semver: 7.5.4 validate-npm-package-name: 5.0.0 dev: true /npm-package-arg@8.1.5: resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==} engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 semver: 7.5.4 validate-npm-package-name: 3.0.0 dev: true /npm-packlist@3.0.0: resolution: {integrity: sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==} engines: {node: '>=10'} hasBin: true dependencies: glob: 7.2.3 ignore-walk: 4.0.1 npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 dev: true /npm-packlist@7.0.4: resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: ignore-walk: 6.0.3 dev: true /npm-pick-manifest@6.1.1: resolution: {integrity: sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==} dependencies: npm-install-checks: 4.0.0 npm-normalize-package-bin: 1.0.1 npm-package-arg: 8.1.5 semver: 7.5.4 dev: true /npm-pick-manifest@8.0.2: resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: npm-install-checks: 6.3.0 npm-normalize-package-bin: 3.0.1 npm-package-arg: 10.1.0 semver: 7.5.4 dev: true /npm-registry-fetch@12.0.2: resolution: {integrity: sha512-Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} dependencies: make-fetch-happen: 10.2.1 minipass: 3.3.6 minipass-fetch: 1.4.1 minipass-json-stream: 1.0.1 minizlib: 2.1.2 npm-package-arg: 8.1.5 transitivePeerDependencies: - bluebird - supports-color dev: true /npm-registry-fetch@14.0.5: resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: make-fetch-happen: 11.1.1 minipass: 5.0.0 minipass-fetch: 3.0.4 minipass-json-stream: 1.0.1 minizlib: 2.1.2 npm-package-arg: 10.1.0 proc-log: 3.0.0 transitivePeerDependencies: - supports-color dev: true /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} dependencies: path-key: 3.1.1 /npm@9.8.1: resolution: {integrity: sha512-AfDvThQzsIXhYgk9zhbk5R+lh811lKkLAeQMMhSypf1BM7zUafeIIBzMzespeuVEJ0+LvY36oRQYf7IKLzU3rw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dev: false bundledDependencies: - '@isaacs/string-locale-compare' - '@npmcli/arborist' - '@npmcli/config' - '@npmcli/fs' - '@npmcli/map-workspaces' - '@npmcli/package-json' - '@npmcli/promise-spawn' - '@npmcli/run-script' - abbrev - archy - cacache - chalk - ci-info - cli-columns - cli-table3 - columnify - fastest-levenshtein - fs-minipass - glob - graceful-fs - hosted-git-info - ini - init-package-json - is-cidr - json-parse-even-better-errors - libnpmaccess - libnpmdiff - libnpmexec - libnpmfund - libnpmhook - libnpmorg - libnpmpack - libnpmpublish - libnpmsearch - libnpmteam - libnpmversion - make-fetch-happen - minimatch - minipass - minipass-pipeline - ms - node-gyp - nopt - npm-audit-report - npm-install-checks - npm-package-arg - npm-pick-manifest - npm-profile - npm-registry-fetch - npm-user-validate - npmlog - p-map - pacote - parse-conflict-json - proc-log - qrcode-terminal - read - semver - sigstore - ssri - supports-color - tar - text-table - tiny-relative-date - treeverse - validate-npm-package-name - which - write-file-atomic /npmlog@5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 gauge: 3.0.2 set-blocking: 2.0.0 dev: true /npmlog@6.0.2: resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 dev: true /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} dev: true /object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} dev: true /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} dev: true /object-treeify@1.1.33: resolution: {integrity: sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==} engines: {node: '>= 10'} /object.assign@4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true /object.fromentries@2.0.7: resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 dev: true /object.groupby@1.0.1: resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 get-intrinsic: 1.2.2 dev: true /object.values@1.1.7: resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 dev: true /oclif@3.17.2(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-+vFXxgmR7dGGz+g6YiqSZu2LXVkBMaS9/rhtsLGkYw45e53CW/3kBgPRnOvxcTDM3Td9JPeBD2JWxXnPKGQW3A==} engines: {node: '>=12.0.0'} hasBin: true dependencies: '@oclif/core': 2.15.0(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-help': 5.2.20(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-not-found': 2.4.3(@types/node@16.18.61)(typescript@4.9.5) '@oclif/plugin-warn-if-update-available': 2.1.1(@types/node@16.18.61)(typescript@4.9.5) async-retry: 1.3.3 aws-sdk: 2.1494.0 concurrently: 7.6.0 debug: 4.3.4(supports-color@8.1.1) find-yarn-workspace-root: 2.0.0 fs-extra: 8.1.0 github-slugger: 1.5.0 got: 11.8.6 lodash: 4.17.21 normalize-package-data: 3.0.3 semver: 7.5.4 shelljs: 0.8.5 tslib: 2.6.2 yeoman-environment: 3.19.3 yeoman-generator: 5.10.0(yeoman-environment@3.19.3) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - bluebird - encoding - mem-fs - supports-color - typescript dev: true /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 /onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 dev: true /optionator@0.9.3: resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} dependencies: '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 /ora@5.4.1: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} dependencies: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.9.1 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 dev: true /os-tmpdir@1.0.2: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} dev: true /p-cancelable@2.1.1: resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} engines: {node: '>=8'} dev: true /p-finally@1.0.0: resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} dev: true /p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true /p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 /p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} dependencies: p-limit: 2.3.0 dev: true /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} dependencies: p-limit: 3.1.0 /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 dev: true /p-queue@6.6.2: resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} engines: {node: '>=8'} dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 dev: true /p-timeout@3.2.0: resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} engines: {node: '>=8'} dependencies: p-finally: 1.0.0 dev: true /p-transform@1.3.0: resolution: {integrity: sha512-UJKdSzgd3KOnXXAtqN5+/eeHcvTn1hBkesEmElVgvO/NAYcxAvmjzIGmnNd3Tb/gRAvMBdNRFD4qAWdHxY6QXg==} engines: {node: '>=12.10.0'} dependencies: debug: 4.3.4(supports-color@8.1.1) p-queue: 6.6.2 transitivePeerDependencies: - supports-color dev: true /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} dev: true /pacote@12.0.3: resolution: {integrity: sha512-CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} hasBin: true dependencies: '@npmcli/git': 2.1.0 '@npmcli/installed-package-contents': 1.0.7 '@npmcli/promise-spawn': 1.3.2 '@npmcli/run-script': 2.0.0 cacache: 15.3.0 chownr: 2.0.0 fs-minipass: 2.1.0 infer-owner: 1.0.4 minipass: 3.3.6 mkdirp: 1.0.4 npm-package-arg: 8.1.5 npm-packlist: 3.0.0 npm-pick-manifest: 6.1.1 npm-registry-fetch: 12.0.2 promise-retry: 2.0.1 read-package-json-fast: 2.0.3 rimraf: 3.0.2 ssri: 8.0.1 tar: 6.2.0 transitivePeerDependencies: - bluebird - supports-color dev: true /pacote@15.2.0: resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: '@npmcli/git': 4.1.0 '@npmcli/installed-package-contents': 2.0.2 '@npmcli/promise-spawn': 6.0.2 '@npmcli/run-script': 6.0.2 cacache: 17.1.4 fs-minipass: 3.0.3 minipass: 5.0.0 npm-package-arg: 10.1.0 npm-packlist: 7.0.4 npm-pick-manifest: 8.0.2 npm-registry-fetch: 14.0.5 proc-log: 3.0.0 promise-retry: 2.0.1 read-package-json: 6.0.4 read-package-json-fast: 3.0.2 sigstore: 1.9.0 ssri: 10.0.5 tar: 6.2.0 transitivePeerDependencies: - bluebird - supports-color dev: true /pako@2.1.0: resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} dev: false /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} dependencies: callsites: 3.1.0 /parse-conflict-json@2.0.2: resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 just-diff: 5.2.0 just-diff-apply: 5.5.0 dev: true /parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} engines: {node: '>=4'} dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 /parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 dev: true /password-prompt@1.1.3: resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==} dependencies: ansi-escapes: 4.3.2 cross-spawn: 7.0.3 /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} /path-scurry@1.10.1: resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} engines: {node: '>=16 || 14 >=14.17'} dependencies: lru-cache: 10.0.2 minipass: 7.0.4 dev: true /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} /path@0.12.7: resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} dependencies: process: 0.11.10 util: 0.10.4 dev: false /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} dev: false /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} /pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} dev: true /pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} /pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true /pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} dev: true /preferred-pm@3.1.2: resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} engines: {node: '>=10'} dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.0.0 dev: true /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} /prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} engines: {node: '>=10.13.0'} hasBin: true dev: true /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} dev: true /proc-log@1.0.0: resolution: {integrity: sha512-aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg==} dev: true /proc-log@3.0.0: resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} dev: true /process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} /promise-all-reject-late@1.0.1: resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} dev: true /promise-call-limit@1.0.2: resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} dev: true /promise-inflight@1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: bluebird: '*' peerDependenciesMeta: bluebird: optional: true dev: true /promise-retry@2.0.1: resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} engines: {node: '>=10'} dependencies: err-code: 2.0.3 retry: 0.12.0 dev: true /propagate@2.0.1: resolution: {integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==} engines: {node: '>= 8'} dev: true /proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} dev: true /pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 dev: true /punycode@1.3.2: resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} dev: true /punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} /querystring@0.2.0: resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: true /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} /quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} dev: true /rambda@7.5.0: resolution: {integrity: sha512-y/M9weqWAH4iopRd7EHDEQQvpFPHj1AA3oHozE9tfITHUtTR7Z9PSlIRRG2l1GuW7sefC1cXFfIcF+cgnShdBA==} dev: true /randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 /read-cmd-shim@3.0.1: resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true /read-package-json-fast@2.0.3: resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} engines: {node: '>=10'} dependencies: json-parse-even-better-errors: 2.3.1 npm-normalize-package-bin: 1.0.1 dev: true /read-package-json-fast@3.0.2: resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: json-parse-even-better-errors: 3.0.0 npm-normalize-package-bin: 3.0.1 dev: true /read-package-json@6.0.4: resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: glob: 10.3.10 json-parse-even-better-errors: 3.0.0 normalize-package-data: 5.0.0 npm-normalize-package-bin: 3.0.1 dev: true /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 dev: true /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 dev: true /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: core-util-is: 1.0.3 inherits: 2.0.4 isarray: 1.0.0 process-nextick-args: 2.0.1 safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 dev: true /readable-stream@3.6.2: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 dev: true /readable-stream@4.4.2: resolution: {integrity: sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: abort-controller: 3.0.0 buffer: 6.0.3 events: 3.3.0 process: 0.11.10 string_decoder: 1.3.0 dev: true /readdir-scoped-modules@1.1.0: resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} deprecated: This functionality has been moved to @npmcli/fs dependencies: debuglog: 1.0.1 dezalgo: 1.0.4 graceful-fs: 4.2.11 once: 1.4.0 dev: true /readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} engines: {node: '>= 0.10'} dependencies: resolve: 1.22.8 /redeyed@2.1.1: resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==} dependencies: esprima: 4.0.1 /regenerator-runtime@0.14.0: resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} /regexp-tree@0.1.27: resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} hasBin: true dev: true /regexp.prototype.flags@1.5.1: resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 set-function-name: 2.0.1 dev: true /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} dev: true /regjsparser@0.10.0: resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} hasBin: true dependencies: jsesc: 0.5.0 dev: true /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} dev: true /replace-ext@1.0.1: resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} engines: {node: '>= 0.10'} dev: true /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} /resolve-alpn@1.2.1: resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} dev: true /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} /resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} dev: true /resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 /responselike@2.0.1: resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} dependencies: lowercase-keys: 2.0.0 dev: true /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 dev: true /retry@0.12.0: resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} engines: {node: '>= 4'} dev: true /retry@0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} dev: true /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.3 /rpc-websockets@7.6.2: resolution: {integrity: sha512-+M1fOYMPxvOQDHbSItkD/an4fRwPZ1Nft1zv48G84S0TyChG2A1GXmjWkbs3o2NxW+q36H9nM2uLo5yojTrPaA==} dependencies: '@babel/runtime': 7.23.2 eventemitter3: 4.0.7 uuid: 8.3.2 ws: 8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 dev: false /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} dev: true /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: tslib: 2.6.2 dev: true /safe-array-concat@1.0.1: resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 dev: true /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} dev: true /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} /safe-regex-test@1.0.0: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true /sax@1.2.1: resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==} dev: true /scoped-regex@2.1.0: resolution: {integrity: sha512-g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ==} engines: {node: '>=8'} dev: true /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true dev: true /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 /serialize-javascript@6.0.0: resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} dependencies: randombytes: 2.1.0 /set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} dev: true /set-function-length@1.1.1: resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.1 get-intrinsic: 1.2.2 gopd: 1.0.1 has-property-descriptors: 1.0.1 dev: true /set-function-name@2.0.1: resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.1 functions-have-names: 1.2.3 has-property-descriptors: 1.0.1 dev: true /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} /shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} dev: true /shelljs@0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} engines: {node: '>=4'} hasBin: true dependencies: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 /shx@0.3.4: resolution: {integrity: sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==} engines: {node: '>=6'} hasBin: true dependencies: minimist: 1.2.8 shelljs: 0.8.5 dev: true /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 object-inspect: 1.13.1 dev: true /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} dev: true /signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} dev: true /sigstore@1.9.0: resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: '@sigstore/bundle': 1.1.0 '@sigstore/protobuf-specs': 0.2.1 '@sigstore/sign': 1.0.0 '@sigstore/tuf': 1.0.3 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color dev: true /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} /slice-ansi@4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 /smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} dev: true /snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: false /socks-proxy-agent@6.2.1: resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 debug: 4.3.4(supports-color@8.1.1) socks: 2.7.1 transitivePeerDependencies: - supports-color dev: true /socks-proxy-agent@7.0.0: resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 debug: 4.3.4(supports-color@8.1.1) socks: 2.7.1 transitivePeerDependencies: - supports-color dev: true /socks@2.7.1: resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: ip: 2.0.0 smart-buffer: 4.2.0 dev: true /sort-keys@4.2.0: resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} engines: {node: '>=8'} dependencies: is-plain-obj: 2.1.0 dev: true /source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 dev: false /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} dev: false /spawn-command@0.0.2-1: resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==} dev: true /spdx-correct@3.2.0: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.16 dev: true /spdx-exceptions@2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} dev: true /spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.16 dev: true /spdx-license-ids@3.0.16: resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} dev: true /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} /ssri@10.0.5: resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minipass: 7.0.4 dev: true /ssri@8.0.1: resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: true /ssri@9.0.1: resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 dev: true /stdout-stderr@0.1.13: resolution: {integrity: sha512-Xnt9/HHHYfjZ7NeQLvuQDyL1LnbsbddgMFKCuaQKwGCdJm8LnstZIXop+uOY36UR1UXXoHXfMbC1KlVdVd2JLA==} engines: {node: '>=8.0.0'} dependencies: debug: 4.3.4(supports-color@8.1.1) strip-ansi: 6.0.1 transitivePeerDependencies: - supports-color dev: true /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 /string-width@5.1.2: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 dev: true /string.prototype.trim@1.2.8: resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 dev: true /string.prototype.trimend@1.0.7: resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 dev: true /string.prototype.trimstart@1.0.7: resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 dev: true /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 dev: true /string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 dev: true /strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 /strip-ansi@7.1.0: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 dev: true /strip-bom-buf@1.0.0: resolution: {integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==} engines: {node: '>=4'} dependencies: is-utf8: 0.2.1 dev: true /strip-bom-stream@2.0.0: resolution: {integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==} engines: {node: '>=0.10.0'} dependencies: first-chunk-stream: 2.0.0 strip-bom: 2.0.0 dev: true /strip-bom@2.0.0: resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} engines: {node: '>=0.10.0'} dependencies: is-utf8: 0.2.1 dev: true /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} dev: true /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} dependencies: min-indent: 1.0.1 dev: true /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} /superstruct@0.14.2: resolution: {integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==} dev: false /superstruct@0.15.5: resolution: {integrity: sha512-4AOeU+P5UuE/4nOUkmcQdW5y7i9ndt1cQd/3iUe+LTz3RxESf/W/5lg4B74HbDMMv8PHnPnGCQFH45kBcrQYoQ==} dev: false /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} dependencies: has-flag: 3.0.0 dev: true /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 /supports-color@8.1.1: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} dependencies: has-flag: 4.0.0 /supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} dev: true /tar@6.2.0: resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 minipass: 5.0.0 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 /text-encoding-utf-8@1.0.2: resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==} dev: false /text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} /textextensions@5.16.0: resolution: {integrity: sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==} engines: {node: '>=0.8'} dev: true /through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 dev: true /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 /toml@3.0.0: resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} dev: false /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} /tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true dev: true /treeverse@1.0.4: resolution: {integrity: sha512-whw60l7r+8ZU8Tu/Uc2yxtc4ZTZbR/PF3u1IPNKGQ6p8EICLb3Z2lAgoqw9bqYd8IkgnsaOcLzYHFckjqNsf0g==} dev: true /ts-api-utils@1.0.3(typescript@4.9.5): resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} engines: {node: '>=16.13.0'} peerDependencies: typescript: '>=4.2.0' dependencies: typescript: 4.9.5 /ts-mocha@10.0.0(mocha@10.2.0): resolution: {integrity: sha512-VRfgDO+iiuJFlNB18tzOfypJ21xn2xbuZyDvJvqpTbWgkAgD17ONGr8t+Tl8rcBtOBdjXp5e/Rk+d39f7XBHRw==} engines: {node: '>= 6.X.X'} hasBin: true peerDependencies: mocha: ^3.X.X || ^4.X.X || ^5.X.X || ^6.X.X || ^7.X.X || ^8.X.X || ^9.X.X || ^10.X.X dependencies: mocha: 10.2.0 ts-node: 7.0.1 optionalDependencies: tsconfig-paths: 3.14.2 dev: false /ts-node@10.9.1(@types/node@16.18.61)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' '@swc/wasm': '>=1.2.50' '@types/node': '*' typescript: '>=2.7' peerDependenciesMeta: '@swc/core': optional: true '@swc/wasm': optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 16.18.61 acorn: 8.11.2 acorn-walk: 8.3.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 /ts-node@7.0.1: resolution: {integrity: sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==} engines: {node: '>=4.2.0'} hasBin: true dependencies: arrify: 1.0.1 buffer-from: 1.1.2 diff: 3.5.0 make-error: 1.3.6 minimist: 1.2.8 mkdirp: 0.5.6 source-map-support: 0.5.21 yn: 2.0.0 dev: false /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} /tuf-js@1.1.7: resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@tufjs/models': 1.0.4 debug: 4.3.4(supports-color@8.1.1) make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color dev: true /tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 /tweetnacl@1.0.3: resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} dev: false /type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 /type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} dev: false /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} /type-fest@0.3.1: resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==} engines: {node: '>=6'} dev: false /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} dev: true /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} dev: true /typed-array-buffer@1.0.0: resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true /typed-array-byte-length@1.0.0: resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 dev: true /typed-array-byte-offset@1.0.0: resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 dev: true /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: call-bind: 1.0.5 for-each: 0.3.3 is-typed-array: 1.1.12 dev: true /typescript@4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} hasBin: true /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 dev: true /unique-filename@1.1.1: resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} dependencies: unique-slug: 2.0.2 dev: true /unique-filename@2.0.1: resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: unique-slug: 3.0.0 dev: true /unique-filename@3.0.0: resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: unique-slug: 4.0.0 dev: true /unique-slug@2.0.2: resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} dependencies: imurmurhash: 0.1.4 dev: true /unique-slug@3.0.0: resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 dev: true /unique-slug@4.0.0: resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: imurmurhash: 0.1.4 dev: true /universal-user-agent@6.0.1: resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} dev: true /universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} dev: true /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} dev: true /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.1 /url@0.10.3: resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: true /utf-8-validate@5.0.10: resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} engines: {node: '>=6.14.2'} requiresBuild: true dependencies: node-gyp-build: 4.6.1 dev: false /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} dev: true /util@0.10.4: resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} dependencies: inherits: 2.0.3 dev: false /util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} dependencies: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.12 which-typed-array: 1.1.13 dev: true /uuid@8.0.0: resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==} hasBin: true dev: true /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true dev: false /v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 dev: true /validate-npm-package-name@3.0.0: resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} dependencies: builtins: 1.0.3 dev: true /validate-npm-package-name@5.0.0: resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: builtins: 5.0.1 /vinyl-file@3.0.0: resolution: {integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==} engines: {node: '>=4'} dependencies: graceful-fs: 4.2.11 pify: 2.3.0 strip-bom-buf: 1.0.0 strip-bom-stream: 2.0.0 vinyl: 2.2.1 dev: true /vinyl@2.2.1: resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==} engines: {node: '>= 0.10'} dependencies: clone: 2.1.2 clone-buffer: 1.0.0 clone-stats: 1.0.0 cloneable-readable: 1.1.3 remove-trailing-separator: 1.1.0 replace-ext: 1.0.1 dev: true /walk-up-path@1.0.0: resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} dev: true /wasmbuilder@0.0.16: resolution: {integrity: sha512-Qx3lEFqaVvp1cEYW7Bfi+ebRJrOiwz2Ieu7ZG2l7YyeSJIok/reEQCQCuicj/Y32ITIJuGIM9xZQppGx5LrQdA==} dev: false /wasmcurves@0.2.2: resolution: {integrity: sha512-JRY908NkmKjFl4ytnTu5ED6AwPD+8VJ9oc94kdq7h5bIwbj0L4TDJ69mG+2aLs2SoCmGfqIesMWTEJjtYsoQXQ==} dependencies: wasmbuilder: 0.0.16 dev: false /wcwidth@1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.4 dev: true /web-streams-polyfill@3.2.1: resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} engines: {node: '>= 8'} dev: false /web-worker@1.2.0: resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==} dev: false /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} /whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 /which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 is-number-object: 1.0.7 is-string: 1.0.7 is-symbol: 1.0.4 dev: true /which-pm@2.0.0: resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} engines: {node: '>=8.15'} dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 dev: true /which-typed-array@1.1.13: resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 dev: true /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 /which@3.0.1: resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: isexe: 2.0.0 dev: true /wide-align@1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: string-width: 4.2.3 dev: true /widest-line@3.1.0: resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} engines: {node: '>=8'} dependencies: string-width: 4.2.3 /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} /workerpool@6.2.1: resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 dev: true /wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 /wrap-ansi@8.1.0: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} engines: {node: '>=12'} dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 dev: true /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} /write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 dev: true /ws@7.5.9: resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true dev: false /ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true dependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 dev: false /xml2js@0.5.0: resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} engines: {node: '>=4.0.0'} dependencies: sax: 1.2.1 xmlbuilder: 11.0.1 dev: true /xmlbuilder@11.0.1: resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} engines: {node: '>=4.0'} dev: true /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} /yargs-parser@20.2.4: resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} engines: {node: '>=10'} /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} dev: true /yargs-unparser@2.0.0: resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} engines: {node: '>=10'} dependencies: camelcase: 6.3.0 decamelize: 4.0.0 flat: 5.0.2 is-plain-obj: 2.1.0 /yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} engines: {node: '>=10'} dependencies: cliui: 7.0.4 escalade: 3.1.1 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 20.2.4 /yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} dependencies: cliui: 8.0.1 escalade: 3.1.1 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 dev: true /yarn@1.22.19: resolution: {integrity: sha512-/0V5q0WbslqnwP91tirOvldvYISzaqhClxzyUKXYxs07yUILIs5jx/k6CFe8bvKSkds5w+eiOqta39Wk3WxdcQ==} engines: {node: '>=4.0.0'} hasBin: true requiresBuild: true dev: false /yeoman-environment@3.19.3: resolution: {integrity: sha512-/+ODrTUHtlDPRH9qIC0JREH8+7nsRcjDl3Bxn2Xo/rvAaVvixH5275jHwg0C85g4QsF4P6M2ojfScPPAl+pLAg==} engines: {node: '>=12.10.0'} hasBin: true dependencies: '@npmcli/arborist': 4.3.1 are-we-there-yet: 2.0.0 arrify: 2.0.1 binaryextensions: 4.19.0 chalk: 4.1.2 cli-table: 0.3.11 commander: 7.1.0 dateformat: 4.6.3 debug: 4.3.4(supports-color@8.1.1) diff: 5.1.0 error: 10.4.0 escape-string-regexp: 4.0.0 execa: 5.1.1 find-up: 5.0.0 globby: 11.1.0 grouped-queue: 2.0.0 inquirer: 8.2.6 is-scoped: 2.1.0 isbinaryfile: 4.0.10 lodash: 4.17.21 log-symbols: 4.1.0 mem-fs: 2.3.0 mem-fs-editor: 9.7.0(mem-fs@2.3.0) minimatch: 3.1.2 npmlog: 5.0.1 p-queue: 6.6.2 p-transform: 1.3.0 pacote: 12.0.3 preferred-pm: 3.1.2 pretty-bytes: 5.6.0 readable-stream: 4.4.2 semver: 7.5.4 slash: 3.0.0 strip-ansi: 6.0.1 text-table: 0.2.0 textextensions: 5.16.0 untildify: 4.0.0 transitivePeerDependencies: - bluebird - supports-color dev: true /yeoman-generator@5.10.0(yeoman-environment@3.19.3): resolution: {integrity: sha512-iDUKykV7L4nDNzeYSedRmSeJ5eMYFucnKDi6KN1WNASXErgPepKqsQw55TgXPHnmpcyOh2Dd/LAZkyc+f0qaAw==} engines: {node: '>=12.10.0'} peerDependencies: yeoman-environment: ^3.2.0 peerDependenciesMeta: yeoman-environment: optional: true dependencies: chalk: 4.1.2 dargs: 7.0.0 debug: 4.3.4(supports-color@8.1.1) execa: 5.1.1 github-username: 6.0.0 lodash: 4.17.21 mem-fs-editor: 9.7.0(mem-fs@2.3.0) minimist: 1.2.8 pacote: 15.2.0 read-pkg-up: 7.0.1 run-async: 2.4.1 semver: 7.5.4 shelljs: 0.8.5 sort-keys: 4.2.0 text-table: 0.2.0 yeoman-environment: 3.19.3 transitivePeerDependencies: - bluebird - encoding - mem-fs - supports-color dev: true /yn@2.0.0: resolution: {integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==} engines: {node: '>=4'} dev: false /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} /zlib@1.0.5: resolution: {integrity: sha512-40fpE2II+Cd3k8HWTWONfeKE2jL+P42iWJ1zzps5W51qcTsOUKM5Q5m2PFb0CLxlmFAaUuUdJGc3OfZy947v0w==} engines: {node: '>=0.2.0'} dev: false
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.yarnrc.yml
nodeLinker: node-modules
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/config.json
{ "solanaRpcUrl": "http://127.0.0.1:8899" }
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.eslintrc
{ "root": true, "env": { "node": true, "browser": true }, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2021, "sourceType": "module" } }
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.editorconfig
root = true [*] indent_style = space indent_size = 2 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/README.md
# ZK Compression CLI CLI to interact with compressed accounts and compressed tokens on Solana. ## Requirements - Ensure you have Node >= v20.9.0 installed on your machine. - You will need a valid Solana filesystem wallet set up at `~/.config/solana/id.json`. If you don't have one yet, visit the [Solana documentation](https://docs.solanalabs.com/cli/wallets/file-system) for details. The CLI will use this wallet as the default fee payer and mint authority. ## Installation ### Using npm ```bash npm install -g @lightprotocol/zk-compression-cli ``` ### Building from source If you prefer to build the CLI from source, follow the steps below to install the necessary prerequesites. **1. Activate the Development Environment** Ensure you are at the root of the monorepo. ```bash . ./scripts/devenv ``` **2. Install and build the monorepo from source. This also builds the CLI.** ```bash ./scripts/install.sh ``` ```bash ./scripts/build.sh ``` **3. Make your CLI available globally** ```bash pnpm link --global ``` ```bash # Verify the CLI was correctly installed which light ``` ## Usage **1. Once globally installed, start the Light test validator** ```bash light test-validator ``` This starts a Solana test-validator with the Light system programs and accounts, a prover server, and the Photon indexer as background processes against a clean ledger. ```bash # Pass --skip-indexer to start without the indexer light test-validator --skip-indexer # Pass --skip-prover to start without the prover light test-validator --skip-prover ``` > **Note:** The CLI currently runs the photon indexer and light-prover as background processes at port: `8784` and `3001` respectively. **2. Ensure you have sufficient localnet funds** ```bash # Airdrop 1 SOL solana airdrop 1 # Print your address solana address # Print your balance solana balance ``` Now you're all set up to run CLI commands :) #### Using Devnet By default, the CLI interacts with localnet. You can view the current config by running: ```bash light config --get ``` To switch to Devnet, point the URLs to an RPC supporting ZK Compression. For example, run: ```bash light config --indexerUrl "https://devnet.helius-rpc.com/?api-key=<api-key>" \ --proverUrl "https://devnet.helius-rpc.com/?api-key=<api-key>" \ --solanaRpcUrl "https://devnet.helius-rpc.com/?api-key=<api-key>" ``` Also adjust your solana config: ```bash # Set config solana config set --url "https://devnet.helius-rpc.com/?api-key=<api-key>" # Airdrop 1 SOL solana airdrop 1 # Print your address solana address ``` ### Commands #### Create a compressed token mint ```bash light create-mint ``` ``` USAGE $ light create-mint [--mint-keypair <value>] [--mint-authority <value>] [--mint-decimals <value>] FLAGS --mint-authority=<value> Path to the mint authority keypair file. Defaults to default local Solana wallet file path. --mint-decimals=<value> Number of base 10 digits to the right of the decimal place [default: 9]. --mint-keypair=<value> Path to a mint keypair file. Defaults to a random keypair. ``` #### Mint compressed tokens to a Solana wallet ```bash light mint-to --mint "YOUR_MINT_ADDRESS" --to "YOUR_WALLET_ADDRESS" --amount 4200000000 ``` ``` USAGE $ light mint-to --mint <value> --to <value> --amount <value> [--mint-authority <value>] FLAGS --amount=<value> (required) Amount to mint. --mint=<value> (required) Mint address. --mint-authority=<value> File path of the mint authority keypair. Defaults to local Solana wallet. --to=<value> (required) Recipient address. ``` #### Transfer compressed tokens from one wallet to another ```bash light transfer --mint "YOUR_MINT_ADDRESS" --to "RECIPIENT_WALLET_ADDRESS" --amount 4200000000 ``` ``` USAGE $ light transfer --mint <value> --to <value> --amount <value> [--fee-payer <value>] FLAGS --amount=<value> (required) Amount to send. --fee-payer=<value> Fee payer account. Defaults to the client keypair. --mint=<value> (required) Mint to transfer --to=<value> (required) Recipient address ``` #### Assign native SOL to a compressed account ```bash light compress-sol --amount 1000 --to "YOUR_WALLET_ADDRESS_BASE58" ``` ``` USAGE $ light compress-sol --to <value> --amount <value> FLAGS --amount=<value> (required) Amount to compress in lamports. --to=<value> (required) Specify the recipient address. ``` #### Decompress into native SOL ```bash light decompress-sol --amount 42 --to "YOUR_WALLET_ADDRESS_BASE58" ``` ``` USAGE $ light decompress-sol --to <value> --amount <value> FLAGS --amount=<value> (required) Amount to decompress in lamports. --to=<value> (required) Specify the recipient address. ``` ### Support - Always feel free to join the [Developer Discord](https://discord.gg/D2cEphnvcY) for help! - For more info about the canonical indexer implementation built and maintained by Helius Labs, refer to the [Photon codebase](https://github.com/helius-labs/photon). - For more info about Light, refer to the [documentation](https://docs.lightprotocol.com/).
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/tsconfig.test.json
{ "extends": "./tsconfig", "compilerOptions": { "esModuleInterop": true, "noEmit": true, "rootDirs": ["src", "test"] }, "include": ["./src/**/*", "./test/**/*"] }
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/package.json
{ "name": "@lightprotocol/zk-compression-cli", "version": "0.22.0", "description": "ZK Compression: Secure Scaling on Solana", "maintainers": [ { "name": "Light Protocol maintainers", "email": "friends@lightprotocol.com" } ], "bin": { "light": "./test_bin/run" }, "license": "Apache-2.0", "main": "dist/index.js", "files": [ "/accounts", "/bin", "/dist", "/test_bin", "./config.json", "/npm-shrinkwrap.json", "/oclif.manifest.json", "!bin/proving-keys/address-append_26_1.key", "!bin/proving-keys/address-append_26_1.vkey", "!bin/proving-keys/address-append_26_10.key", "!bin/proving-keys/address-append_26_10.vkey", "!bin/proving-keys/append-with-proofs_26_10.key", "!bin/proving-keys/append-with-proofs_26_10.vkey", "!bin/proving-keys/append-with-subtrees_26_10.key", "!bin/proving-keys/append-with-subtrees_26_10.vkey", "!bin/proving-keys/update_26_10.key", "!bin/proving-keys/update_26_10.vkey", "!bin/cargo-generate" ], "dependencies": { "@coral-xyz/anchor": "0.29.0", "@lightprotocol/compressed-token": "workspace:*", "@lightprotocol/hasher.rs": "workspace:*", "@lightprotocol/stateless.js": "workspace:*", "@oclif/core": "^3.26.2", "@oclif/plugin-autocomplete": "^3.0.13", "@oclif/plugin-help": "^6.0.20", "@oclif/plugin-not-found": "^3.1.2", "@oclif/plugin-plugins": "^5.0.7", "@solana-developers/helpers": "^1.5.1", "@solana/web3.js": "1.95.3", "axios": "^1.6.8", "case-anything": "^2.1.13", "cli-progress": "^3.12.0", "cli-spinners": "^2.9.2", "dotenv": "^16.4.5", "ffjavascript": "^0.3.0", "find-process": "^1.4.7", "node-fetch": "^3.3.2", "snake-case": "^3.0.4", "tar": "^6.2.1", "tweetnacl": "^1.0.3", "wait-on": "^7.2.0", "which": "^4.0.0" }, "devDependencies": { "@lightprotocol/programs": "workspace:*", "@oclif/test": "2.3.9", "@solana/spl-token": "^0.3.11", "@types/bn.js": "^5.1.5", "@types/chai": "^4.3.16", "@types/cli-progress": "^3.11.5", "@types/mocha": "^10.0.7", "@types/node": "^20.12.8", "@types/tar": "^6.1.12", "@types/which": "^3.0.3", "@typescript-eslint/eslint-plugin": "^7.6.0", "@typescript-eslint/parser": "^7.6.0", "chai": "^4.4.1", "eslint": "8.57.0", "eslint-config-oclif": "5.1.1", "eslint-config-oclif-typescript": "3.1.4", "eslint-config-prettier": "9.1.0", "mocha": "^10.6.0", "oclif": "4.8.0", "prettier": "^3.3.3", "shx": "^0.3.4", "ts-mocha": "^10.0.0", "ts-node": "^10.9.2", "tslib": "^2.6.2", "typescript": "^5.5.3" }, "oclif": { "bin": "light", "dirname": "light", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins", "@oclif/plugin-autocomplete", "@oclif/plugin-not-found" ], "topicSeparator": "" }, "scripts": { "add-bins": "./scripts/copyLocalProgramBinaries.sh && scripts/buildProver.sh", "postinstall": "[ -d ./bin ] && find ./bin -type f -exec chmod +x {} + || echo 'No bin directory found, skipping chmod'", "build": "shx rm -rf dist && pnpm tsc -p tsconfig.json && pnpm tsc -p tsconfig.test.json && pnpm add-bins", "format": "pnpm prettier --write \"src/**/*.{ts,js}\" \"test/**/*.{ts,js}\" -w", "format:check": "pnpm prettier \"src/**/*{ts,js}\" \"test/**/*.{ts,js}\" --check", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --fix", "postpack": "shx rm -f oclif.manifest.json", "prepack": "pnpm build && oclif manifest && oclif readme", "test-utils": "mocha ./test/utils/index.test.ts -t 10000000 --exit", "test-config": "mocha ./test/commands/config/index.test.ts -t 10000000 --exit", "test-create-mint": "mocha ./test/commands/create-mint/index.test.ts -t 10000000 --exit", "test-merge-token-accounts": "mocha ./test/commands/merge-token-accounts/index.test.ts -t 10000000 --exit", "test-create-token-pool": "mocha ./test/commands/create-token-pool/index.test.ts -t 10000000 --exit", "test-approve-and-mint-to": "mocha ./test/commands/approve-and-mint-to/index.test.ts -t 10000000 --exit", "test-mint-to": "mocha ./test/commands/mint-to/index.test.ts -t 10000000 --exit", "test-transfer": "mocha ./test/commands/transfer/index.test.ts -t 10000000 --exit", "test-balance": "mocha ./test/commands/balance/index.test.ts -t 10000000 --exit", "test-compress-sol": "mocha ./test/commands/compress-sol/index.test.ts -t 10000000 --exit", "test-decompress-sol": "mocha ./test/commands/decompress-sol/index.test.ts -t 10000000 --exit", "test-compress-spl": "mocha ./test/commands/compress-spl/index.test.ts -t 10000000 --exit", "test-decompress-spl": "mocha ./test/commands/decompress-spl/index.test.ts -t 10000000 --exit", "test-test-validator": "mocha ./test/commands/test-validator/index.test.ts -t 10000000 --exit", "kill": "killall solana-test-validator || true && killall solana-test-val || true && sleep 1", "test-cli": "pnpm test-config && pnpm kill", "test": "pnpm kill && pnpm test-cli && pnpm test-utils && pnpm test-create-mint && pnpm test-mint-to && pnpm test-transfer && pnpm test-merge-token-accounts && pnpm test-create-token-pool && pnpm test-compress-spl && pnpm test-decompress-spl && pnpm test-balance && pnpm test-compress-sol && pnpm test-decompress-sol && pnpm test-approve-and-mint-to && pnpm test-test-validator", "install-local": "pnpm build && pnpm global remove @lightprotocol/zk-compression-cli || true && pnpm global add $PWD", "version": "oclif readme && git add README.md" }, "engines": { "node": ">=12.0.0" }, "keywords": [ "oclif" ], "types": "dist/index.d.ts", "nx": { "targets": { "build": { "inputs": [ "{workspaceRoot}/js", "{workspaceRoot}/programs", "{workspaceRoot}/gnark-prover" ], "outputs": [ "{workspaceRoot}/bin", "{workspaceRoot}/dist", "{workspaceRoot}/lib", "{workspaceRoot}/test_bin" ] } } } }
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.mocharc.json
{ "require": [ "test/helpers/init.js", "ts-node/register" ], "watch-extensions": [ "ts" ], "recursive": true, "reporter": "spec", "timeout": 600000 }
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/tsconfig.json
{ "compilerOptions": { "declaration": true, "esModuleInterop": true, "importHelpers": true, "module": "commonjs", "outDir": "dist", "rootDirs": ["src"], "strict": true, "target": "ES2020", "skipLibCheck": true, "resolveJsonModule": true }, "include": ["src/**/*"] }
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.eslintignore
node_modules test_bin test/**/*.js scripts
0
solana_public_repos/Lightprotocol/light-protocol
solana_public_repos/Lightprotocol/light-protocol/cli/.eslintrc.json
{ "root": true, "ignorePatterns": ["node_modules", "dist", "bin", "accounts", "test"], "parser": "@typescript-eslint/parser", "parserOptions": { "project": ["./tsconfig.json", "./tsconfig.test.json"] }, "plugins": [ "@typescript-eslint" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" ], "rules": { "@typescript-eslint/ban-ts-comment": 0, "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-var-requires": 0, "@typescript-eslint/no-unused-vars": 0, "no-prototype-builtins": 0 } }
0
solana_public_repos/Lightprotocol/light-protocol/cli/test
solana_public_repos/Lightprotocol/light-protocol/cli/test/utils/index.test.ts
import * as fs from "fs"; import * as os from "os"; import path from "path"; import { assert, expect } from "chai"; import "mocha"; import { getSolanaArgs } from "../../src/utils"; describe("Init test env utils", () => { let tempdir: string; before(async () => { // Ensure that programs (as .so files) are going to be downloaded to a // temporary directory. tempdir = path.join(os.tmpdir(), "light-protocol-programs"); fs.mkdirSync(tempdir, { recursive: true }); process.env.LIGHT_PROTOCOL_PROGRAMS_DIR = tempdir; }); after(async () => { fs.rmSync(tempdir, { force: true, recursive: true }); }); it("Download program files, prepare arguments", async () => { const solanaArgs = await getSolanaArgs({ downloadBinaries: false }); const splNoopPath = path.join(tempdir, "spl_noop.so"); expect(solanaArgs).to.contain(splNoopPath); assert.isTrue(fs.existsSync(splNoopPath)); // TODO: add programs after they are ready }); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/mint-to/index.test.ts
import { expect, test } from "@oclif/test"; import { before } from "mocha"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestMint, requestAirdrop } from "../../helpers/helpers"; describe("mint-to", () => { let mintAmount: number = 100; /// authority is also the feepayer, and mint-to recipient let mintAuthorityPath = process.env.HOME + "/.config/solana/id.json"; let mintAuthority: Keypair = defaultSolanaWalletKeypair(); let mintKeypair = Keypair.generate(); let mintAddress = mintKeypair.publicKey; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(mintAuthority.publicKey); await createTestMint(mintKeypair); }); test .stdout({ print: true }) .command([ "mint-to", `--amount=${mintAmount}`, `--mint=${mintAddress.toBase58()}`, `--mint-authority=${mintAuthorityPath}`, `--to=${mintAuthority.publicKey.toBase58()}`, ]) .it( `mint-to ${mintAmount} tokens to ${mintAuthority.publicKey.toBase58()} from mint: ${mintAddress.toBase58()} with authority ${mintAuthority.publicKey.toBase58()}`, (ctx: any) => { expect(ctx.stdout).to.contain("mint-to successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/create-mint/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { requestAirdrop } from "../../helpers/helpers"; import { Keypair } from "@solana/web3.js"; describe("create-mint", () => { let mintAuthority: Keypair = defaultSolanaWalletKeypair(); before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(mintAuthority.publicKey); }); test .stdout({ print: true }) .command([ "create-mint", `--mint-authority=${mintAuthority.publicKey.toBase58()}`, ]) .it( `create mint for mintAuthority: ${mintAuthority.publicKey.toBase58()}`, (ctx: any) => { expect(ctx.stdout).to.contain("create-mint successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/config/index.test.ts
import { expect, test } from "@oclif/test"; import * as fs from "fs"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { DEFAULT_CONFIG } from "../../../src/utils/constants"; describe("config", () => { before(async () => { await initTestEnvIfNeeded(); }); test .stdout() .command(["config", "--solanaRpcUrl=http://127.0.0.1:8899"]) .it("runs solana rpc url update cmd", (ctx) => { expect(ctx.stdout).to.contain( "Configuration values updated successfully", ); }); }); let filePath = process.env.INIT_CWD + "/config.json"; describe("config with env variable", () => { before(async () => { await initTestEnvIfNeeded(); console.log("export LIGHT_PROTOCOL_CONFIG=" + filePath); process.env.LIGHT_PROTOCOL_CONFIG = filePath; let data = { ...DEFAULT_CONFIG, }; fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); }); test .stdout({ print: true }) .command(["config", "--solanaRpcUrl=http://127.0.0.1:8899"]) .it("runs solana rpc url update cmd", (ctx) => { expect(ctx.stdout).to.contain( `reading config from custom path ${filePath}`, ); }); }); // Test the --stop flag describe("test-validator stop", () => { before(async () => { await initTestEnvIfNeeded(); }); test .stdout() .command(["test-validator", "--stop"]) .it("runs test-validator stop cmd", (ctx) => { expect(ctx.stdout).to.contain("Test validator stopped successfully"); }); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/decompress-sol/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { requestAirdrop } from "../../helpers/helpers"; describe("decompress-sol", () => { const keypair = defaultSolanaWalletKeypair(); const to = keypair.publicKey.toBase58(); const amount = 200; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(keypair.publicKey); }); test .command(["compress-sol", `--amount=${amount}`, `--to=${to}`]) .stdout({ print: true }) .command(["decompress-sol", `--amount=${amount}`, `--to=${to}`]) .it(`decompress-sol ${amount} SOL to ${to}`, (ctx: any) => { expect(ctx.stdout).to.contain("decompress-sol successful"); }); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/create-token-pool/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { createTestSplMint, requestAirdrop } from "../../helpers/helpers"; import { Keypair } from "@solana/web3.js"; import { getTestRpc } from "@lightprotocol/stateless.js"; import { WasmFactory } from "@lightprotocol/hasher.rs"; describe("create-mint", () => { let mintAuthority: Keypair = defaultSolanaWalletKeypair(); let mintKeypair = Keypair.generate(); before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(mintAuthority.publicKey); const lightWasm = await WasmFactory.getInstance(); const rpc = await getTestRpc(lightWasm); await createTestSplMint( rpc, defaultSolanaWalletKeypair(), mintKeypair, mintAuthority, ); }); test .stdout({ print: true }) .command([ "create-token-pool", `--mint=${mintKeypair.publicKey.toBase58()}`, ]) .it( `register mint for mintAuthority: ${mintAuthority.publicKey.toBase58()}`, (ctx: any) => { expect(ctx.stdout).to.contain("create-token-pool successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/approve-and-mint-to/index.test.ts
import { expect, test } from "@oclif/test"; import { before } from "mocha"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestSplMint, requestAirdrop } from "../../helpers/helpers"; import { getTestRpc } from "@lightprotocol/stateless.js"; import { WasmFactory } from "@lightprotocol/hasher.rs"; describe("mint-to", () => { let mintAmount: number = 100; /// authority is also the feepayer, and mint-to recipient let mintAuthorityPath = process.env.HOME + "/.config/solana/id.json"; let mintAuthority: Keypair = defaultSolanaWalletKeypair(); let mintKeypair = Keypair.generate(); let mintAddress = mintKeypair.publicKey; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(mintAuthority.publicKey); const lightWasm = await WasmFactory.getInstance(); const rpc = await getTestRpc(lightWasm); await createTestSplMint(rpc, mintAuthority, mintKeypair, mintAuthority); }); test .command([ "create-token-pool", `--mint=${mintKeypair.publicKey.toBase58()}`, ]) .stdout({ print: true }) .command([ "approve-and-mint-to", `--amount=${mintAmount}`, `--mint=${mintAddress.toBase58()}`, `--mint-authority=${mintAuthorityPath}`, `--to=${mintAuthority.publicKey.toBase58()}`, ]) .it( `approve-and-mint-to ${mintAmount} tokens to ${mintAuthority.publicKey.toBase58()} from mint: ${mintAddress.toBase58()} with authority ${mintAuthority.publicKey.toBase58()}`, (ctx: any) => { expect(ctx.stdout).to.contain("approve-and-mint-to successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/transfer/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestMint, requestAirdrop, testMintTo, } from "../../helpers/helpers"; describe("transfer", () => { const payerKeypair = defaultSolanaWalletKeypair(); const payerKeypairPath = process.env.HOME + "/.config/solana/id.json"; const mintKeypair = Keypair.generate(); const mintAuthority = payerKeypair; const mintAmount = 10; const mintDestination = Keypair.generate().publicKey; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(payerKeypair.publicKey); await createTestMint(mintKeypair); await testMintTo( payerKeypair, mintKeypair.publicKey, payerKeypair.publicKey, mintAuthority, mintAmount, ); }); test .stdout({ print: true }) .command([ "transfer", `--amount=${mintAmount - 1}`, `--fee-payer=${payerKeypairPath}`, `--mint=${mintKeypair.publicKey.toBase58()}`, `--to=${mintDestination.toBase58()}`, ]) .it( `transfer ${ mintAmount - 1 } tokens to ${mintDestination.toBase58()} from ${mintKeypair.publicKey.toBase58()}, fee-payer: ${payerKeypair.publicKey.toBase58()} `, (ctx: any) => { expect(ctx.stdout).to.contain("transfer successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/balance/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestMint, requestAirdrop, testMintTo, } from "../../helpers/helpers"; describe("Get balance", () => { const payerKeypair = defaultSolanaWalletKeypair(); const mintKeypair = Keypair.generate(); const mintAuthority = payerKeypair; const mintAmount = 10; const mintDestination = Keypair.generate().publicKey; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(payerKeypair.publicKey); await createTestMint(mintKeypair); await testMintTo( payerKeypair, mintKeypair.publicKey, mintDestination, mintAuthority, mintAmount, ); }); test .stdout({ print: true }) .command([ "balance", `--mint=${mintKeypair.publicKey.toBase58()}`, `--owner=${mintDestination.toBase58()}`, ]) .it( `transfer ${mintAmount} tokens to ${mintDestination.toBase58()} from ${mintKeypair.publicKey.toBase58()}, fee-payer: ${payerKeypair.publicKey.toBase58()} `, (ctx: any) => { expect(ctx.stdout).to.contain("balance successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/decompress-spl/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestMint, requestAirdrop, testMintTo, } from "../../helpers/helpers"; describe("decompress-spl", () => { const payerKeypair = defaultSolanaWalletKeypair(); /// TODO: add test case for separate fee-payer const payerKeypairPath = process.env.HOME + "/.config/solana/id.json"; const mintKeypair = Keypair.generate(); const mintAuthority = payerKeypair; const mintAmount = 10; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(payerKeypair.publicKey); await createTestMint(mintKeypair); await testMintTo( payerKeypair, mintKeypair.publicKey, payerKeypair.publicKey, mintAuthority, mintAmount, ); }); test .stdout({ print: true }) .command([ "decompress-spl", `--mint=${mintKeypair.publicKey.toBase58()}`, `--amount=${mintAmount - 1}`, `--to=${payerKeypair.publicKey.toBase58()}`, ]) .it( `decompress ${ mintAmount - 1 } tokens to ${payerKeypair.publicKey.toBase58()} from ${payerKeypair.publicKey.toBase58()}`, (ctx: any) => { expect(ctx.stdout).to.contain("decompress-spl successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/test-validator/index.test.ts
import { expect } from "@oclif/test"; import { defaultSolanaWalletKeypair, programsDirPath } from "../../../src"; import { Connection, Keypair } from "@solana/web3.js"; import * as path from "path"; import * as fs from "fs"; import { killProcess } from "../../../src/utils/process"; import { exec as execCb } from "child_process"; import { promisify } from "util"; import { ExecException } from "node:child_process"; const exec = promisify(execCb); describe("test-validator command", function () { this.timeout(120_000); const defaultRpcPort = 8899; const customRpcPort = 8877; const defaultIndexerPort = 8784; const customIndexerPort = 8755; const defaultProverPort = 3001; const customProverPort = 3002; async function cleanupProcesses() { console.log("Running cleanup..."); try { // Stop the validator using CLI command first try { await exec("./test_bin/dev test-validator --stop"); console.log("Validator stopped via CLI command"); } catch (e) { console.log("No running validator to stop via CLI"); } // Then force kill any remaining processes await killProcess("solana-test-validator"); await killProcess("photon"); await killProcess("prover"); // Wait for processes to fully terminate await new Promise((resolve) => setTimeout(resolve, 2000)); // Verify processes are actually stopped try { await fetch(`http://localhost:${defaultRpcPort}/health`); throw new Error("Validator still running"); } catch (e) { console.log("Validator stopped"); } try { await fetch(`http://localhost:${defaultIndexerPort}/health`); throw new Error("Indexer still running"); } catch (e) { console.log("Indexer stopped"); } try { await fetch(`http://localhost:${defaultProverPort}/health`); throw new Error("Prover still running"); } catch (e) { console.log("Prover stopped"); } console.log("Cleanup completed successfully"); } catch (error) { console.error("Error in cleanup:", error); throw error; } } before(async function () { await cleanupProcesses(); }); afterEach(async function () { await cleanupProcesses(); }); it("should start validator with default settings", async function () { console.log("Starting test-validator..."); const { stdout } = await exec("./test_bin/dev test-validator"); console.log("Command output:", stdout); expect(stdout).to.contain("Setup tasks completed successfully"); console.log("Stdout check passed"); console.log("Waiting for validator to be fully ready..."); await new Promise((resolve) => setTimeout(resolve, 5000)); console.log("Attempting to connect to validator..."); const connection = new Connection(`http://localhost:${defaultRpcPort}`, { commitment: "confirmed", confirmTransactionInitialTimeout: 10000, }); try { console.log("Getting validator version..."); const version = await connection.getVersion(); console.log("Validator version:", version); expect(version).to.have.property("solana-core"); console.log("Getting wallet balance..."); const payer = defaultSolanaWalletKeypair(); const balance = await connection.getBalance(payer.publicKey); console.log("Wallet balance:", balance); expect(balance).to.be.at.least(0); console.log("Test completed successfully"); } catch (error) { console.error("Error during validator checks:", error); throw error; } }); it("should start validator with custom ports", async function () { const command = [ "./test_bin/dev test-validator", `--rpc-port ${customRpcPort}`, `--indexer-port ${customIndexerPort}`, `--prover-port ${customProverPort}`, ].join(" "); const { stdout } = await exec(command); expect(stdout).to.contain("Setup tasks completed successfully"); await new Promise((resolve) => setTimeout(resolve, 5000)); // Verify validator on custom port const connection = new Connection(`http://localhost:${customRpcPort}`); const version = await connection.getVersion(); expect(version).to.have.property("solana-core"); // Verify indexer on custom port const indexerResponse = await fetch( `http://localhost:${customIndexerPort}/health`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }, ); expect(indexerResponse.status).to.equal(200); // Verify prover on custom port const proverResponse = await fetch( `http://localhost:${customProverPort}/health`, ); expect(proverResponse.status).to.equal(200); }); it("should start validator without indexer and prover", async function () { const { stdout } = await exec( "./test_bin/dev test-validator --skip-indexer --skip-prover", ); expect(stdout).to.contain("Setup tasks completed successfully"); await new Promise((resolve) => setTimeout(resolve, 5000)); // Verify validator is running const connection = new Connection(`http://localhost:${defaultRpcPort}`); const version = await connection.getVersion(); expect(version).to.have.property("solana-core"); // Verify indexer is not running try { await fetch(`http://localhost:${defaultIndexerPort}/health`); throw new Error("Indexer should not be running"); } catch (error) { expect(error).to.exist; } // Verify prover is not running try { await fetch(`http://localhost:${defaultProverPort}/health`); throw new Error("Prover should not be running"); } catch (error) { expect(error).to.exist; } }); it("should fail with invalid geyser config path", async function () { try { await exec( "./test_bin/dev test-validator --geyser-config nonexistent.json", ); throw new Error("Should have failed"); } catch (error) { const execError = error as ExecException & { stdout?: string; stderr?: string; }; // Check either error message or stderr const errorText = execError.message || execError.stderr || ""; expect(errorText).to.contain("Geyser config file not found"); } }); it("should start and stop validator with custom arguments", async function () { const startCommand = './test_bin/dev test-validator --validator-args "--log-messages-bytes-limit 1000"'; const { stdout: startOutput } = await exec(startCommand); expect(startOutput).to.contain("Setup tasks completed successfully"); await new Promise((resolve) => setTimeout(resolve, 5000)); // Verify validator is running const connection = new Connection(`http://localhost:${defaultRpcPort}`); const version = await connection.getVersion(); expect(version).to.have.property("solana-core"); // Stop validator const stopCommand = "./test_bin/dev test-validator --stop"; const { stdout: stopOutput } = await exec(stopCommand); expect(stopOutput).to.contain("Test validator stopped successfully"); // Verify validator is stopped try { await connection.getVersion(); throw new Error("Validator should be stopped"); } catch (error) { expect(error).to.exist; } }); const SYSTEM_PROGRAM_ID = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV"; const SYSTEM_PROGRAM_NAME = "spl_noop.so"; it("should fail when deploying program with system program address", async function () { const testProgramPath = path.join(programsDirPath(), "test_program.so"); fs.writeFileSync(testProgramPath, "dummy program data"); try { const command = [ "./test_bin/dev test-validator", "--sbf-program", SYSTEM_PROGRAM_ID, // Use system program address testProgramPath, ].join(" "); await exec(command); throw new Error( "Should have failed due to system program address collision", ); } catch (error) { const execError = error as ExecException & { stdout?: string; stderr?: string; }; const errorText = execError.message || execError.stderr || ""; expect(errorText).to.contain("collides with system program"); expect(errorText).to.contain(SYSTEM_PROGRAM_ID); } finally { fs.unlinkSync(testProgramPath); } }); it("should fail when deploying program with system program name", async function () { const testProgramPath = path.join(programsDirPath(), SYSTEM_PROGRAM_NAME); fs.writeFileSync(testProgramPath, "dummy program data"); try { const testKeypair = Keypair.generate(); const command = [ "./test_bin/dev test-validator", "--sbf-program", testKeypair.publicKey.toString(), testProgramPath, ].join(" "); await exec(command); throw new Error( "Should have failed due to system program name collision", ); } catch (error) { const execError = error as ExecException & { stdout?: string; stderr?: string; }; const errorText = execError.message || execError.stderr || ""; expect(errorText).to.contain("collides with system program"); expect(errorText).to.contain(SYSTEM_PROGRAM_NAME); } finally { fs.unlinkSync(testProgramPath); } }); it("should fail when deploying multiple programs with same address", async function () { const testProgramPath1 = path.join(programsDirPath(), "test_program1.so"); const testProgramPath2 = path.join(programsDirPath(), "test_program2.so"); fs.writeFileSync(testProgramPath1, "dummy program data 1"); fs.writeFileSync(testProgramPath2, "dummy program data 2"); try { const testKeypair = Keypair.generate(); const command = [ "./test_bin/dev test-validator", "--sbf-program", testKeypair.publicKey.toString(), testProgramPath1, "--sbf-program", testKeypair.publicKey.toString(), // Same address as first program testProgramPath2, ].join(" "); await exec(command); throw new Error("Should have failed due to duplicate program address"); } catch (error) { const execError = error as ExecException & { stdout?: string; stderr?: string; }; const errorText = execError.message || execError.stderr || ""; expect(errorText).to.contain("Duplicate program address detected"); } finally { fs.unlinkSync(testProgramPath1); fs.unlinkSync(testProgramPath2); } }); it("should succeed with valid program deployment avoiding system collisions", async function () { const testProgramPath = path.join(programsDirPath(), "custom_program.so"); fs.writeFileSync(testProgramPath, "dummy program data"); try { const testKeypair = Keypair.generate(); const command = [ "./test_bin/dev test-validator", "--sbf-program", testKeypair.publicKey.toString(), testProgramPath, ].join(" "); const { stdout } = await exec(command); expect(stdout).to.contain("Setup tasks completed successfully"); await new Promise((resolve) => setTimeout(resolve, 5000)); // Verify validator is running const connection = new Connection(`http://localhost:${defaultRpcPort}`); const version = await connection.getVersion(); expect(version).to.have.property("solana-core"); let programAccountInfo = await connection.getAccountInfo( testKeypair.publicKey, ); expect(programAccountInfo).to.exist; expect(programAccountInfo!.executable).to.be.true; } finally { fs.unlinkSync(testProgramPath); } }); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/compress-spl/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestMint, requestAirdrop, testMintTo, } from "../../helpers/helpers"; describe("compress-spl", () => { const payerKeypair = defaultSolanaWalletKeypair(); /// TODO: add test case for separate fee-payer const payerKeypairPath = process.env.HOME + "/.config/solana/id.json"; const mintKeypair = Keypair.generate(); const mintAuthority = payerKeypair; const mintAmount = 10; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(payerKeypair.publicKey); await createTestMint(mintKeypair); await testMintTo( payerKeypair, mintKeypair.publicKey, payerKeypair.publicKey, mintAuthority, mintAmount, ); }); test .command([ "decompress-spl", `--mint=${mintKeypair.publicKey.toBase58()}`, `--amount=${mintAmount - 1}`, `--to=${payerKeypair.publicKey.toBase58()}`, ]) .stdout({ print: true }) .command([ "compress-spl", `--mint=${mintKeypair.publicKey.toBase58()}`, `--amount=${mintAmount - 2}`, `--to=${payerKeypair.publicKey.toBase58()}`, ]) .it( `compress ${ mintAmount - 2 } tokens to ${payerKeypair.publicKey.toBase58()} from ${payerKeypair.publicKey.toBase58()}`, (ctx: any) => { expect(ctx.stdout).to.contain("compress-spl successful"); }, ); });
0
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands
solana_public_repos/Lightprotocol/light-protocol/cli/test/commands/merge-token-accounts/index.test.ts
import { expect, test } from "@oclif/test"; import { initTestEnvIfNeeded } from "../../../src/utils/initTestEnv"; import { defaultSolanaWalletKeypair } from "../../../src"; import { Keypair } from "@solana/web3.js"; import { createTestMint, requestAirdrop, testMintTo, } from "../../helpers/helpers"; import { rpc } from "../../../src/utils/utils"; describe("merge-token-accounts", () => { const payerKeypair = defaultSolanaWalletKeypair(); const payerKeypairPath = process.env.HOME + "/.config/solana/id.json"; const mintKeypair = Keypair.generate(); const mintAuthority = payerKeypair; const mintAmount = 10; before(async () => { await initTestEnvIfNeeded({ indexer: true, prover: true }); await requestAirdrop(payerKeypair.publicKey); await createTestMint(mintKeypair); // Create multiple token accounts for (let i = 0; i < 3; i++) { await testMintTo( payerKeypair, mintKeypair.publicKey, payerKeypair.publicKey, mintAuthority, mintAmount, ); } }); test .stdout({ print: true }) .command([ "merge-token-accounts", `--fee-payer=${payerKeypairPath}`, `--mint=${mintKeypair.publicKey.toBase58()}`, ]) .it( `merge token accounts for mint ${mintKeypair.publicKey.toBase58()}, fee-payer: ${payerKeypair.publicKey.toBase58()} `, async (ctx: any) => { expect(ctx.stdout).to.contain("Token accounts merged successfully"); // Verify that accounts were merged const accounts = await rpc().getCompressedTokenAccountsByOwner( payerKeypair.publicKey, { mint: mintKeypair.publicKey }, ); expect(accounts.items.length).to.equal(1); expect(accounts.items[0].parsed.amount.toNumber()).to.equal( mintAmount * 3, ); }, ); });
0